From 30fbd0e15c402858fd5c7b186280b5d9d7caed65 Mon Sep 17 00:00:00 2001 From: lizkrznarich Date: Sat, 24 Feb 2024 12:07:16 -0600 Subject: [PATCH 1/5] add index dump actions --- .github/workflows/index_dump.py | 43 +++++++++++++ .github/workflows/prod_index_dump.yml | 78 ++++++++++++++++++++++++ .github/workflows/staging_index_dump.yml | 78 ++++++++++++++++++++++++ 3 files changed, 199 insertions(+) create mode 100644 .github/workflows/index_dump.py create mode 100644 .github/workflows/prod_index_dump.yml create mode 100644 .github/workflows/staging_index_dump.yml diff --git a/.github/workflows/index_dump.py b/.github/workflows/index_dump.py new file mode 100644 index 000000000..d52967649 --- /dev/null +++ b/.github/workflows/index_dump.py @@ -0,0 +1,43 @@ +import argparse +import os +import requests +import json +import sys + +def set_args(): + parser = argparse.ArgumentParser( + description="Send request to index data dump") + parser.add_argument('-u', '--url', help='URL to index dump file', required=True) + parser.add_argument('-f', '--file', help='name of dump file to be indexed', required=True) + parser.add_argument('-e', '--dataenv', help='data env to retrieve dump file from', required=True) + parser.add_argument('-he', '--headers', help='key:value json string; headers to authenticate request', required=True, type=json.loads) + args = parser.parse_args() + return args + +def send_request(url, headers): + try: + response = requests.get(url,headers=headers) + except requests.exceptions.RequestException as e: + raise e + return response + +def main(): + args = set_args() + url = args.url + filename = args.file + 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) + sys.exit(1) + elif response.ok: + print(response.text) + sys.exit(0) + + +if __name__ == "__main__": + main() + diff --git a/.github/workflows/prod_index_dump.yml b/.github/workflows/prod_index_dump.yml new file mode 100644 index 000000000..008a2e697 --- /dev/null +++ b/.github/workflows/prod_index_dump.yml @@ -0,0 +1,78 @@ +name: PROD index full data dump +on: + workflow_dispatch: + inputs: + release-dump: + type: string + description: Name of existing release dump file to index, without .zip extension (ex v1.41-2024-02-13-ror-data) + schema-version: + required: true + description: Schema version to index + default: 'test' + type: choice + options: + - v1 + - v2 + data-env: + required: true + description: ROR data env (test uses ror-data-test repo, prod uses ror-data) + default: 'test' + type: choice + options: + - test + - prod + + +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/master' + 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" == "admin" ]]; then + exit 0 + else + exit 1 + fi + index-dump: + runs-on: ubuntu-latest + if: github.event.ref == 'refs/heads/master' + 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.schema-version }} == "v1" ]]; then + python index_dump.py -u ${{ secrets.INDEX_DUMP_PROD_API_URL }} -f ${{ github.event.inputs.release-dump }} -e ${{ github.event.inputs.data-env }} -he ${{ secrets.INDEX_PROD_API_HEADERS }} + else + python index_dump.py -u ${{ secrets.INDEX_DUMP_PROD_API_URL_V2 }} -f ${{ github.event.inputs.release-dump }} -e ${{ github.event.inputs.data-env }} -he ${{ secrets.INDEX_PROD_API_HEADERS }} + fi + - 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: 'PROD 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/staging_index_dump.yml b/.github/workflows/staging_index_dump.yml new file mode 100644 index 000000000..8bc08815e --- /dev/null +++ b/.github/workflows/staging_index_dump.yml @@ -0,0 +1,78 @@ +name: STAGING index full data dump +on: + workflow_dispatch: + inputs: + release-dump: + type: string + description: Name of existing release dump file to index, without .zip extension (ex v1.41-2024-02-13-ror-data) + schema-version: + required: true + description: Schema version to index + default: 'test' + type: choice + options: + - v1 + - v2 + data-env: + required: true + description: ROR data env (test uses ror-data-test repo, prod uses ror-data) + default: 'test' + type: choice + options: + - test + - prod + + +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/staging' + 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" == "admin" ]]; then + exit 0 + else + exit 1 + fi + index-dump: + runs-on: ubuntu-latest + if: github.event.ref == 'refs/heads/staging' + 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.schema-version }} == "v1" ]]; then + python index_dump.py -u ${{ secrets.INDEX_DUMP_STAGING_API_URL }} -f ${{ github.event.inputs.release-dump }} -e ${{ github.event.inputs.data-env }} -he ${{ secrets.INDEX_STAGING_API_HEADERS }} + else + python index_dump.py -u ${{ secrets.INDEX_DUMP_STAGING_API_URL_V2 }} -f ${{ github.event.inputs.release-dump }} -e ${{ github.event.inputs.data-env }} -he ${{ secrets.INDEX_STAGING_API_HEADERS }} + fi + - 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: 'STAGING 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}' + From 3f0ca8d3037bb6f9819176c7e372209555b70aea Mon Sep 17 00:00:00 2001 From: adambuttrick Date: Wed, 13 Mar 2024 07:51:37 -0700 Subject: [PATCH 2/5] add new and updated ROR records to release v1.43 --- v1.43/0000n5x09.json | 108 +++ v1.43/0008vp155.json | 102 +++ v1.43/0009eea46.json | 90 +++ v1.43/000e0be47.json | 166 ++++ v1.43/000ph9k36.json | 94 +++ v1.43/0015ws592.json | 113 +++ v1.43/001d55x84.json | 96 +++ v1.43/001p3jz28.json | 141 ++++ v1.43/001sezm06.json | 86 ++ v1.43/001w7jn25.json | 151 ++++ v1.43/00235nr42.json | 103 +++ v1.43/002c90p59.json | 76 ++ v1.43/002kg1049.json | 88 ++ v1.43/002ty1h48.json | 120 +++ v1.43/002v40q27.json | 102 +++ v1.43/002zc3t08.json | 120 +++ v1.43/003vg9w96.json | 774 ++++++++++++++++++ v1.43/003x0zc53.json | 90 +++ v1.43/0040z4m89.json | 92 +++ v1.43/0048jxt15.json | 97 +++ v1.43/004majf41.json | 94 +++ v1.43/0050cbz19.json | 96 +++ v1.43/0051rme32.json | 107 +++ v1.43/00559m198.json | 76 ++ v1.43/005a3p084.json | 99 +++ v1.43/005aghs32.json | 100 +++ v1.43/005ta0471.json | 267 +++++++ v1.43/00675rp98.json | 102 +++ v1.43/006e5kg04.json | 141 ++++ v1.43/006m74d95.json | 106 +++ v1.43/007bytg49.json | 83 ++ v1.43/007sts724.json | 102 +++ v1.43/007x3c094.json | 88 ++ v1.43/007xgfy35.json | 78 ++ v1.43/0083c5602.json | 85 ++ v1.43/008j47576.json | 80 ++ v1.43/008jep717.json | 80 ++ v1.43/008kn4z11.json | 133 ++++ v1.43/008rmbt77.json | 119 +++ v1.43/008rywf59.json | 130 +++ v1.43/0090gef29.json | 73 ++ v1.43/0090zs177.json | 146 ++++ v1.43/009avj582.json | 153 ++++ v1.43/009q0jm69.json | 94 +++ v1.43/009xdmc59.json | 99 +++ v1.43/00a7bnr15.json | 80 ++ v1.43/00ae7jd04.json | 108 +++ v1.43/00ajjta07.json | 117 +++ v1.43/00b67z867.json | 92 +++ v1.43/00b80ez59.json | 107 +++ v1.43/00b88za07.json | 78 ++ v1.43/00bb4nn95.json | 85 ++ v1.43/00bep5t26.json | 113 +++ v1.43/00bgk9508.json | 118 +++ v1.43/00brnhb09.json | 78 ++ v1.43/00bsxeq86.json | 74 ++ v1.43/00bv2aa44.json | 83 ++ v1.43/00by1q217.json | 277 +++++++ v1.43/00c746491.json | 99 +++ v1.43/00ca2c886.json | 202 +++++ v1.43/00carf720.json | 116 +++ v1.43/00cy6xh23.json | 84 ++ v1.43/00d0nc645.json | 197 +++++ v1.43/00d4pqn65.json | 82 ++ v1.43/00davry38.json | 119 +++ v1.43/00deq0f50.json | 78 ++ v1.43/00e45qp82.json | 93 +++ v1.43/00enf6a78.json | 84 ++ v1.43/00ew61678.json | 96 +++ v1.43/00f2pe266.json | 78 ++ v1.43/00f3x4340.json | 90 +++ v1.43/00f54p054.json | 199 +++++ v1.43/00f7n9887.json | 75 ++ v1.43/00fbnyb24.json | 132 +++ v1.43/00fp4q488.json | 95 +++ v1.43/00fpvte21.json | 112 +++ v1.43/00g1jn849.json | 80 ++ v1.43/00g8hms52.json | 99 +++ v1.43/00gjj5n39.json | 101 +++ v1.43/00grd1h17.json | 170 ++++ v1.43/00h3hwc05.json | 86 ++ v1.43/00h3w1m15.json | 89 +++ v1.43/00hpz7z43.json | 147 ++++ v1.43/00hx6zz33.json | 171 ++++ v1.43/00j0w4q23.json | 76 ++ v1.43/00j39jc12.json | 83 ++ v1.43/00jjx8s55.json | 416 ++++++++++ v1.43/00jma8s40.json | 107 +++ v1.43/00jmfr291.json | 183 +++++ v1.43/00js3aw79.json | 146 ++++ v1.43/00jvqbw52.json | 97 +++ v1.43/00k3ph542.json | 90 +++ v1.43/00kk89y84.json | 104 +++ v1.43/00krnv781.json | 95 +++ v1.43/00kxqbw45.json | 86 ++ v1.43/00m98kt33.json | 88 ++ v1.43/00mccb878.json | 80 ++ v1.43/00mmn6b08.json | 205 +++++ v1.43/00mmpjq16.json | 77 ++ v1.43/00na1dz18.json | 82 ++ v1.43/00ne6sr39.json | 117 +++ v1.43/00nffqq91.json | 94 +++ v1.43/00ntbvq76.json | 92 +++ v1.43/00p094v10.json | 86 ++ v1.43/00p11pk44.json | 106 +++ v1.43/00p4ywg82.json | 98 +++ v1.43/00p7f7z86.json | 94 +++ v1.43/00pa9y269.json | 92 +++ v1.43/00pamm417.json | 78 ++ v1.43/00pd74e08.json | 116 +++ v1.43/00pg6eq24.json | 383 +++++++++ v1.43/00pnp4y96.json | 102 +++ v1.43/00pyxrd04.json | 90 +++ v1.43/00q1brk57.json | 96 +++ v1.43/00qaqj396.json | 85 ++ v1.43/00qqv6244.json | 122 +++ v1.43/00qsr9g17.json | 92 +++ v1.43/00qv0tw17.json | 117 +++ v1.43/00qxcft19.json | 89 +++ v1.43/00qy68j92.json | 94 +++ v1.43/00r4bna31.json | 93 +++ v1.43/00rwpbm87.json | 80 ++ v1.43/00rydyx93.json | 709 ++++++++++++++++ v1.43/00rz8kx73.json | 92 +++ v1.43/00s19x989.json | 513 ++++++++++++ v1.43/00s3s5518.json | 95 +++ v1.43/00s409261.json | 123 +++ v1.43/00sef7t37.json | 84 ++ v1.43/00sh68184.json | 105 +++ v1.43/00skw9v43.json | 112 +++ v1.43/00sps5y96.json | 82 ++ v1.43/00tdqgq45.json | 82 ++ v1.43/00tpn9z48.json | 101 +++ v1.43/00v4yb702.json | 108 +++ v1.43/00v9a4y41.json | 80 ++ v1.43/00vc14296.json | 98 +++ v1.43/00vtgdb53.json | 233 ++++++ v1.43/00vvz3k68.json | 99 +++ v1.43/00w67e447.json | 104 +++ v1.43/00wd0xj77.json | 74 ++ v1.43/00wk2mp56.json | 119 +++ v1.43/00ws85526.json | 83 ++ v1.43/00wtrxf04.json | 82 ++ v1.43/00wvqgd19.json | 118 +++ v1.43/00wxgxz56.json | 90 +++ v1.43/00x362k69.json | 94 +++ v1.43/00xexfj57.json | 93 +++ v1.43/00xn1pr13.json | 91 +++ v1.43/00xp1b128.json | 89 +++ v1.43/00xsz4758.json | 82 ++ v1.43/00xzacp61.json | 102 +++ v1.43/00y0aj963.json | 80 ++ v1.43/00y1k7p64.json | 71 ++ v1.43/00y6q9n79.json | 129 +++ v1.43/00y7tet25.json | 82 ++ v1.43/00yjd3n13.json | 147 ++++ v1.43/00z54nq84.json | 323 ++++++++ v1.43/00z5s8133.json | 87 ++ v1.43/00za53h95.json | 225 ++++++ v1.43/00zay3w86.json | 104 +++ v1.43/00zvfs242.json | 84 ++ v1.43/01070mq45.json | 164 ++++ v1.43/010e21634.json | 77 ++ v1.43/010j4w165.json | 74 ++ v1.43/010ywy128.json | 82 ++ v1.43/0115fxs14.json | 90 +++ v1.43/011abem59.json | 113 +++ v1.43/011jtr847.json | 96 +++ v1.43/011n4tk56.json | 98 +++ v1.43/011xg1225.json | 117 +++ v1.43/011zm6c42.json | 74 ++ v1.43/01225hq90.json | 130 +++ v1.43/0124x7055.json | 99 +++ v1.43/012fqzm33.json | 112 +++ v1.43/012k1v959.json | 102 +++ v1.43/012qsrr25.json | 99 +++ v1.43/012s7h980.json | 86 ++ v1.43/012zh9h13.json | 112 +++ v1.43/012zs8222.json | 118 +++ v1.43/013355g38.json | 104 +++ v1.43/013a79z51.json | 85 ++ v1.43/013k5zx16.json | 73 ++ v1.43/013meh722.json | 318 ++++++++ v1.43/013tmk464.json | 87 ++ v1.43/0145w8333.json | 99 +++ v1.43/014fbxn93.json | 86 ++ v1.43/014p8mr66.json | 93 +++ v1.43/014x5gh74.json | 84 ++ v1.43/014zrew76.json | 245 ++++++ v1.43/01597g643.json | 116 +++ v1.43/015pzp858.json | 104 +++ v1.43/015vt1f29.json | 82 ++ v1.43/016782g02.json | 80 ++ v1.43/0168r3w48.json | 193 +++++ v1.43/016gb1631.json | 131 +++ v1.43/016gy9w96.json | 97 +++ v1.43/016k9d838.json | 81 ++ v1.43/016r2hq43.json | 105 +++ v1.43/016rf0n60.json | 97 +++ v1.43/016xsfp80.json | 137 ++++ v1.43/0175hh227.json | 171 ++++ v1.43/0177kw895.json | 74 ++ v1.43/017d4c820.json | 75 ++ v1.43/017d8gk22.json | 120 +++ v1.43/017wrhq72.json | 94 +++ v1.43/0187kwz08.json | 359 +++++++++ v1.43/018a8yy17.json | 103 +++ v1.43/018qmvm63.json | 73 ++ v1.43/018wp0236.json | 119 +++ v1.43/018zj6955.json | 95 +++ v1.43/01922h422.json | 100 +++ v1.43/0198v2949.json | 124 +++ v1.43/0199hds37.json | 211 +++++ v1.43/019g8w217.json | 86 ++ v1.43/019mh5c80.json | 73 ++ v1.43/019rf7x86.json | 85 ++ v1.43/019tcpt25.json | 169 ++++ v1.43/019vw0b32.json | 76 ++ v1.43/01a2wsa50.json | 90 +++ v1.43/01achz565.json | 78 ++ v1.43/01an7q238.json | 207 +++++ v1.43/01aqw9j77.json | 80 ++ v1.43/01ar0xf40.json | 76 ++ v1.43/01b5rtm37.json | 104 +++ v1.43/01bdx3k27.json | 83 ++ v1.43/01bg62x04.json | 184 +++++ v1.43/01bj3aw27.json | 344 ++++++++ v1.43/01bkbaq61.json | 322 ++++++++ v1.43/01bpa4157.json | 87 ++ v1.43/01bvxzn29.json | 121 +++ v1.43/01c27hj86.json | 163 ++++ v1.43/01c3rrh15.json | 112 +++ v1.43/01cdrde68.json | 183 +++++ v1.43/01cjash87.json | 147 ++++ v1.43/01cjqyj20.json | 79 ++ v1.43/01cmdgj85.json | 91 +++ v1.43/01df3an44.json | 93 +++ v1.43/01dpyn972.json | 82 ++ v1.43/01ed4t417.json | 119 +++ v1.43/01eef7f80.json | 80 ++ v1.43/01et6g203.json | 95 +++ v1.43/01f7a6m90.json | 88 ++ v1.43/01f7saf07.json | 90 +++ v1.43/01f80g185.json | 159 ++++ v1.43/01fftxe08.json | 117 +++ v1.43/01fgmnw14.json | 92 +++ v1.43/01fq24p11.json | 97 +++ v1.43/01g0jwx42.json | 83 ++ v1.43/01g94x362.json | 104 +++ v1.43/01gghaa40.json | 84 ++ v1.43/01gm5f004.json | 93 +++ v1.43/01h6dtw92.json | 90 +++ v1.43/01h6pze39.json | 105 +++ v1.43/01hn2pk88.json | 92 +++ v1.43/01hx2yw16.json | 77 ++ v1.43/01j98sy69.json | 76 ++ v1.43/01js2sh04.json | 135 ++++ v1.43/01jty7g66.json | 101 +++ v1.43/01kdbb633.json | 103 +++ v1.43/01kde4v59.json | 98 +++ v1.43/01kj2bm70.json | 181 +++++ v1.43/01kk86953.json | 75 ++ v1.43/01kn3j525.json | 84 ++ v1.43/01mhxe537.json | 80 ++ v1.43/01n6r0e97.json | 598 ++++++++++++++ v1.43/01nrxwf90.json | 229 ++++++ v1.43/01nry9c15.json | 91 +++ v1.43/01nv2xf68.json | 93 +++ v1.43/01nxm2y98.json | 90 +++ v1.43/01p07y544.json | 89 +++ v1.43/01pd2sz18.json | 104 +++ v1.43/01q4vax14.json | 85 ++ v1.43/01q6sg345.json | 87 ++ v1.43/01q76b368.json | 350 ++++++++ v1.43/01q7cq281.json | 80 ++ v1.43/01qew8q20.json | 84 ++ v1.43/01qgecw57.json | 103 +++ v1.43/01qgn1839.json | 92 +++ v1.43/01qh08519.json | 88 ++ v1.43/01qv3ez98.json | 88 ++ v1.43/01r7awg59.json | 114 +++ v1.43/01r9z8p25.json | 127 +++ v1.43/01sqena74.json | 79 ++ v1.43/01swzsf04.json | 144 ++++ v1.43/01tm9b530.json | 92 +++ v1.43/01v2rax29.json | 74 ++ v1.43/01v376g59.json | 143 ++++ v1.43/01v5xwf23.json | 157 ++++ v1.43/01v7jrq42.json | 122 +++ v1.43/01v9qfq10.json | 76 ++ v1.43/01vbgty78.json | 103 +++ v1.43/01vt9w950.json | 99 +++ v1.43/01vw4c203.json | 104 +++ v1.43/01w151e64.json | 94 +++ v1.43/01wjyqy10.json | 84 ++ v1.43/01wp2jz98.json | 170 ++++ v1.43/01xc6bj88.json | 101 +++ v1.43/01y64my43.json | 175 ++++ v1.43/01y8j9r24.json | 133 ++++ v1.43/01yc7t268.json | 151 ++++ v1.43/01ydb3330.json | 107 +++ v1.43/01yg1g961.json | 75 ++ v1.43/01yh3na84.json | 80 ++ v1.43/01ym3w380.json | 79 ++ v1.43/01ythxj32.json | 111 +++ v1.43/01z6fgx85.json | 92 +++ v1.43/01zvsh948.json | 99 +++ v1.43/01zy2cs03.json | 126 +++ v1.43/020g0rw41.json | 114 +++ v1.43/020q9r015.json | 95 +++ v1.43/020qm1538.json | 243 ++++++ v1.43/020rfvw83.json | 88 ++ v1.43/0211r2z47.json | 101 +++ v1.43/021354321.json | 96 +++ v1.43/021954z67.json | 96 +++ v1.43/021xexe56.json | 107 +++ v1.43/022dvs210.json | 91 +++ v1.43/022fjwc94.json | 100 +++ v1.43/022pakb16.json | 74 ++ v1.43/022rydv31.json | 98 +++ v1.43/023a2er20.json | 89 +++ v1.43/023hj4e57.json | 86 ++ v1.43/023kaz366.json | 92 +++ v1.43/02495e989.json | 128 +++ v1.43/024mrxd33.json | 171 ++++ v1.43/024nr0776.json | 93 +++ v1.43/024pk8k39.json | 86 ++ v1.43/024z2rq82.json | 127 +++ v1.43/02525b202.json | 79 ++ v1.43/0259fwx54.json | 98 +++ v1.43/025dmzr60.json | 84 ++ v1.43/025ecp212.json | 90 +++ v1.43/025r5qe02.json | 133 ++++ v1.43/0262br971.json | 102 +++ v1.43/026z37f85.json | 92 +++ v1.43/027620g33.json | 77 ++ v1.43/027a33v57.json | 92 +++ v1.43/027jsza11.json | 114 +++ v1.43/027m9bs27.json | 206 +++++ v1.43/027t90e82.json | 93 +++ v1.43/027yspv17.json | 80 ++ v1.43/02805zw73.json | 90 +++ v1.43/028696h48.json | 87 ++ v1.43/0289cxp23.json | 93 +++ v1.43/028rypz17.json | 140 ++++ v1.43/028vrr082.json | 109 +++ v1.43/029gxzx35.json | 82 ++ v1.43/02a2pkk25.json | 72 ++ v1.43/02a37a132.json | 74 ++ v1.43/02ackr434.json | 99 +++ v1.43/02ag0aq56.json | 87 ++ v1.43/02ahxdd04.json | 125 +++ v1.43/02aj13c28.json | 110 +++ v1.43/02am8se85.json | 80 ++ v1.43/02aqatz67.json | 98 +++ v1.43/02aqsxs83.json | 140 ++++ v1.43/02aswte26.json | 102 +++ v1.43/02avhnb77.json | 100 +++ v1.43/02b42av24.json | 86 ++ v1.43/02bf8e216.json | 77 ++ v1.43/02bjrmf75.json | 80 ++ v1.43/02by8jy67.json | 87 ++ v1.43/02byv2846.json | 99 +++ v1.43/02caz1f24.json | 105 +++ v1.43/02cc3ss06.json | 82 ++ v1.43/02chvqy57.json | 120 +++ v1.43/02cptmd52.json | 97 +++ v1.43/02cq2e244.json | 94 +++ v1.43/02cr20t12.json | 104 +++ v1.43/02cte4b68.json | 605 ++++++++++++++ v1.43/02cwv3a12.json | 90 +++ v1.43/02dg0pv02.json | 146 ++++ v1.43/02drdmm93.json | 146 ++++ v1.43/02dyaew97.json | 116 +++ v1.43/02dzjmc73.json | 97 +++ v1.43/02e3wq066.json | 104 +++ v1.43/02eegq373.json | 85 ++ v1.43/02en5vm52.json | 1134 ++++++++++++++++++++++++++ v1.43/02erddr56.json | 119 +++ v1.43/02evec030.json | 103 +++ v1.43/02faxbd19.json | 101 +++ v1.43/02feahw73.json | 1817 ++++++++++++++++++++++++++++++++++++++++++ v1.43/02fkq9g11.json | 76 ++ v1.43/02ftfma65.json | 87 ++ v1.43/02fy17q72.json | 80 ++ v1.43/02gmp5156.json | 91 +++ v1.43/02gp35s66.json | 99 +++ v1.43/02gqg2511.json | 85 ++ v1.43/02h919y47.json | 99 +++ v1.43/02hb5yj49.json | 142 ++++ v1.43/02hj2xr21.json | 93 +++ v1.43/02hn9hc43.json | 72 ++ v1.43/02hq5p840.json | 86 ++ v1.43/02hqqna27.json | 86 ++ v1.43/02j9n6e35.json | 92 +++ v1.43/02jx3x895.json | 268 +++++++ v1.43/02k3baz05.json | 86 ++ v1.43/02ks8qq67.json | 171 ++++ v1.43/02kvgs502.json | 77 ++ v1.43/02kvxyf05.json | 324 ++++++++ v1.43/02kw1ws04.json | 86 ++ v1.43/02mb2dn67.json | 81 ++ v1.43/02mdbnd10.json | 93 +++ v1.43/02mks6v46.json | 100 +++ v1.43/02mnw9q71.json | 113 +++ v1.43/02mtt1z51.json | 91 +++ v1.43/02ndr3r66.json | 74 ++ v1.43/02p4far57.json | 104 +++ v1.43/02pg81z63.json | 93 +++ v1.43/02pkshz09.json | 93 +++ v1.43/02qjttz75.json | 81 ++ v1.43/02qnnz951.json | 97 +++ v1.43/02qqvpd39.json | 82 ++ v1.43/02qz3vm75.json | 93 +++ v1.43/02r40rn49.json | 95 +++ v1.43/02r4fqa76.json | 88 ++ v1.43/02r839n55.json | 98 +++ v1.43/02rc97e94.json | 119 +++ v1.43/02rrdvm96.json | 93 +++ v1.43/02rx3b187.json | 310 +++++++ v1.43/02rxc7m23.json | 142 ++++ v1.43/02st4q439.json | 110 +++ v1.43/02stdqb15.json | 90 +++ v1.43/02trgdk48.json | 87 ++ v1.43/02vjkv261.json | 1330 +++++++++++++++++++++++++++++++ v1.43/02vrchf15.json | 79 ++ v1.43/02vzjz256.json | 86 ++ v1.43/02w3bnx54.json | 90 +++ v1.43/02wfhk785.json | 102 +++ v1.43/02wjh7838.json | 86 ++ v1.43/02x2py139.json | 87 ++ v1.43/02x3f7722.json | 92 +++ v1.43/02x402970.json | 73 ++ v1.43/02x5c5y60.json | 98 +++ v1.43/02x9gn510.json | 84 ++ v1.43/02xe5ns62.json | 126 +++ v1.43/02xkjwb21.json | 74 ++ v1.43/02xnnng09.json | 118 +++ v1.43/02y0cs367.json | 88 ++ v1.43/02y6dp041.json | 98 +++ v1.43/02ygek028.json | 119 +++ v1.43/02yjyfs84.json | 79 ++ v1.43/02zap0h66.json | 78 ++ v1.43/02zms4m18.json | 87 ++ v1.43/02zv3kp89.json | 84 ++ v1.43/0300g2m85.json | 87 ++ v1.43/0306aeb62.json | 112 +++ v1.43/030d6wr93.json | 97 +++ v1.43/030gd0911.json | 91 +++ v1.43/030przz70.json | 118 +++ v1.43/030tc8e27.json | 82 ++ v1.43/03126ng80.json | 109 +++ v1.43/0315e5x55.json | 91 +++ v1.43/031p4kj21.json | 100 +++ v1.43/031tb8x29.json | 90 +++ v1.43/031yjqj32.json | 92 +++ v1.43/0321g0743.json | 124 +++ v1.43/0329bcd18.json | 95 +++ v1.43/032jk8892.json | 111 +++ v1.43/032mthd30.json | 78 ++ v1.43/032qgrc76.json | 111 +++ v1.43/033frs404.json | 84 ++ v1.43/033svsm10.json | 109 +++ v1.43/033x0mt18.json | 103 +++ v1.43/033zmj163.json | 116 +++ v1.43/034a0rc87.json | 90 +++ v1.43/034d74a71.json | 78 ++ v1.43/034dfs572.json | 76 ++ v1.43/034vb5t35.json | 120 +++ v1.43/034x1af55.json | 88 ++ v1.43/035gq6r08.json | 102 +++ v1.43/035z18f46.json | 82 ++ v1.43/0364rd617.json | 88 ++ v1.43/036dxts37.json | 117 +++ v1.43/036mest28.json | 97 +++ v1.43/036wkjd70.json | 104 +++ v1.43/036xwe059.json | 73 ++ v1.43/037405308.json | 171 ++++ v1.43/037p13h95.json | 92 +++ v1.43/037zgn354.json | 153 ++++ v1.43/038e0dv78.json | 100 +++ v1.43/038kr2d80.json | 100 +++ v1.43/038synb39.json | 85 ++ v1.43/039epzh36.json | 85 ++ v1.43/039h1gd08.json | 85 ++ v1.43/03a3nj982.json | 74 ++ v1.43/03ab0zs98.json | 106 +++ v1.43/03artm726.json | 101 +++ v1.43/03b21sh32.json | 100 +++ v1.43/03bk8p931.json | 98 +++ v1.43/03byxpy70.json | 73 ++ v1.43/03c4atk17.json | 121 +++ v1.43/03c7e3050.json | 86 ++ v1.43/03cebjr81.json | 99 +++ v1.43/03cmntr54.json | 121 +++ v1.43/03cn98e27.json | 92 +++ v1.43/03csrq586.json | 102 +++ v1.43/03cve4549.json | 199 +++++ v1.43/03czfpz43.json | 182 +++++ v1.43/03dcvs546.json | 89 +++ v1.43/03eewzy02.json | 84 ++ v1.43/03eh3y714.json | 126 +++ v1.43/03f1agw55.json | 71 ++ v1.43/03f6cng42.json | 87 ++ v1.43/03fdma228.json | 93 +++ v1.43/03fpf5m04.json | 91 +++ v1.43/03fte3n86.json | 109 +++ v1.43/03g1q6c06.json | 118 +++ v1.43/03g5ew477.json | 126 +++ v1.43/03gbd4842.json | 93 +++ v1.43/03gd0dm95.json | 131 +++ v1.43/03gf4dx13.json | 78 ++ v1.43/03gmkya61.json | 95 +++ v1.43/03gna4510.json | 85 ++ v1.43/03h4zjr91.json | 94 +++ v1.43/03hc27x54.json | 86 ++ v1.43/03hecy592.json | 86 ++ v1.43/03hpdk269.json | 82 ++ v1.43/03hv28176.json | 99 +++ v1.43/03hvdbf98.json | 92 +++ v1.43/03jdj4y14.json | 105 +++ v1.43/03jn2p430.json | 105 +++ v1.43/03jsyxh43.json | 77 ++ v1.43/03jzzxg14.json | 105 +++ v1.43/03k4wdb90.json | 101 +++ v1.43/03k8zj440.json | 133 ++++ v1.43/03k9z2963.json | 110 +++ v1.43/03kbarg82.json | 105 +++ v1.43/03kevw840.json | 80 ++ v1.43/03kk7td41.json | 158 ++++ v1.43/03mc19e15.json | 98 +++ v1.43/03mkjjy25.json | 296 +++++++ v1.43/03n15ch10.json | 95 +++ v1.43/03n8fv677.json | 74 ++ v1.43/03n9ja422.json | 84 ++ v1.43/03n9mt987.json | 78 ++ v1.43/03nr10290.json | 82 ++ v1.43/03p40sz62.json | 86 ++ v1.43/03p81rq42.json | 74 ++ v1.43/03pbpa834.json | 82 ++ v1.43/03pdbtd82.json | 84 ++ v1.43/03prydq77.json | 138 ++++ v1.43/03pvr2g57.json | 113 +++ v1.43/03pzxq793.json | 91 +++ v1.43/03q1qx424.json | 104 +++ v1.43/03q28x580.json | 86 ++ v1.43/03q5e6q66.json | 77 ++ v1.43/03qk53891.json | 94 +++ v1.43/03rd4h240.json | 101 +++ v1.43/03rnk6m14.json | 186 +++++ v1.43/03rtqzj55.json | 76 ++ v1.43/03rwgpn18.json | 111 +++ v1.43/03s4khd80.json | 115 +++ v1.43/03s92mv58.json | 93 +++ v1.43/03sdv7269.json | 73 ++ v1.43/03sv46s19.json | 100 +++ v1.43/03sypqe31.json | 102 +++ v1.43/03tdnf746.json | 82 ++ v1.43/03thdsj80.json | 88 ++ v1.43/03tj80n37.json | 100 +++ v1.43/03tkwyq76.json | 89 +++ v1.43/03tmzq288.json | 86 ++ v1.43/03tscbz39.json | 98 +++ v1.43/03tsg3y65.json | 104 +++ v1.43/03v2nbx43.json | 105 +++ v1.43/03v9efr22.json | 99 +++ v1.43/03vam5b06.json | 130 +++ v1.43/03vek6s52.json | 349 ++++++++ v1.43/03vgcjv39.json | 71 ++ v1.43/03x3g5467.json | 84 ++ v1.43/03x42jk29.json | 232 ++++++ v1.43/03x4pp342.json | 89 +++ v1.43/03x94j517.json | 301 +++++++ v1.43/03xjwb503.json | 577 ++++++++++++++ v1.43/03y0ymy78.json | 100 +++ v1.43/03y3e3s17.json | 113 +++ v1.43/03y8jvk69.json | 99 +++ v1.43/03yk4dt83.json | 86 ++ v1.43/03yycdv57.json | 93 +++ v1.43/03zyxxj44.json | 84 ++ v1.43/041kmwe10.json | 212 +++++ v1.43/041kymq04.json | 86 ++ v1.43/041m9xr71.json | 112 +++ v1.43/041qq2t66.json | 88 ++ v1.43/041repn61.json | 93 +++ v1.43/041yk2d64.json | 122 +++ v1.43/042en9b35.json | 78 ++ v1.43/042fhmq33.json | 84 ++ v1.43/042heps41.json | 100 +++ v1.43/042jh8155.json | 87 ++ v1.43/042k5q325.json | 84 ++ v1.43/042t2dj58.json | 77 ++ v1.43/042vxm455.json | 84 ++ v1.43/0436znn81.json | 95 +++ v1.43/04387x656.json | 123 +++ v1.43/043evzg22.json | 91 +++ v1.43/043htjv09.json | 141 ++++ v1.43/043xqa828.json | 82 ++ v1.43/0447fe631.json | 233 ++++++ v1.43/044kpcz50.json | 95 +++ v1.43/0453rg493.json | 100 +++ v1.43/045jby416.json | 100 +++ v1.43/046j7pv84.json | 111 +++ v1.43/047448m94.json | 93 +++ v1.43/047dkqn05.json | 76 ++ v1.43/047xxvg44.json | 90 +++ v1.43/047yj9455.json | 88 ++ v1.43/0483fn738.json | 91 +++ v1.43/048tbm396.json | 143 ++++ v1.43/04988re48.json | 106 +++ v1.43/049ctcj40.json | 78 ++ v1.43/049h9f890.json | 82 ++ v1.43/049s0rh22.json | 119 +++ v1.43/04b404920.json | 110 +++ v1.43/04b57z061.json | 96 +++ v1.43/04b6nzv94.json | 154 ++++ v1.43/04b8d7j46.json | 102 +++ v1.43/04bdqq221.json | 76 ++ v1.43/04bgjpg77.json | 107 +++ v1.43/04bkzce69.json | 87 ++ v1.43/04cjmvv09.json | 84 ++ v1.43/04cwfse38.json | 105 +++ v1.43/04d2k2606.json | 74 ++ v1.43/04d4pvt78.json | 86 ++ v1.43/04e582786.json | 80 ++ v1.43/04e7rcy65.json | 86 ++ v1.43/04e874t64.json | 105 +++ v1.43/04ebbpp93.json | 91 +++ v1.43/04ect1284.json | 90 +++ v1.43/04emwm605.json | 179 +++++ v1.43/04eq6rh16.json | 87 ++ v1.43/04ews3245.json | 110 +++ v1.43/04f18cg29.json | 89 +++ v1.43/04f6hmf16.json | 137 ++++ v1.43/04f7h3b65.json | 103 +++ v1.43/04fab7w85.json | 86 ++ v1.43/04feqxb79.json | 111 +++ v1.43/04fg9pk96.json | 102 +++ v1.43/04fpz9t23.json | 84 ++ v1.43/04frf8n21.json | 101 +++ v1.43/04frvgs13.json | 103 +++ v1.43/04fzs4293.json | 84 ++ v1.43/04fzwnh64.json | 124 +++ v1.43/04g1a0w27.json | 92 +++ v1.43/04gww2j56.json | 96 +++ v1.43/04gz5mr64.json | 81 ++ v1.43/04h7zpy51.json | 82 ++ v1.43/04hh1k009.json | 90 +++ v1.43/04hp1ky92.json | 101 +++ v1.43/04htg4q18.json | 80 ++ v1.43/04hwsx993.json | 88 ++ v1.43/04jhswv08.json | 117 +++ v1.43/04k1qv985.json | 86 ++ v1.43/04k8k6n84.json | 145 ++++ v1.43/04kdfz702.json | 389 +++++++++ v1.43/04kn56m50.json | 103 +++ v1.43/04kpdmm83.json | 87 ++ v1.43/04m2z2476.json | 78 ++ v1.43/04ma29860.json | 88 ++ v1.43/04marky29.json | 107 +++ v1.43/04mb62065.json | 86 ++ v1.43/04n0g0b29.json | 187 +++++ v1.43/04n3e7v86.json | 81 ++ v1.43/04nm1cv11.json | 154 ++++ v1.43/04nqtfa57.json | 81 ++ v1.43/04ns7ha44.json | 84 ++ v1.43/04nwt4928.json | 80 ++ v1.43/04q4ppz72.json | 96 +++ v1.43/04qdwq068.json | 87 ++ v1.43/04qekdn52.json | 78 ++ v1.43/04qtk4r03.json | 72 ++ v1.43/04qxsrb28.json | 128 +++ v1.43/04r5ma125.json | 78 ++ v1.43/04rf54t04.json | 93 +++ v1.43/04rhqkc66.json | 73 ++ v1.43/04rswvr48.json | 82 ++ v1.43/04rzqnw97.json | 82 ++ v1.43/04shwth06.json | 78 ++ v1.43/04sk0bj73.json | 91 +++ v1.43/04sqh8108.json | 82 ++ v1.43/04t0gwh46.json | 181 +++++ v1.43/04t4b6y41.json | 80 ++ v1.43/04tfhh831.json | 77 ++ v1.43/04tfzc498.json | 312 ++++++++ v1.43/04tj63d06.json | 163 ++++ v1.43/04tjemt46.json | 85 ++ v1.43/04v2q5t19.json | 76 ++ v1.43/04vdnev70.json | 76 ++ v1.43/04vh24428.json | 71 ++ v1.43/04vzm8988.json | 88 ++ v1.43/04w07sc25.json | 104 +++ v1.43/04w0a0617.json | 92 +++ v1.43/04w30w390.json | 76 ++ v1.43/04wcn4e27.json | 137 ++++ v1.43/04x05p558.json | 76 ++ v1.43/04x2nq985.json | 85 ++ v1.43/04xcq9q51.json | 88 ++ v1.43/04xk0dc21.json | 106 +++ v1.43/04xrsn650.json | 89 +++ v1.43/04yyy0y35.json | 90 +++ v1.43/04yznqr36.json | 233 ++++++ v1.43/04z22qz54.json | 255 ++++++ v1.43/04z2hsy54.json | 78 ++ v1.43/04z8k9a98.json | 135 ++++ v1.43/04zbc6m03.json | 87 ++ v1.43/04zw2sa68.json | 81 ++ v1.43/0508kew31.json | 94 +++ v1.43/050gm3a53.json | 80 ++ v1.43/050gn5214.json | 119 +++ v1.43/050jcm728.json | 240 ++++++ v1.43/050qj5m48.json | 141 ++++ v1.43/051777d98.json | 115 +++ v1.43/051eysy15.json | 92 +++ v1.43/051g75b06.json | 87 ++ v1.43/051z6e826.json | 94 +++ v1.43/052133d12.json | 103 +++ v1.43/0526zh358.json | 95 +++ v1.43/052g8jq94.json | 239 ++++++ v1.43/052gp0981.json | 88 ++ v1.43/052ss8w32.json | 102 +++ v1.43/0538nf417.json | 71 ++ v1.43/053jm8142.json | 82 ++ v1.43/054225q67.json | 151 ++++ v1.43/054a6d704.json | 88 ++ v1.43/054wajj09.json | 99 +++ v1.43/0551gkb08.json | 92 +++ v1.43/05591te55.json | 142 ++++ v1.43/055rh9p75.json | 83 ++ v1.43/055s8hs34.json | 112 +++ v1.43/0561n6946.json | 115 +++ v1.43/0566sj483.json | 98 +++ v1.43/05679z329.json | 86 ++ v1.43/0568g2481.json | 87 ++ v1.43/05691ev83.json | 92 +++ v1.43/056nnzb78.json | 90 +++ v1.43/056vjed89.json | 87 ++ v1.43/0576by029.json | 85 ++ v1.43/057apef51.json | 90 +++ v1.43/057c1ry34.json | 78 ++ v1.43/057k6gq03.json | 77 ++ v1.43/057p7e749.json | 97 +++ v1.43/057yy7z71.json | 92 +++ v1.43/0589k3111.json | 108 +++ v1.43/058cmwb06.json | 93 +++ v1.43/058ne9w36.json | 88 ++ v1.43/058sakv40.json | 89 +++ v1.43/059gc9s81.json | 88 ++ v1.43/059wz5438.json | 91 +++ v1.43/059zf1d45.json | 82 ++ v1.43/05a0dhs15.json | 309 +++++++ v1.43/05a0ya142.json | 142 ++++ v1.43/05a28rw58.json | 149 ++++ v1.43/05a4pj207.json | 111 +++ v1.43/05b0g2v72.json | 93 +++ v1.43/05bjr0y28.json | 76 ++ v1.43/05bnh6r87.json | 254 ++++++ v1.43/05bvkb649.json | 86 ++ v1.43/05c7h4935.json | 103 +++ v1.43/05c8abs18.json | 74 ++ v1.43/05cebxq10.json | 99 +++ v1.43/05cmj5t40.json | 78 ++ v1.43/05cshtm26.json | 170 ++++ v1.43/05d6tb673.json | 95 +++ v1.43/05d8cac05.json | 72 ++ v1.43/05dch6316.json | 208 +++++ v1.43/05dnzrj50.json | 93 +++ v1.43/05dpfhh73.json | 87 ++ v1.43/05dpwde09.json | 82 ++ v1.43/05dr3r825.json | 96 +++ v1.43/05dy6wv04.json | 93 +++ v1.43/05ehpzy81.json | 99 +++ v1.43/05eky6607.json | 78 ++ v1.43/05etxs293.json | 104 +++ v1.43/05f82e368.json | 641 +++++++++++++++ v1.43/05f8nen40.json | 84 ++ v1.43/05fp9g671.json | 107 +++ v1.43/05g2hd893.json | 145 ++++ v1.43/05gfswd81.json | 89 +++ v1.43/05ghke119.json | 76 ++ v1.43/05gq3a412.json | 111 +++ v1.43/05gt9yw23.json | 83 ++ v1.43/05h7ddb14.json | 108 +++ v1.43/05he0t313.json | 91 +++ v1.43/05hqvvq43.json | 96 +++ v1.43/05hs6h993.json | 204 +++++ v1.43/05hv77153.json | 98 +++ v1.43/05j5g1b69.json | 88 ++ v1.43/05jge5x64.json | 92 +++ v1.43/05jmnvy38.json | 86 ++ v1.43/05jnma812.json | 92 +++ v1.43/05jvrb780.json | 80 ++ v1.43/05mee8y17.json | 74 ++ v1.43/05merjr74.json | 109 +++ v1.43/05mg91w61.json | 103 +++ v1.43/05mz0pr34.json | 92 +++ v1.43/05n3x4p02.json | 142 ++++ v1.43/05nqvv719.json | 92 +++ v1.43/05p1j8758.json | 128 +++ v1.43/05p3cb968.json | 96 +++ v1.43/05p70jq59.json | 100 +++ v1.43/05ppf7q77.json | 101 +++ v1.43/05pvqha70.json | 115 +++ v1.43/05q4hzm57.json | 73 ++ v1.43/05q6yhx55.json | 82 ++ v1.43/05q94pf14.json | 114 +++ v1.43/05qj6w324.json | 94 +++ v1.43/05qpmg879.json | 109 +++ v1.43/05r0vyz12.json | 110 +++ v1.43/05r332y60.json | 130 +++ v1.43/05r3f7h03.json | 106 +++ v1.43/05rbx8m02.json | 100 +++ v1.43/05rdv5n40.json | 91 +++ v1.43/05sbt2524.json | 240 ++++++ v1.43/05sgwan27.json | 80 ++ v1.43/05sqppn31.json | 91 +++ v1.43/05stqjz94.json | 82 ++ v1.43/05syd6y78.json | 106 +++ v1.43/05sz3st37.json | 93 +++ v1.43/05t17k830.json | 86 ++ v1.43/05t2rs949.json | 73 ++ v1.43/05tamah23.json | 86 ++ v1.43/05tgxx705.json | 126 +++ v1.43/05tvkct11.json | 86 ++ v1.43/05twwhs70.json | 110 +++ v1.43/05tyqjm34.json | 98 +++ v1.43/05v1m8q81.json | 129 +++ v1.43/05v727m31.json | 113 +++ v1.43/05vm26792.json | 96 +++ v1.43/05vnxnq07.json | 100 +++ v1.43/05vrs0r17.json | 112 +++ v1.43/05vs9t239.json | 74 ++ v1.43/05w35s747.json | 100 +++ v1.43/05wg1m734.json | 129 +++ v1.43/05wnp0977.json | 84 ++ v1.43/05wygq130.json | 99 +++ v1.43/05wzh1m37.json | 99 +++ v1.43/05x643e19.json | 105 +++ v1.43/05x9ffc66.json | 99 +++ v1.43/05xwcq167.json | 106 +++ 839 files changed, 98213 insertions(+) create mode 100644 v1.43/0000n5x09.json create mode 100644 v1.43/0008vp155.json create mode 100644 v1.43/0009eea46.json create mode 100644 v1.43/000e0be47.json create mode 100644 v1.43/000ph9k36.json create mode 100644 v1.43/0015ws592.json create mode 100644 v1.43/001d55x84.json create mode 100644 v1.43/001p3jz28.json create mode 100644 v1.43/001sezm06.json create mode 100644 v1.43/001w7jn25.json create mode 100644 v1.43/00235nr42.json create mode 100644 v1.43/002c90p59.json create mode 100644 v1.43/002kg1049.json create mode 100644 v1.43/002ty1h48.json create mode 100644 v1.43/002v40q27.json create mode 100644 v1.43/002zc3t08.json create mode 100644 v1.43/003vg9w96.json create mode 100644 v1.43/003x0zc53.json create mode 100644 v1.43/0040z4m89.json create mode 100644 v1.43/0048jxt15.json create mode 100644 v1.43/004majf41.json create mode 100644 v1.43/0050cbz19.json create mode 100644 v1.43/0051rme32.json create mode 100644 v1.43/00559m198.json create mode 100644 v1.43/005a3p084.json create mode 100644 v1.43/005aghs32.json create mode 100644 v1.43/005ta0471.json create mode 100644 v1.43/00675rp98.json create mode 100644 v1.43/006e5kg04.json create mode 100644 v1.43/006m74d95.json create mode 100644 v1.43/007bytg49.json create mode 100644 v1.43/007sts724.json create mode 100644 v1.43/007x3c094.json create mode 100644 v1.43/007xgfy35.json create mode 100644 v1.43/0083c5602.json create mode 100644 v1.43/008j47576.json create mode 100644 v1.43/008jep717.json create mode 100644 v1.43/008kn4z11.json create mode 100644 v1.43/008rmbt77.json create mode 100644 v1.43/008rywf59.json create mode 100644 v1.43/0090gef29.json create mode 100644 v1.43/0090zs177.json create mode 100644 v1.43/009avj582.json create mode 100644 v1.43/009q0jm69.json create mode 100644 v1.43/009xdmc59.json create mode 100644 v1.43/00a7bnr15.json create mode 100644 v1.43/00ae7jd04.json create mode 100644 v1.43/00ajjta07.json create mode 100644 v1.43/00b67z867.json create mode 100644 v1.43/00b80ez59.json create mode 100644 v1.43/00b88za07.json create mode 100644 v1.43/00bb4nn95.json create mode 100644 v1.43/00bep5t26.json create mode 100644 v1.43/00bgk9508.json create mode 100644 v1.43/00brnhb09.json create mode 100644 v1.43/00bsxeq86.json create mode 100644 v1.43/00bv2aa44.json create mode 100644 v1.43/00by1q217.json create mode 100644 v1.43/00c746491.json create mode 100644 v1.43/00ca2c886.json create mode 100644 v1.43/00carf720.json create mode 100644 v1.43/00cy6xh23.json create mode 100644 v1.43/00d0nc645.json create mode 100644 v1.43/00d4pqn65.json create mode 100644 v1.43/00davry38.json create mode 100644 v1.43/00deq0f50.json create mode 100644 v1.43/00e45qp82.json create mode 100644 v1.43/00enf6a78.json create mode 100644 v1.43/00ew61678.json create mode 100644 v1.43/00f2pe266.json create mode 100644 v1.43/00f3x4340.json create mode 100644 v1.43/00f54p054.json create mode 100644 v1.43/00f7n9887.json create mode 100644 v1.43/00fbnyb24.json create mode 100644 v1.43/00fp4q488.json create mode 100644 v1.43/00fpvte21.json create mode 100644 v1.43/00g1jn849.json create mode 100644 v1.43/00g8hms52.json create mode 100644 v1.43/00gjj5n39.json create mode 100644 v1.43/00grd1h17.json create mode 100644 v1.43/00h3hwc05.json create mode 100644 v1.43/00h3w1m15.json create mode 100644 v1.43/00hpz7z43.json create mode 100644 v1.43/00hx6zz33.json create mode 100644 v1.43/00j0w4q23.json create mode 100644 v1.43/00j39jc12.json create mode 100644 v1.43/00jjx8s55.json create mode 100644 v1.43/00jma8s40.json create mode 100644 v1.43/00jmfr291.json create mode 100644 v1.43/00js3aw79.json create mode 100644 v1.43/00jvqbw52.json create mode 100644 v1.43/00k3ph542.json create mode 100644 v1.43/00kk89y84.json create mode 100644 v1.43/00krnv781.json create mode 100644 v1.43/00kxqbw45.json create mode 100644 v1.43/00m98kt33.json create mode 100644 v1.43/00mccb878.json create mode 100644 v1.43/00mmn6b08.json create mode 100644 v1.43/00mmpjq16.json create mode 100644 v1.43/00na1dz18.json create mode 100644 v1.43/00ne6sr39.json create mode 100644 v1.43/00nffqq91.json create mode 100644 v1.43/00ntbvq76.json create mode 100644 v1.43/00p094v10.json create mode 100644 v1.43/00p11pk44.json create mode 100644 v1.43/00p4ywg82.json create mode 100644 v1.43/00p7f7z86.json create mode 100644 v1.43/00pa9y269.json create mode 100644 v1.43/00pamm417.json create mode 100644 v1.43/00pd74e08.json create mode 100644 v1.43/00pg6eq24.json create mode 100644 v1.43/00pnp4y96.json create mode 100644 v1.43/00pyxrd04.json create mode 100644 v1.43/00q1brk57.json create mode 100644 v1.43/00qaqj396.json create mode 100644 v1.43/00qqv6244.json create mode 100644 v1.43/00qsr9g17.json create mode 100644 v1.43/00qv0tw17.json create mode 100644 v1.43/00qxcft19.json create mode 100644 v1.43/00qy68j92.json create mode 100644 v1.43/00r4bna31.json create mode 100644 v1.43/00rwpbm87.json create mode 100644 v1.43/00rydyx93.json create mode 100644 v1.43/00rz8kx73.json create mode 100644 v1.43/00s19x989.json create mode 100644 v1.43/00s3s5518.json create mode 100644 v1.43/00s409261.json create mode 100644 v1.43/00sef7t37.json create mode 100644 v1.43/00sh68184.json create mode 100644 v1.43/00skw9v43.json create mode 100644 v1.43/00sps5y96.json create mode 100644 v1.43/00tdqgq45.json create mode 100644 v1.43/00tpn9z48.json create mode 100644 v1.43/00v4yb702.json create mode 100644 v1.43/00v9a4y41.json create mode 100644 v1.43/00vc14296.json create mode 100644 v1.43/00vtgdb53.json create mode 100644 v1.43/00vvz3k68.json create mode 100644 v1.43/00w67e447.json create mode 100644 v1.43/00wd0xj77.json create mode 100644 v1.43/00wk2mp56.json create mode 100644 v1.43/00ws85526.json create mode 100644 v1.43/00wtrxf04.json create mode 100644 v1.43/00wvqgd19.json create mode 100644 v1.43/00wxgxz56.json create mode 100644 v1.43/00x362k69.json create mode 100644 v1.43/00xexfj57.json create mode 100644 v1.43/00xn1pr13.json create mode 100644 v1.43/00xp1b128.json create mode 100644 v1.43/00xsz4758.json create mode 100644 v1.43/00xzacp61.json create mode 100644 v1.43/00y0aj963.json create mode 100644 v1.43/00y1k7p64.json create mode 100644 v1.43/00y6q9n79.json create mode 100644 v1.43/00y7tet25.json create mode 100644 v1.43/00yjd3n13.json create mode 100644 v1.43/00z54nq84.json create mode 100644 v1.43/00z5s8133.json create mode 100644 v1.43/00za53h95.json create mode 100644 v1.43/00zay3w86.json create mode 100644 v1.43/00zvfs242.json create mode 100644 v1.43/01070mq45.json create mode 100644 v1.43/010e21634.json create mode 100644 v1.43/010j4w165.json create mode 100644 v1.43/010ywy128.json create mode 100644 v1.43/0115fxs14.json create mode 100644 v1.43/011abem59.json create mode 100644 v1.43/011jtr847.json create mode 100644 v1.43/011n4tk56.json create mode 100644 v1.43/011xg1225.json create mode 100644 v1.43/011zm6c42.json create mode 100644 v1.43/01225hq90.json create mode 100644 v1.43/0124x7055.json create mode 100644 v1.43/012fqzm33.json create mode 100644 v1.43/012k1v959.json create mode 100644 v1.43/012qsrr25.json create mode 100644 v1.43/012s7h980.json create mode 100644 v1.43/012zh9h13.json create mode 100644 v1.43/012zs8222.json create mode 100644 v1.43/013355g38.json create mode 100644 v1.43/013a79z51.json create mode 100644 v1.43/013k5zx16.json create mode 100644 v1.43/013meh722.json create mode 100644 v1.43/013tmk464.json create mode 100644 v1.43/0145w8333.json create mode 100644 v1.43/014fbxn93.json create mode 100644 v1.43/014p8mr66.json create mode 100644 v1.43/014x5gh74.json create mode 100644 v1.43/014zrew76.json create mode 100644 v1.43/01597g643.json create mode 100644 v1.43/015pzp858.json create mode 100644 v1.43/015vt1f29.json create mode 100644 v1.43/016782g02.json create mode 100644 v1.43/0168r3w48.json create mode 100644 v1.43/016gb1631.json create mode 100644 v1.43/016gy9w96.json create mode 100644 v1.43/016k9d838.json create mode 100644 v1.43/016r2hq43.json create mode 100644 v1.43/016rf0n60.json create mode 100644 v1.43/016xsfp80.json create mode 100644 v1.43/0175hh227.json create mode 100644 v1.43/0177kw895.json create mode 100644 v1.43/017d4c820.json create mode 100644 v1.43/017d8gk22.json create mode 100644 v1.43/017wrhq72.json create mode 100644 v1.43/0187kwz08.json create mode 100644 v1.43/018a8yy17.json create mode 100644 v1.43/018qmvm63.json create mode 100644 v1.43/018wp0236.json create mode 100644 v1.43/018zj6955.json create mode 100644 v1.43/01922h422.json create mode 100644 v1.43/0198v2949.json create mode 100644 v1.43/0199hds37.json create mode 100644 v1.43/019g8w217.json create mode 100644 v1.43/019mh5c80.json create mode 100644 v1.43/019rf7x86.json create mode 100644 v1.43/019tcpt25.json create mode 100644 v1.43/019vw0b32.json create mode 100644 v1.43/01a2wsa50.json create mode 100644 v1.43/01achz565.json create mode 100644 v1.43/01an7q238.json create mode 100644 v1.43/01aqw9j77.json create mode 100644 v1.43/01ar0xf40.json create mode 100644 v1.43/01b5rtm37.json create mode 100644 v1.43/01bdx3k27.json create mode 100644 v1.43/01bg62x04.json create mode 100644 v1.43/01bj3aw27.json create mode 100644 v1.43/01bkbaq61.json create mode 100644 v1.43/01bpa4157.json create mode 100644 v1.43/01bvxzn29.json create mode 100644 v1.43/01c27hj86.json create mode 100644 v1.43/01c3rrh15.json create mode 100644 v1.43/01cdrde68.json create mode 100644 v1.43/01cjash87.json create mode 100644 v1.43/01cjqyj20.json create mode 100644 v1.43/01cmdgj85.json create mode 100644 v1.43/01df3an44.json create mode 100644 v1.43/01dpyn972.json create mode 100644 v1.43/01ed4t417.json create mode 100644 v1.43/01eef7f80.json create mode 100644 v1.43/01et6g203.json create mode 100644 v1.43/01f7a6m90.json create mode 100644 v1.43/01f7saf07.json create mode 100644 v1.43/01f80g185.json create mode 100644 v1.43/01fftxe08.json create mode 100644 v1.43/01fgmnw14.json create mode 100644 v1.43/01fq24p11.json create mode 100644 v1.43/01g0jwx42.json create mode 100644 v1.43/01g94x362.json create mode 100644 v1.43/01gghaa40.json create mode 100644 v1.43/01gm5f004.json create mode 100644 v1.43/01h6dtw92.json create mode 100644 v1.43/01h6pze39.json create mode 100644 v1.43/01hn2pk88.json create mode 100644 v1.43/01hx2yw16.json create mode 100644 v1.43/01j98sy69.json create mode 100644 v1.43/01js2sh04.json create mode 100644 v1.43/01jty7g66.json create mode 100644 v1.43/01kdbb633.json create mode 100644 v1.43/01kde4v59.json create mode 100644 v1.43/01kj2bm70.json create mode 100644 v1.43/01kk86953.json create mode 100644 v1.43/01kn3j525.json create mode 100644 v1.43/01mhxe537.json create mode 100644 v1.43/01n6r0e97.json create mode 100644 v1.43/01nrxwf90.json create mode 100644 v1.43/01nry9c15.json create mode 100644 v1.43/01nv2xf68.json create mode 100644 v1.43/01nxm2y98.json create mode 100644 v1.43/01p07y544.json create mode 100644 v1.43/01pd2sz18.json create mode 100644 v1.43/01q4vax14.json create mode 100644 v1.43/01q6sg345.json create mode 100644 v1.43/01q76b368.json create mode 100644 v1.43/01q7cq281.json create mode 100644 v1.43/01qew8q20.json create mode 100644 v1.43/01qgecw57.json create mode 100644 v1.43/01qgn1839.json create mode 100644 v1.43/01qh08519.json create mode 100644 v1.43/01qv3ez98.json create mode 100644 v1.43/01r7awg59.json create mode 100644 v1.43/01r9z8p25.json create mode 100644 v1.43/01sqena74.json create mode 100644 v1.43/01swzsf04.json create mode 100644 v1.43/01tm9b530.json create mode 100644 v1.43/01v2rax29.json create mode 100644 v1.43/01v376g59.json create mode 100644 v1.43/01v5xwf23.json create mode 100644 v1.43/01v7jrq42.json create mode 100644 v1.43/01v9qfq10.json create mode 100644 v1.43/01vbgty78.json create mode 100644 v1.43/01vt9w950.json create mode 100644 v1.43/01vw4c203.json create mode 100644 v1.43/01w151e64.json create mode 100644 v1.43/01wjyqy10.json create mode 100644 v1.43/01wp2jz98.json create mode 100644 v1.43/01xc6bj88.json create mode 100644 v1.43/01y64my43.json create mode 100644 v1.43/01y8j9r24.json create mode 100644 v1.43/01yc7t268.json create mode 100644 v1.43/01ydb3330.json create mode 100644 v1.43/01yg1g961.json create mode 100644 v1.43/01yh3na84.json create mode 100644 v1.43/01ym3w380.json create mode 100644 v1.43/01ythxj32.json create mode 100644 v1.43/01z6fgx85.json create mode 100644 v1.43/01zvsh948.json create mode 100644 v1.43/01zy2cs03.json create mode 100644 v1.43/020g0rw41.json create mode 100644 v1.43/020q9r015.json create mode 100644 v1.43/020qm1538.json create mode 100644 v1.43/020rfvw83.json create mode 100644 v1.43/0211r2z47.json create mode 100644 v1.43/021354321.json create mode 100644 v1.43/021954z67.json create mode 100644 v1.43/021xexe56.json create mode 100644 v1.43/022dvs210.json create mode 100644 v1.43/022fjwc94.json create mode 100644 v1.43/022pakb16.json create mode 100644 v1.43/022rydv31.json create mode 100644 v1.43/023a2er20.json create mode 100644 v1.43/023hj4e57.json create mode 100644 v1.43/023kaz366.json create mode 100644 v1.43/02495e989.json create mode 100644 v1.43/024mrxd33.json create mode 100644 v1.43/024nr0776.json create mode 100644 v1.43/024pk8k39.json create mode 100644 v1.43/024z2rq82.json create mode 100644 v1.43/02525b202.json create mode 100644 v1.43/0259fwx54.json create mode 100644 v1.43/025dmzr60.json create mode 100644 v1.43/025ecp212.json create mode 100644 v1.43/025r5qe02.json create mode 100644 v1.43/0262br971.json create mode 100644 v1.43/026z37f85.json create mode 100644 v1.43/027620g33.json create mode 100644 v1.43/027a33v57.json create mode 100644 v1.43/027jsza11.json create mode 100644 v1.43/027m9bs27.json create mode 100644 v1.43/027t90e82.json create mode 100644 v1.43/027yspv17.json create mode 100644 v1.43/02805zw73.json create mode 100644 v1.43/028696h48.json create mode 100644 v1.43/0289cxp23.json create mode 100644 v1.43/028rypz17.json create mode 100644 v1.43/028vrr082.json create mode 100644 v1.43/029gxzx35.json create mode 100644 v1.43/02a2pkk25.json create mode 100644 v1.43/02a37a132.json create mode 100644 v1.43/02ackr434.json create mode 100644 v1.43/02ag0aq56.json create mode 100644 v1.43/02ahxdd04.json create mode 100644 v1.43/02aj13c28.json create mode 100644 v1.43/02am8se85.json create mode 100644 v1.43/02aqatz67.json create mode 100644 v1.43/02aqsxs83.json create mode 100644 v1.43/02aswte26.json create mode 100644 v1.43/02avhnb77.json create mode 100644 v1.43/02b42av24.json create mode 100644 v1.43/02bf8e216.json create mode 100644 v1.43/02bjrmf75.json create mode 100644 v1.43/02by8jy67.json create mode 100644 v1.43/02byv2846.json create mode 100644 v1.43/02caz1f24.json create mode 100644 v1.43/02cc3ss06.json create mode 100644 v1.43/02chvqy57.json create mode 100644 v1.43/02cptmd52.json create mode 100644 v1.43/02cq2e244.json create mode 100644 v1.43/02cr20t12.json create mode 100644 v1.43/02cte4b68.json create mode 100644 v1.43/02cwv3a12.json create mode 100644 v1.43/02dg0pv02.json create mode 100644 v1.43/02drdmm93.json create mode 100644 v1.43/02dyaew97.json create mode 100644 v1.43/02dzjmc73.json create mode 100644 v1.43/02e3wq066.json create mode 100644 v1.43/02eegq373.json create mode 100644 v1.43/02en5vm52.json create mode 100644 v1.43/02erddr56.json create mode 100644 v1.43/02evec030.json create mode 100644 v1.43/02faxbd19.json create mode 100644 v1.43/02feahw73.json create mode 100644 v1.43/02fkq9g11.json create mode 100644 v1.43/02ftfma65.json create mode 100644 v1.43/02fy17q72.json create mode 100644 v1.43/02gmp5156.json create mode 100644 v1.43/02gp35s66.json create mode 100644 v1.43/02gqg2511.json create mode 100644 v1.43/02h919y47.json create mode 100644 v1.43/02hb5yj49.json create mode 100644 v1.43/02hj2xr21.json create mode 100644 v1.43/02hn9hc43.json create mode 100644 v1.43/02hq5p840.json create mode 100644 v1.43/02hqqna27.json create mode 100644 v1.43/02j9n6e35.json create mode 100644 v1.43/02jx3x895.json create mode 100644 v1.43/02k3baz05.json create mode 100644 v1.43/02ks8qq67.json create mode 100644 v1.43/02kvgs502.json create mode 100644 v1.43/02kvxyf05.json create mode 100644 v1.43/02kw1ws04.json create mode 100644 v1.43/02mb2dn67.json create mode 100644 v1.43/02mdbnd10.json create mode 100644 v1.43/02mks6v46.json create mode 100644 v1.43/02mnw9q71.json create mode 100644 v1.43/02mtt1z51.json create mode 100644 v1.43/02ndr3r66.json create mode 100644 v1.43/02p4far57.json create mode 100644 v1.43/02pg81z63.json create mode 100644 v1.43/02pkshz09.json create mode 100644 v1.43/02qjttz75.json create mode 100644 v1.43/02qnnz951.json create mode 100644 v1.43/02qqvpd39.json create mode 100644 v1.43/02qz3vm75.json create mode 100644 v1.43/02r40rn49.json create mode 100644 v1.43/02r4fqa76.json create mode 100644 v1.43/02r839n55.json create mode 100644 v1.43/02rc97e94.json create mode 100644 v1.43/02rrdvm96.json create mode 100644 v1.43/02rx3b187.json create mode 100644 v1.43/02rxc7m23.json create mode 100644 v1.43/02st4q439.json create mode 100644 v1.43/02stdqb15.json create mode 100644 v1.43/02trgdk48.json create mode 100644 v1.43/02vjkv261.json create mode 100644 v1.43/02vrchf15.json create mode 100644 v1.43/02vzjz256.json create mode 100644 v1.43/02w3bnx54.json create mode 100644 v1.43/02wfhk785.json create mode 100644 v1.43/02wjh7838.json create mode 100644 v1.43/02x2py139.json create mode 100644 v1.43/02x3f7722.json create mode 100644 v1.43/02x402970.json create mode 100644 v1.43/02x5c5y60.json create mode 100644 v1.43/02x9gn510.json create mode 100644 v1.43/02xe5ns62.json create mode 100644 v1.43/02xkjwb21.json create mode 100644 v1.43/02xnnng09.json create mode 100644 v1.43/02y0cs367.json create mode 100644 v1.43/02y6dp041.json create mode 100644 v1.43/02ygek028.json create mode 100644 v1.43/02yjyfs84.json create mode 100644 v1.43/02zap0h66.json create mode 100644 v1.43/02zms4m18.json create mode 100644 v1.43/02zv3kp89.json create mode 100644 v1.43/0300g2m85.json create mode 100644 v1.43/0306aeb62.json create mode 100644 v1.43/030d6wr93.json create mode 100644 v1.43/030gd0911.json create mode 100644 v1.43/030przz70.json create mode 100644 v1.43/030tc8e27.json create mode 100644 v1.43/03126ng80.json create mode 100644 v1.43/0315e5x55.json create mode 100644 v1.43/031p4kj21.json create mode 100644 v1.43/031tb8x29.json create mode 100644 v1.43/031yjqj32.json create mode 100644 v1.43/0321g0743.json create mode 100644 v1.43/0329bcd18.json create mode 100644 v1.43/032jk8892.json create mode 100644 v1.43/032mthd30.json create mode 100644 v1.43/032qgrc76.json create mode 100644 v1.43/033frs404.json create mode 100644 v1.43/033svsm10.json create mode 100644 v1.43/033x0mt18.json create mode 100644 v1.43/033zmj163.json create mode 100644 v1.43/034a0rc87.json create mode 100644 v1.43/034d74a71.json create mode 100644 v1.43/034dfs572.json create mode 100644 v1.43/034vb5t35.json create mode 100644 v1.43/034x1af55.json create mode 100644 v1.43/035gq6r08.json create mode 100644 v1.43/035z18f46.json create mode 100644 v1.43/0364rd617.json create mode 100644 v1.43/036dxts37.json create mode 100644 v1.43/036mest28.json create mode 100644 v1.43/036wkjd70.json create mode 100644 v1.43/036xwe059.json create mode 100644 v1.43/037405308.json create mode 100644 v1.43/037p13h95.json create mode 100644 v1.43/037zgn354.json create mode 100644 v1.43/038e0dv78.json create mode 100644 v1.43/038kr2d80.json create mode 100644 v1.43/038synb39.json create mode 100644 v1.43/039epzh36.json create mode 100644 v1.43/039h1gd08.json create mode 100644 v1.43/03a3nj982.json create mode 100644 v1.43/03ab0zs98.json create mode 100644 v1.43/03artm726.json create mode 100644 v1.43/03b21sh32.json create mode 100644 v1.43/03bk8p931.json create mode 100644 v1.43/03byxpy70.json create mode 100644 v1.43/03c4atk17.json create mode 100644 v1.43/03c7e3050.json create mode 100644 v1.43/03cebjr81.json create mode 100644 v1.43/03cmntr54.json create mode 100644 v1.43/03cn98e27.json create mode 100644 v1.43/03csrq586.json create mode 100644 v1.43/03cve4549.json create mode 100644 v1.43/03czfpz43.json create mode 100644 v1.43/03dcvs546.json create mode 100644 v1.43/03eewzy02.json create mode 100644 v1.43/03eh3y714.json create mode 100644 v1.43/03f1agw55.json create mode 100644 v1.43/03f6cng42.json create mode 100644 v1.43/03fdma228.json create mode 100644 v1.43/03fpf5m04.json create mode 100644 v1.43/03fte3n86.json create mode 100644 v1.43/03g1q6c06.json create mode 100644 v1.43/03g5ew477.json create mode 100644 v1.43/03gbd4842.json create mode 100644 v1.43/03gd0dm95.json create mode 100644 v1.43/03gf4dx13.json create mode 100644 v1.43/03gmkya61.json create mode 100644 v1.43/03gna4510.json create mode 100644 v1.43/03h4zjr91.json create mode 100644 v1.43/03hc27x54.json create mode 100644 v1.43/03hecy592.json create mode 100644 v1.43/03hpdk269.json create mode 100644 v1.43/03hv28176.json create mode 100644 v1.43/03hvdbf98.json create mode 100644 v1.43/03jdj4y14.json create mode 100644 v1.43/03jn2p430.json create mode 100644 v1.43/03jsyxh43.json create mode 100644 v1.43/03jzzxg14.json create mode 100644 v1.43/03k4wdb90.json create mode 100644 v1.43/03k8zj440.json create mode 100644 v1.43/03k9z2963.json create mode 100644 v1.43/03kbarg82.json create mode 100644 v1.43/03kevw840.json create mode 100644 v1.43/03kk7td41.json create mode 100644 v1.43/03mc19e15.json create mode 100644 v1.43/03mkjjy25.json create mode 100644 v1.43/03n15ch10.json create mode 100644 v1.43/03n8fv677.json create mode 100644 v1.43/03n9ja422.json create mode 100644 v1.43/03n9mt987.json create mode 100644 v1.43/03nr10290.json create mode 100644 v1.43/03p40sz62.json create mode 100644 v1.43/03p81rq42.json create mode 100644 v1.43/03pbpa834.json create mode 100644 v1.43/03pdbtd82.json create mode 100644 v1.43/03prydq77.json create mode 100644 v1.43/03pvr2g57.json create mode 100644 v1.43/03pzxq793.json create mode 100644 v1.43/03q1qx424.json create mode 100644 v1.43/03q28x580.json create mode 100644 v1.43/03q5e6q66.json create mode 100644 v1.43/03qk53891.json create mode 100644 v1.43/03rd4h240.json create mode 100644 v1.43/03rnk6m14.json create mode 100644 v1.43/03rtqzj55.json create mode 100644 v1.43/03rwgpn18.json create mode 100644 v1.43/03s4khd80.json create mode 100644 v1.43/03s92mv58.json create mode 100644 v1.43/03sdv7269.json create mode 100644 v1.43/03sv46s19.json create mode 100644 v1.43/03sypqe31.json create mode 100644 v1.43/03tdnf746.json create mode 100644 v1.43/03thdsj80.json create mode 100644 v1.43/03tj80n37.json create mode 100644 v1.43/03tkwyq76.json create mode 100644 v1.43/03tmzq288.json create mode 100644 v1.43/03tscbz39.json create mode 100644 v1.43/03tsg3y65.json create mode 100644 v1.43/03v2nbx43.json create mode 100644 v1.43/03v9efr22.json create mode 100644 v1.43/03vam5b06.json create mode 100644 v1.43/03vek6s52.json create mode 100644 v1.43/03vgcjv39.json create mode 100644 v1.43/03x3g5467.json create mode 100644 v1.43/03x42jk29.json create mode 100644 v1.43/03x4pp342.json create mode 100644 v1.43/03x94j517.json create mode 100644 v1.43/03xjwb503.json create mode 100644 v1.43/03y0ymy78.json create mode 100644 v1.43/03y3e3s17.json create mode 100644 v1.43/03y8jvk69.json create mode 100644 v1.43/03yk4dt83.json create mode 100644 v1.43/03yycdv57.json create mode 100644 v1.43/03zyxxj44.json create mode 100644 v1.43/041kmwe10.json create mode 100644 v1.43/041kymq04.json create mode 100644 v1.43/041m9xr71.json create mode 100644 v1.43/041qq2t66.json create mode 100644 v1.43/041repn61.json create mode 100644 v1.43/041yk2d64.json create mode 100644 v1.43/042en9b35.json create mode 100644 v1.43/042fhmq33.json create mode 100644 v1.43/042heps41.json create mode 100644 v1.43/042jh8155.json create mode 100644 v1.43/042k5q325.json create mode 100644 v1.43/042t2dj58.json create mode 100644 v1.43/042vxm455.json create mode 100644 v1.43/0436znn81.json create mode 100644 v1.43/04387x656.json create mode 100644 v1.43/043evzg22.json create mode 100644 v1.43/043htjv09.json create mode 100644 v1.43/043xqa828.json create mode 100644 v1.43/0447fe631.json create mode 100644 v1.43/044kpcz50.json create mode 100644 v1.43/0453rg493.json create mode 100644 v1.43/045jby416.json create mode 100644 v1.43/046j7pv84.json create mode 100644 v1.43/047448m94.json create mode 100644 v1.43/047dkqn05.json create mode 100644 v1.43/047xxvg44.json create mode 100644 v1.43/047yj9455.json create mode 100644 v1.43/0483fn738.json create mode 100644 v1.43/048tbm396.json create mode 100644 v1.43/04988re48.json create mode 100644 v1.43/049ctcj40.json create mode 100644 v1.43/049h9f890.json create mode 100644 v1.43/049s0rh22.json create mode 100644 v1.43/04b404920.json create mode 100644 v1.43/04b57z061.json create mode 100644 v1.43/04b6nzv94.json create mode 100644 v1.43/04b8d7j46.json create mode 100644 v1.43/04bdqq221.json create mode 100644 v1.43/04bgjpg77.json create mode 100644 v1.43/04bkzce69.json create mode 100644 v1.43/04cjmvv09.json create mode 100644 v1.43/04cwfse38.json create mode 100644 v1.43/04d2k2606.json create mode 100644 v1.43/04d4pvt78.json create mode 100644 v1.43/04e582786.json create mode 100644 v1.43/04e7rcy65.json create mode 100644 v1.43/04e874t64.json create mode 100644 v1.43/04ebbpp93.json create mode 100644 v1.43/04ect1284.json create mode 100644 v1.43/04emwm605.json create mode 100644 v1.43/04eq6rh16.json create mode 100644 v1.43/04ews3245.json create mode 100644 v1.43/04f18cg29.json create mode 100644 v1.43/04f6hmf16.json create mode 100644 v1.43/04f7h3b65.json create mode 100644 v1.43/04fab7w85.json create mode 100644 v1.43/04feqxb79.json create mode 100644 v1.43/04fg9pk96.json create mode 100644 v1.43/04fpz9t23.json create mode 100644 v1.43/04frf8n21.json create mode 100644 v1.43/04frvgs13.json create mode 100644 v1.43/04fzs4293.json create mode 100644 v1.43/04fzwnh64.json create mode 100644 v1.43/04g1a0w27.json create mode 100644 v1.43/04gww2j56.json create mode 100644 v1.43/04gz5mr64.json create mode 100644 v1.43/04h7zpy51.json create mode 100644 v1.43/04hh1k009.json create mode 100644 v1.43/04hp1ky92.json create mode 100644 v1.43/04htg4q18.json create mode 100644 v1.43/04hwsx993.json create mode 100644 v1.43/04jhswv08.json create mode 100644 v1.43/04k1qv985.json create mode 100644 v1.43/04k8k6n84.json create mode 100644 v1.43/04kdfz702.json create mode 100644 v1.43/04kn56m50.json create mode 100644 v1.43/04kpdmm83.json create mode 100644 v1.43/04m2z2476.json create mode 100644 v1.43/04ma29860.json create mode 100644 v1.43/04marky29.json create mode 100644 v1.43/04mb62065.json create mode 100644 v1.43/04n0g0b29.json create mode 100644 v1.43/04n3e7v86.json create mode 100644 v1.43/04nm1cv11.json create mode 100644 v1.43/04nqtfa57.json create mode 100644 v1.43/04ns7ha44.json create mode 100644 v1.43/04nwt4928.json create mode 100644 v1.43/04q4ppz72.json create mode 100644 v1.43/04qdwq068.json create mode 100644 v1.43/04qekdn52.json create mode 100644 v1.43/04qtk4r03.json create mode 100644 v1.43/04qxsrb28.json create mode 100644 v1.43/04r5ma125.json create mode 100644 v1.43/04rf54t04.json create mode 100644 v1.43/04rhqkc66.json create mode 100644 v1.43/04rswvr48.json create mode 100644 v1.43/04rzqnw97.json create mode 100644 v1.43/04shwth06.json create mode 100644 v1.43/04sk0bj73.json create mode 100644 v1.43/04sqh8108.json create mode 100644 v1.43/04t0gwh46.json create mode 100644 v1.43/04t4b6y41.json create mode 100644 v1.43/04tfhh831.json create mode 100644 v1.43/04tfzc498.json create mode 100644 v1.43/04tj63d06.json create mode 100644 v1.43/04tjemt46.json create mode 100644 v1.43/04v2q5t19.json create mode 100644 v1.43/04vdnev70.json create mode 100644 v1.43/04vh24428.json create mode 100644 v1.43/04vzm8988.json create mode 100644 v1.43/04w07sc25.json create mode 100644 v1.43/04w0a0617.json create mode 100644 v1.43/04w30w390.json create mode 100644 v1.43/04wcn4e27.json create mode 100644 v1.43/04x05p558.json create mode 100644 v1.43/04x2nq985.json create mode 100644 v1.43/04xcq9q51.json create mode 100644 v1.43/04xk0dc21.json create mode 100644 v1.43/04xrsn650.json create mode 100644 v1.43/04yyy0y35.json create mode 100644 v1.43/04yznqr36.json create mode 100644 v1.43/04z22qz54.json create mode 100644 v1.43/04z2hsy54.json create mode 100644 v1.43/04z8k9a98.json create mode 100644 v1.43/04zbc6m03.json create mode 100644 v1.43/04zw2sa68.json create mode 100644 v1.43/0508kew31.json create mode 100644 v1.43/050gm3a53.json create mode 100644 v1.43/050gn5214.json create mode 100644 v1.43/050jcm728.json create mode 100644 v1.43/050qj5m48.json create mode 100644 v1.43/051777d98.json create mode 100644 v1.43/051eysy15.json create mode 100644 v1.43/051g75b06.json create mode 100644 v1.43/051z6e826.json create mode 100644 v1.43/052133d12.json create mode 100644 v1.43/0526zh358.json create mode 100644 v1.43/052g8jq94.json create mode 100644 v1.43/052gp0981.json create mode 100644 v1.43/052ss8w32.json create mode 100644 v1.43/0538nf417.json create mode 100644 v1.43/053jm8142.json create mode 100644 v1.43/054225q67.json create mode 100644 v1.43/054a6d704.json create mode 100644 v1.43/054wajj09.json create mode 100644 v1.43/0551gkb08.json create mode 100644 v1.43/05591te55.json create mode 100644 v1.43/055rh9p75.json create mode 100644 v1.43/055s8hs34.json create mode 100644 v1.43/0561n6946.json create mode 100644 v1.43/0566sj483.json create mode 100644 v1.43/05679z329.json create mode 100644 v1.43/0568g2481.json create mode 100644 v1.43/05691ev83.json create mode 100644 v1.43/056nnzb78.json create mode 100644 v1.43/056vjed89.json create mode 100644 v1.43/0576by029.json create mode 100644 v1.43/057apef51.json create mode 100644 v1.43/057c1ry34.json create mode 100644 v1.43/057k6gq03.json create mode 100644 v1.43/057p7e749.json create mode 100644 v1.43/057yy7z71.json create mode 100644 v1.43/0589k3111.json create mode 100644 v1.43/058cmwb06.json create mode 100644 v1.43/058ne9w36.json create mode 100644 v1.43/058sakv40.json create mode 100644 v1.43/059gc9s81.json create mode 100644 v1.43/059wz5438.json create mode 100644 v1.43/059zf1d45.json create mode 100644 v1.43/05a0dhs15.json create mode 100644 v1.43/05a0ya142.json create mode 100644 v1.43/05a28rw58.json create mode 100644 v1.43/05a4pj207.json create mode 100644 v1.43/05b0g2v72.json create mode 100644 v1.43/05bjr0y28.json create mode 100644 v1.43/05bnh6r87.json create mode 100644 v1.43/05bvkb649.json create mode 100644 v1.43/05c7h4935.json create mode 100644 v1.43/05c8abs18.json create mode 100644 v1.43/05cebxq10.json create mode 100644 v1.43/05cmj5t40.json create mode 100644 v1.43/05cshtm26.json create mode 100644 v1.43/05d6tb673.json create mode 100644 v1.43/05d8cac05.json create mode 100644 v1.43/05dch6316.json create mode 100644 v1.43/05dnzrj50.json create mode 100644 v1.43/05dpfhh73.json create mode 100644 v1.43/05dpwde09.json create mode 100644 v1.43/05dr3r825.json create mode 100644 v1.43/05dy6wv04.json create mode 100644 v1.43/05ehpzy81.json create mode 100644 v1.43/05eky6607.json create mode 100644 v1.43/05etxs293.json create mode 100644 v1.43/05f82e368.json create mode 100644 v1.43/05f8nen40.json create mode 100644 v1.43/05fp9g671.json create mode 100644 v1.43/05g2hd893.json create mode 100644 v1.43/05gfswd81.json create mode 100644 v1.43/05ghke119.json create mode 100644 v1.43/05gq3a412.json create mode 100644 v1.43/05gt9yw23.json create mode 100644 v1.43/05h7ddb14.json create mode 100644 v1.43/05he0t313.json create mode 100644 v1.43/05hqvvq43.json create mode 100644 v1.43/05hs6h993.json create mode 100644 v1.43/05hv77153.json create mode 100644 v1.43/05j5g1b69.json create mode 100644 v1.43/05jge5x64.json create mode 100644 v1.43/05jmnvy38.json create mode 100644 v1.43/05jnma812.json create mode 100644 v1.43/05jvrb780.json create mode 100644 v1.43/05mee8y17.json create mode 100644 v1.43/05merjr74.json create mode 100644 v1.43/05mg91w61.json create mode 100644 v1.43/05mz0pr34.json create mode 100644 v1.43/05n3x4p02.json create mode 100644 v1.43/05nqvv719.json create mode 100644 v1.43/05p1j8758.json create mode 100644 v1.43/05p3cb968.json create mode 100644 v1.43/05p70jq59.json create mode 100644 v1.43/05ppf7q77.json create mode 100644 v1.43/05pvqha70.json create mode 100644 v1.43/05q4hzm57.json create mode 100644 v1.43/05q6yhx55.json create mode 100644 v1.43/05q94pf14.json create mode 100644 v1.43/05qj6w324.json create mode 100644 v1.43/05qpmg879.json create mode 100644 v1.43/05r0vyz12.json create mode 100644 v1.43/05r332y60.json create mode 100644 v1.43/05r3f7h03.json create mode 100644 v1.43/05rbx8m02.json create mode 100644 v1.43/05rdv5n40.json create mode 100644 v1.43/05sbt2524.json create mode 100644 v1.43/05sgwan27.json create mode 100644 v1.43/05sqppn31.json create mode 100644 v1.43/05stqjz94.json create mode 100644 v1.43/05syd6y78.json create mode 100644 v1.43/05sz3st37.json create mode 100644 v1.43/05t17k830.json create mode 100644 v1.43/05t2rs949.json create mode 100644 v1.43/05tamah23.json create mode 100644 v1.43/05tgxx705.json create mode 100644 v1.43/05tvkct11.json create mode 100644 v1.43/05twwhs70.json create mode 100644 v1.43/05tyqjm34.json create mode 100644 v1.43/05v1m8q81.json create mode 100644 v1.43/05v727m31.json create mode 100644 v1.43/05vm26792.json create mode 100644 v1.43/05vnxnq07.json create mode 100644 v1.43/05vrs0r17.json create mode 100644 v1.43/05vs9t239.json create mode 100644 v1.43/05w35s747.json create mode 100644 v1.43/05wg1m734.json create mode 100644 v1.43/05wnp0977.json create mode 100644 v1.43/05wygq130.json create mode 100644 v1.43/05wzh1m37.json create mode 100644 v1.43/05x643e19.json create mode 100644 v1.43/05x9ffc66.json create mode 100644 v1.43/05xwcq167.json diff --git a/v1.43/0000n5x09.json b/v1.43/0000n5x09.json new file mode 100644 index 000000000..d4f79f536 --- /dev/null +++ b/v1.43/0000n5x09.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/0000n5x09", + "name": "Agropolymerpolymer Engineering and Emerging Technologies", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://umr-iate.cirad.fr/en" + ], + "aliases": [], + "acronyms": [ + "IATE" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Ingénierie des Agropolymères et Technologies Emergentes", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0373 6662" + ] + }, + "GRID": { + "preferred": "grid.463886.7", + "all": "grid.463886.7" + } + } +} \ No newline at end of file diff --git a/v1.43/0008vp155.json b/v1.43/0008vp155.json new file mode 100644 index 000000000..797d33b6d --- /dev/null +++ b/v1.43/0008vp155.json @@ -0,0 +1,102 @@ +{ + "ip_addresses": [], + "aliases": [ + "Poul Due Jensen Foundation", + "Poul Due Jensen Fond" + ], + "acronyms": [], + "links": [ + "https://www.pdjf.dk" + ], + "country": { + "country_name": "Denmark", + "country_code": "DK" + }, + "name": "Grundfos Fond", + "wikipedia_url": null, + "addresses": [ + { + "lat": 56.37797, + "lng": 9.66065, + "state": null, + "state_code": null, + "country_geonames_id": 2623032, + "city": "Bjerringbro", + "geonames_city": { + "id": 2624019, + "city": "Bjerringbro", + "geonames_admin1": { + "name": "Central Jutland", + "ascii_name": "Central Jutland", + "id": 6418539, + "code": "DK.18" + }, + "geonames_admin2": { + "name": "Viborg Kommune", + "id": 2610315, + "ascii_name": "Viborg Kommune", + "code": "DK.18.791" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0272 5010", + "all": [ + "0000 0005 0272 5010" + ] + }, + "Wikidata": { + "preferred": "Q123026777", + "all": [ + "Q123026777" + ] + }, + "FundRef": { + "preferred": "501100018870", + "all": [ + "501100018870" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Grundfos (Denmark)", + "type": "Child", + "id": "https://ror.org/05rdv5n40" + } + ], + "email_address": null, + "id": "https://ror.org/0008vp155", + "labels": [ + { + "label": "Grundfos Foundation", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/0009eea46.json b/v1.43/0009eea46.json new file mode 100644 index 000000000..f56f99230 --- /dev/null +++ b/v1.43/0009eea46.json @@ -0,0 +1,90 @@ +{ + "ip_addresses": [], + "aliases": [ + "State Key Lab of Virtual Reality Technology and Systems", + "虚拟现实技术国家重点实验室" + ], + "acronyms": [], + "links": [ + "https://vrlab.buaa.edu.cn" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "State Key Laboratory of Virtual Reality Technology and Systems", + "wikipedia_url": null, + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "name": "Beijing", + "ascii_name": "Beijing", + "id": 2038349, + "code": "CN.22" + }, + "geonames_admin2": { + "name": "Beijing", + "id": 11876380, + "ascii_name": "Beijing", + "code": "CN.22.11876380" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "501100011160", + "all": [ + "501100011160" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Beihang University", + "type": "Parent", + "id": "https://ror.org/00wk2mp56" + } + ], + "email_address": null, + "id": "https://ror.org/0009eea46", + "labels": [ + { + "label": "虚拟现实技术与系统国家重点实验室", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/000e0be47.json b/v1.43/000e0be47.json new file mode 100644 index 000000000..2ace5d925 --- /dev/null +++ b/v1.43/000e0be47.json @@ -0,0 +1,166 @@ +{ + "id": "https://ror.org/000e0be47", + "name": "Northwestern University", + "email_address": null, + "ip_addresses": [], + "established": 1851, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "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": "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" + } + ], + "addresses": [ + { + "lat": 42.04114, + "lng": -87.69006, + "state": null, + "state_code": null, + "city": "Evanston", + "geonames_city": { + "id": 4891382, + "city": "Evanston", + "geonames_admin1": { + "name": "Illinois", + "id": 4896861, + "ascii_name": "Illinois", + "code": "US.IL" + }, + "geonames_admin2": { + "name": "Cook", + "id": 4888671, + "ascii_name": "Cook", + "code": "US.IL.031" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.northwestern.edu/" + ], + "aliases": [], + "acronyms": [ + "NU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Northwestern_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2299 3507" + ] + }, + "FundRef": { + "preferred": "100007059", + "all": [ + "100007059", + "100008250", + "100011249", + "100013826" + ] + }, + "OrgRef": { + "preferred": "174216", + "all": [ + "174216", + "3893597", + "5024816" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q309350" + ] + }, + "GRID": { + "preferred": "grid.16753.36", + "all": "grid.16753.36" + } + } +} \ No newline at end of file diff --git a/v1.43/000ph9k36.json b/v1.43/000ph9k36.json new file mode 100644 index 000000000..fc9b5703c --- /dev/null +++ b/v1.43/000ph9k36.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/000ph9k36", + "name": "Universitäts-Kinderklinik Würzburg", + "email_address": null, + "ip_addresses": [], + "established": 1840, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Universitätsklinikum Würzburg", + "type": "Parent", + "id": "https://ror.org/03pvr2g57" + } + ], + "addresses": [ + { + "lat": 49.79391, + "lng": 9.95121, + "state": null, + "state_code": null, + "city": "Würzburg", + "geonames_city": { + "id": 2805615, + "city": "Würzburg", + "geonames_admin1": { + "name": "Bavaria", + "id": 2951839, + "ascii_name": "Bavaria", + "code": "DE.02" + }, + "geonames_admin2": { + "name": "Lower Franconia", + "id": 2819564, + "ascii_name": "Lower Franconia", + "code": "DE.02.096" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.ukw.de/kinderklinik/schwerpunkte/" + ], + "aliases": [], + "acronyms": [ + "UKW" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0490 6520" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q43896576" + ] + }, + "GRID": { + "preferred": "grid.488568.f", + "all": "grid.488568.f" + } + } +} \ No newline at end of file diff --git a/v1.43/0015ws592.json b/v1.43/0015ws592.json new file mode 100644 index 000000000..7ad265b9b --- /dev/null +++ b/v1.43/0015ws592.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/0015ws592", + "name": "Institute of Genetics and Molecular and Cellular Biology", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.52894, + "lng": 7.71523, + "state": null, + "state_code": null, + "city": "Illkirch-Graffenstaden", + "geonames_city": { + "id": 3012834, + "city": "Illkirch-Graffenstaden", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.igbmc.fr" + ], + "aliases": [], + "acronyms": [ + "IGBMC" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "institut de génétique et de biologie moléculaire et cellulaire", + "iso639": "fr" + }, + { + "label": "Centre Européen de Recherche en Biologie et en Médecine", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0638 2716" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR7104" + ] + }, + "GRID": { + "preferred": "grid.420255.4", + "all": "grid.420255.4" + } + } +} \ No newline at end of file diff --git a/v1.43/001d55x84.json b/v1.43/001d55x84.json new file mode 100644 index 000000000..bd5b97a30 --- /dev/null +++ b/v1.43/001d55x84.json @@ -0,0 +1,96 @@ +{ + "ip_addresses": [], + "aliases": [ + "National Institutes of Health Common Fund" + ], + "acronyms": [], + "links": [ + "https://commonfund.nih.gov" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "NIH Common Fund", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Institutes_of_Health_Common_Fund", + "addresses": [ + { + "lat": 38.98067, + "lng": -77.10026, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Bethesda", + "geonames_city": { + "id": 4348599, + "city": "Bethesda", + "geonames_admin1": { + "name": "Maryland", + "ascii_name": "Maryland", + "id": 4361885, + "code": "US.MD" + }, + "geonames_admin2": { + "name": "Montgomery", + "id": 4362716, + "ascii_name": "Montgomery", + "code": "US.MD.031" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8306 5685", + "all": [ + "0000 0004 8306 5685" + ] + }, + "Wikidata": { + "preferred": "Q16932298", + "all": [ + "Q16932298" + ] + }, + "FundRef": { + "preferred": "100015326", + "all": [ + "100015326" + ] + } + }, + "established": 2004, + "relationships": [ + { + "label": "Division of Program Coordination Planning and Strategic Initiatives", + "type": "Parent", + "id": "https://ror.org/02e3wq066" + } + ], + "email_address": null, + "id": "https://ror.org/001d55x84", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/001p3jz28.json b/v1.43/001p3jz28.json new file mode 100644 index 000000000..f44e1cfac --- /dev/null +++ b/v1.43/001p3jz28.json @@ -0,0 +1,141 @@ +{ + "id": "https://ror.org/001p3jz28", + "name": "Birla Institute of Technology and Science, Pilani", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 28.36725, + "lng": 75.60352, + "state": null, + "state_code": null, + "city": "Pilāni", + "geonames_city": { + "id": 1259693, + "city": "Pilāni", + "geonames_admin1": { + "name": "Rajasthan", + "id": 1258899, + "ascii_name": "Rajasthan", + "code": "IN.24" + }, + "geonames_admin2": { + "name": "Jhunjhunu", + "id": 1268937, + "ascii_name": "Jhunjhunu", + "code": "IN.24.103" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1269750 + } + ], + "links": [ + "http://www.bits-pilani.ac.in/" + ], + "aliases": [ + "BITS Pilani" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Birla_Institute_of_Technology_and_Science", + "labels": [ + { + "label": "बिरला प्रौद्योगिकी एवं विज्ञान संस्थान", + "iso639": "hi" + }, + { + "label": "ബിർള ഇൻസ്റ്റിറ്റ്യൂട്ട് ഓഫ് ടെക്നോളജി ആന്റ് സയൻസ്", + "iso639": "ml" + }, + { + "label": "बिर्ला इन्स्टिट्यूट ऑफ टेक्नोलॉजी अँड सायन्स", + "iso639": "mr" + }, + { + "label": "ਬਿਰਲਾ ਤਕਨਾਲੋਜੀ ਅਤੇ ਵਿਗਿਆਨ ਸੰਸਥਾ", + "iso639": "pa" + }, + { + "label": "பிர்லா தொழில்நுட்பம் மற்றும் அறிவியல் கழகம்", + "iso639": "ta" + }, + { + "label": "బిట్స్ పిలానీ", + "iso639": "te" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1015 3164" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100006464" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "33652790" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2648311" + ] + }, + "GRID": { + "preferred": "grid.418391.6", + "all": "grid.418391.6" + } + } +} \ No newline at end of file diff --git a/v1.43/001sezm06.json b/v1.43/001sezm06.json new file mode 100644 index 000000000..15e83a0d6 --- /dev/null +++ b/v1.43/001sezm06.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/001sezm06", + "name": "Parsons (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1944, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.89428, + "lng": -77.4311, + "state": null, + "state_code": null, + "city": "Chantilly", + "geonames_city": { + "id": 4751935, + "city": "Chantilly", + "geonames_admin1": { + "name": "Virginia", + "id": 6254928, + "ascii_name": "Virginia", + "code": "US.VA" + }, + "geonames_admin2": { + "name": "Fairfax", + "id": 4758041, + "ascii_name": "Fairfax", + "code": "US.VA.059" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.parsons.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Parsons_Corporation", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0421 9542" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3896512" + ] + }, + "GRID": { + "preferred": "grid.456154.7", + "all": "grid.456154.7" + } + } +} \ No newline at end of file diff --git a/v1.43/001w7jn25.json b/v1.43/001w7jn25.json new file mode 100644 index 000000000..03c4dae1c --- /dev/null +++ b/v1.43/001w7jn25.json @@ -0,0 +1,151 @@ +{ + "id": "https://ror.org/001w7jn25", + "name": "Charité - Universitätsmedizin Berlin", + "email_address": null, + "ip_addresses": [], + "established": 1710, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "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": "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": "Wyss Institute for Biologically Inspired Engineering", + "type": "Related", + "id": "https://ror.org/008cfmj78" + }, + { + "label": "Deutsches Herzzentrum der Charité", + "type": "Child", + "id": "https://ror.org/01mmady97" + }, + { + "label": "Stiftung Charité", + "type": "Child", + "id": "https://ror.org/016rf0n60" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "name": "Berlin", + "id": 2950157, + "ascii_name": "Berlin", + "code": "DE.16" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.16.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.charite.de/en/" + ], + "aliases": [ + "Charité" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Charit%C3%A9", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2218 4662" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100002839" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2559577" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q162684" + ] + }, + "GRID": { + "preferred": "grid.6363.0", + "all": "grid.6363.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00235nr42.json b/v1.43/00235nr42.json new file mode 100644 index 000000000..ef7c46e22 --- /dev/null +++ b/v1.43/00235nr42.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/00235nr42", + "name": "Universidade Federal de Itajubá", + "email_address": null, + "ip_addresses": [], + "established": 1913, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -22.42556, + "lng": -45.45278, + "state": null, + "state_code": null, + "city": "Itajubá", + "geonames_city": { + "id": 3460834, + "city": "Itajubá", + "geonames_admin1": { + "name": "Minas Gerais", + "id": 3457153, + "ascii_name": "Minas Gerais", + "code": "BR.15" + }, + "geonames_admin2": { + "name": "Itajubá", + "id": 6321455, + "ascii_name": "Itajubá", + "code": "BR.15.3132404" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3469034 + } + ], + "links": [ + "https://unifei.edu.br" + ], + "aliases": [ + "Escola Federal de Engenharia de Itajubá" + ], + "acronyms": [ + "UNIFEI", + "EFEI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Federal_University_of_Itajub%C3%A1", + "labels": [ + { + "label": "Federal University of Itajubá", + "iso639": "en" + } + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8992 4656" + ] + }, + "FundRef": { + "preferred": "501100006241", + "all": [ + "501100006241", + "501100005673" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7894372" + ] + }, + "GRID": { + "preferred": "grid.440561.2", + "all": "grid.440561.2" + } + } +} \ No newline at end of file diff --git a/v1.43/002c90p59.json b/v1.43/002c90p59.json new file mode 100644 index 000000000..2e1e7680e --- /dev/null +++ b/v1.43/002c90p59.json @@ -0,0 +1,76 @@ +{ + "ip_addresses": [], + "aliases": [ + "Ningxia Forestry Research Institute Co.", + "Ningxia Forestry Research Institute", + "Ningxia Forestry Research Institute Company Limited" + ], + "acronyms": [], + "links": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "Ningxia Forestry Research Institute Co., Ltd. (China)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 38.46806, + "lng": 106.27306, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Yinchuan", + "geonames_city": { + "id": 1786657, + "city": "Yinchuan", + "geonames_admin1": { + "name": "Ningxia Hui Autonomous Region", + "ascii_name": "Ningxia Hui Autonomous Region", + "id": 1799355, + "code": "CN.21" + }, + "geonames_admin2": { + "name": "Yinchuan", + "id": 1786656, + "ascii_name": "Yinchuan", + "code": "CN.21.6401" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/002c90p59", + "labels": [ + { + "label": "宁夏林业研究院股份有限公司", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/002kg1049.json b/v1.43/002kg1049.json new file mode 100644 index 000000000..8f13d6cdb --- /dev/null +++ b/v1.43/002kg1049.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/002kg1049", + "name": "Universidad de las Américas", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 12.13282, + "lng": -86.2504, + "state": null, + "state_code": null, + "city": "Managua", + "geonames_city": { + "id": 3617763, + "city": "Managua", + "geonames_admin1": { + "name": "Managua Department", + "id": 3617762, + "ascii_name": "Managua Department", + "code": "NI.10" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3617476 + } + ], + "links": [ + "https://ulam.edu.ni" + ], + "aliases": [], + "acronyms": [ + "ULAM" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Nicaragua", + "country_code": "NI" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 6465 5145" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30293812" + ] + }, + "GRID": { + "preferred": "grid.441310.3", + "all": "grid.441310.3" + } + } +} \ No newline at end of file diff --git a/v1.43/002ty1h48.json b/v1.43/002ty1h48.json new file mode 100644 index 000000000..c8b6d870a --- /dev/null +++ b/v1.43/002ty1h48.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/002ty1h48", + "name": "Laboratoire pour l'utilisation des lasers intenses", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://luli.ip-paris.fr" + ], + "aliases": [], + "acronyms": [ + "LULI" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Laboratory for the User of Intense Lasers", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9029 5703" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR7605" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3214506" + ] + }, + "GRID": { + "preferred": "grid.463726.2", + "all": "grid.463726.2" + } + } +} \ No newline at end of file diff --git a/v1.43/002v40q27.json b/v1.43/002v40q27.json new file mode 100644 index 000000000..c963f4245 --- /dev/null +++ b/v1.43/002v40q27.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/002v40q27", + "name": "Institut des Neurosciences Paris-Saclay", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.7326, + "lng": 2.16923, + "state": null, + "state_code": null, + "city": "Saclay", + "geonames_city": { + "id": 2982043, + "city": "Saclay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://neuropsi.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "Neuro-PSI" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut des Neurosciences Paris Saclay", + "iso639": "fr" + }, + { + "label": "Paris-Saclay Institute of Neuroscience", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30261478" + ] + }, + "GRID": { + "preferred": "grid.465540.6", + "all": "grid.465540.6" + } + } +} \ No newline at end of file diff --git a/v1.43/002zc3t08.json b/v1.43/002zc3t08.json new file mode 100644 index 000000000..7326c26cb --- /dev/null +++ b/v1.43/002zc3t08.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/002zc3t08", + "name": "Institut de Mécanique Céleste et de Calcul des Éphémérides", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.imcce.fr" + ], + "aliases": [], + "acronyms": [ + "IMCCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_de_m%C3%A9canique_c%C3%A9leste_et_de_calcul_des_%C3%A9ph%C3%A9m%C3%A9rides", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0672 5780" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR8028" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3152052" + ] + }, + "GRID": { + "preferred": "grid.462516.2", + "all": "grid.462516.2" + } + } +} \ No newline at end of file diff --git a/v1.43/003vg9w96.json b/v1.43/003vg9w96.json new file mode 100644 index 000000000..e6be54ee7 --- /dev/null +++ b/v1.43/003vg9w96.json @@ -0,0 +1,774 @@ +{ + "id": "https://ror.org/003vg9w96", + "name": "National Research Institute for Agriculture, Food and Environment", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.inrae.fr/" + ], + "aliases": [], + "acronyms": [ + "INRAE" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Institut National de Recherche pour l'Agriculture, l'Alimentation et l'Environnement", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "preferred": "501100022077", + "all": [ + "501100022077" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q70571774" + ] + }, + "GRID": { + "preferred": "grid.507621.7", + "all": "grid.507621.7" + } + } +} \ No newline at end of file diff --git a/v1.43/003x0zc53.json b/v1.43/003x0zc53.json new file mode 100644 index 000000000..f1eafdb5b --- /dev/null +++ b/v1.43/003x0zc53.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/003x0zc53", + "name": "Agencia Estatal de Investigación", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ministerio de Ciencia, Innovación y Universidades", + "type": "Parent", + "id": "https://ror.org/05r0vyz12" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.aei.gob.es/" + ], + "aliases": [], + "acronyms": [ + "AEI" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Agencia_Estatal_de_Investigaci%C3%B3n", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "FundRef": { + "preferred": "501100011033", + "all": [ + "501100011033" + ] + }, + "Wikidata": { + "preferred": "Q32826443", + "all": [ + "Q32826443" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/0040z4m89.json b/v1.43/0040z4m89.json new file mode 100644 index 000000000..42d8b1269 --- /dev/null +++ b/v1.43/0040z4m89.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/0040z4m89", + "name": "Geocisa (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "DRACE GEOCISA S.A. (Spain)", + "type": "Successor", + "id": "https://ror.org/03gf4dx13" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.geocisa.com/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0508 2314" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30257014" + ] + }, + "GRID": { + "preferred": "grid.434904.e", + "all": "grid.434904.e" + } + } +} \ No newline at end of file diff --git a/v1.43/0048jxt15.json b/v1.43/0048jxt15.json new file mode 100644 index 000000000..12d6f33de --- /dev/null +++ b/v1.43/0048jxt15.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/0048jxt15", + "name": "Veneto Institute of Molecular Medicine Home", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Fondazione Ricerca Biomedica Avanzata Onlus - VIMM", + "type": "Related", + "id": "https://ror.org/03q5e6q66" + } + ], + "addresses": [ + { + "lat": 45.40797, + "lng": 11.88586, + "state": null, + "state_code": null, + "city": "Padua", + "geonames_city": { + "id": 3171728, + "city": "Padua", + "geonames_admin1": { + "name": "Veneto", + "id": 3164604, + "ascii_name": "Veneto", + "code": "IT.20" + }, + "geonames_admin2": { + "name": "Padua", + "id": 3171727, + "ascii_name": "Padua", + "code": "IT.20.PD" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "https://www.vimm.it" + ], + "aliases": [ + "VIMM - Veneto Institute of Molecular Medicine", + "Venetian Institute of Molecular Medicine" + ], + "acronyms": [ + "VIMM" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "preferred": "grid.428736.c", + "all": "grid.428736.c" + }, + "Wikidata": { + "preferred": "Q30287361", + "all": [ + "Q30287361" + ] + }, + "ISNI": { + "preferred": "0000 0005 0370 449X", + "all": [ + "0000 0005 0370 449X" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/004majf41.json b/v1.43/004majf41.json new file mode 100644 index 000000000..2ad4fb459 --- /dev/null +++ b/v1.43/004majf41.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/004majf41", + "name": "Hobart and William Smith Colleges", + "email_address": null, + "ip_addresses": [], + "established": 1818, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Great Lakes Research Consortium", + "type": "Related", + "id": "https://ror.org/05cshtm26" + } + ], + "addresses": [ + { + "lat": 42.86896, + "lng": -76.97774, + "state": null, + "state_code": null, + "city": "Geneva", + "geonames_city": { + "id": 5118398, + "city": "Geneva", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Ontario", + "id": 5129891, + "ascii_name": "Ontario", + "code": "US.NY.069" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www2.hws.edu/" + ], + "aliases": [], + "acronyms": [ + "HWS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Hobart_and_William_Smith_Colleges", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "568047" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q4119316" + ] + }, + "GRID": { + "preferred": "grid.257037.4", + "all": "grid.257037.4" + } + } +} \ No newline at end of file diff --git a/v1.43/0050cbz19.json b/v1.43/0050cbz19.json new file mode 100644 index 000000000..25b7717e9 --- /dev/null +++ b/v1.43/0050cbz19.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/0050cbz19", + "name": "MoSAR - Modelisation Systemique Appliquee aux Ruminants", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www6.jouy.inrae.fr/mosar" + ], + "aliases": [ + "Modelisation Systemique Appliquee aux Ruminants" + ], + "acronyms": [ + "MoSAR" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q51785610", + "all": [ + "Q51785610" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/0051rme32.json b/v1.43/0051rme32.json new file mode 100644 index 000000000..b4c11eb49 --- /dev/null +++ b/v1.43/0051rme32.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/0051rme32", + "name": "Northwest A&F University", + "email_address": null, + "ip_addresses": [], + "established": 1934, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.27173, + "lng": 108.07891, + "state": null, + "state_code": null, + "city": "Yangling", + "geonames_city": { + "id": 1787458, + "city": "Yangling", + "geonames_admin1": { + "name": "Shaanxi", + "id": 1796480, + "ascii_name": "Shaanxi", + "code": "CN.26" + }, + "geonames_admin2": { + "name": "Xianyang Shi", + "id": 1790352, + "ascii_name": "Xianyang Shi", + "code": "CN.26.6104" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "https://www.nwsuaf.edu.cn" + ], + "aliases": [ + "Xīběi Nónglín Kējì Dàxué" + ], + "acronyms": [ + "NWAFU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Northwest_A%26F_University", + "labels": [ + { + "label": "西北农林科技大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1760 4150" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100007548" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "19478013" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q985808" + ] + }, + "GRID": { + "preferred": "grid.144022.1", + "all": "grid.144022.1" + } + } +} \ No newline at end of file diff --git a/v1.43/00559m198.json b/v1.43/00559m198.json new file mode 100644 index 000000000..3fdeec528 --- /dev/null +++ b/v1.43/00559m198.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/00559m198", + "name": "Fundación Ciudad de la Energía", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.54664, + "lng": -6.59619, + "state": null, + "state_code": null, + "city": "Ponferrada", + "geonames_city": { + "id": 3113236, + "city": "Ponferrada", + "geonames_admin1": { + "name": "Castille and León", + "id": 3336900, + "ascii_name": "Castille and León", + "code": "ES.55" + }, + "geonames_admin2": { + "name": "Leon", + "id": 3118528, + "ascii_name": "Leon", + "code": "ES.55.LE" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.ciuden.es" + ], + "aliases": [], + "acronyms": [ + "CIUDEN" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.424790.c", + "all": "grid.424790.c" + } + } +} \ No newline at end of file diff --git a/v1.43/005a3p084.json b/v1.43/005a3p084.json new file mode 100644 index 000000000..e6eb86a88 --- /dev/null +++ b/v1.43/005a3p084.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/005a3p084", + "name": "Hospital Universitario Nuestra Señora de Candelaria", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Universidad de La Laguna", + "type": "Related", + "id": "https://ror.org/01r9z8p25" + } + ], + "addresses": [ + { + "lat": 28.46824, + "lng": -16.25462, + "state": null, + "state_code": null, + "city": "Tenerife", + "geonames_city": { + "id": 2511174, + "city": "Tenerife", + "geonames_admin1": { + "name": "Canary Islands", + "id": 2593110, + "ascii_name": "Canary Islands", + "code": "ES.53" + }, + "geonames_admin2": { + "name": "Santa Cruz de Tenerife", + "id": 2511173, + "ascii_name": "Santa Cruz de Tenerife", + "code": "ES.53.TF" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.uihunsc.com/" + ], + "aliases": [], + "acronyms": [ + "HUNSC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Hospital_Universitario_Nuestra_Se%C3%B1ora_de_Candelaria", + "labels": [ + { + "label": "University Hospital of the Nuestra Señora de Candelaria", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1771 1220" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5908637" + ] + }, + "GRID": { + "preferred": "grid.411331.5", + "all": "grid.411331.5" + } + } +} \ No newline at end of file diff --git a/v1.43/005aghs32.json b/v1.43/005aghs32.json new file mode 100644 index 000000000..f4436d32a --- /dev/null +++ b/v1.43/005aghs32.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/005aghs32", + "name": "Taylor University", + "email_address": null, + "ip_addresses": [], + "established": 1846, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 40.4756, + "lng": -85.49442, + "state": null, + "state_code": null, + "city": "Upland", + "geonames_city": { + "id": 4927510, + "city": "Upland", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Grant", + "id": 4920875, + "ascii_name": "Grant", + "code": "US.IN.053" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.taylor.edu/" + ], + "aliases": [], + "acronyms": [ + "TU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Taylor_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1936 9449" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "886363" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7690168" + ] + }, + "GRID": { + "preferred": "grid.264622.6", + "all": "grid.264622.6" + } + } +} \ No newline at end of file diff --git a/v1.43/005ta0471.json b/v1.43/005ta0471.json new file mode 100644 index 000000000..a03d9d99d --- /dev/null +++ b/v1.43/005ta0471.json @@ -0,0 +1,267 @@ +{ + "id": "https://ror.org/005ta0471", + "name": "Istituto Nazionale di Fisica Nucleare", + "email_address": "", + "ip_addresses": [], + "established": 1951, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "name": "Lazio", + "id": 3174976, + "ascii_name": "Lazio", + "code": "IT.07" + }, + "geonames_admin2": { + "name": "Rome", + "id": 3169069, + "ascii_name": "Rome", + "code": "IT.07.RM" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "https://home.infn.it" + ], + "aliases": [], + "acronyms": [ + "INFN" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Istituto_Nazionale_di_Fisica_Nucleare", + "labels": [ + { + "label": "National Institute for Nuclear Physics", + "iso639": "en" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1757 5281" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004007", + "501100013168" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "7034473" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1674876" + ] + }, + "GRID": { + "preferred": "grid.6045.7", + "all": "grid.6045.7" + } + } +} \ No newline at end of file diff --git a/v1.43/00675rp98.json b/v1.43/00675rp98.json new file mode 100644 index 000000000..4d2d74634 --- /dev/null +++ b/v1.43/00675rp98.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/00675rp98", + "name": "Centre National pour la Recherche Scientifique et Technique (CNRST)", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 34.01325, + "lng": -6.83255, + "state": null, + "state_code": null, + "city": "Rabat", + "geonames_city": { + "id": 2538475, + "city": "Rabat", + "geonames_admin1": { + "name": "Rabat-Salé-Kénitra", + "id": 11281877, + "ascii_name": "Rabat-Salé-Kénitra", + "code": "MA.04" + }, + "geonames_admin2": { + "name": "Rabat", + "id": 2538474, + "ascii_name": "Rabat", + "code": "MA.04.421" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2542007 + } + ], + "links": [ + "https://www.cnrst.ma" + ], + "aliases": [ + "Centre National pour la Recherche Scientifique et Technique", + "National Center for Scientific and Technical Research (CNRST)" + ], + "acronyms": [ + "CNRST" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "المركز الوطني للبحث العلمي والتقني", + "iso639": "ar" + } + ], + "country": { + "country_name": "Morocco", + "country_code": "MA" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0441 6417" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100006319" + ] + }, + "GRID": { + "preferred": "grid.423788.2", + "all": "grid.423788.2" + }, + "Wikidata": { + "preferred": "Q30284534", + "all": [ + "Q30284534" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/006e5kg04.json b/v1.43/006e5kg04.json new file mode 100644 index 000000000..66f24e480 --- /dev/null +++ b/v1.43/006e5kg04.json @@ -0,0 +1,141 @@ +{ + "id": "https://ror.org/006e5kg04", + "name": "Vrije Universiteit Brussel", + "email_address": "", + "ip_addresses": [], + "established": 1834, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "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": "European Association for Education Law and Policy", + "type": "Related", + "id": "https://ror.org/016782g02" + } + ], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "name": "Brussels Capital", + "id": 2800867, + "ascii_name": "Brussels Capital", + "code": "BE.BRU" + }, + "geonames_admin2": { + "name": "Bruxelles-Capitale", + "id": 6693370, + "ascii_name": "Bruxelles-Capitale", + "code": "BE.BRU.BRU" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2802361 + } + ], + "links": [ + "http://www.vub.ac.be/en/" + ], + "aliases": [], + "acronyms": [ + "VUB" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Vrije_Universiteit_Brussel", + "labels": [], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2290 8069" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004418" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "385877" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q612665" + ] + }, + "GRID": { + "preferred": "grid.8767.e", + "all": "grid.8767.e" + } + } +} \ No newline at end of file diff --git a/v1.43/006m74d95.json b/v1.43/006m74d95.json new file mode 100644 index 000000000..1be265b67 --- /dev/null +++ b/v1.43/006m74d95.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/006m74d95", + "name": "Northwestern University in Qatar", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Northwestern University", + "type": "Related", + "id": "https://ror.org/000e0be47" + } + ], + "addresses": [ + { + "lat": 25.28545, + "lng": 51.53096, + "state": null, + "state_code": null, + "city": "Doha", + "geonames_city": { + "id": 290030, + "city": "Doha", + "geonames_admin1": { + "name": "Baladīyat ad Dawḩah", + "id": 389470, + "ascii_name": "Baladīyat ad Dawḩah", + "code": "QA.01" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 289688 + } + ], + "links": [ + "https://www.qatar.northwestern.edu" + ], + "aliases": [], + "acronyms": [ + "NU-Q" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Northwestern_University_in_Qatar", + "labels": [ + { + "label": "Universidad del noroeste", + "iso639": "es" + } + ], + "country": { + "country_name": "Qatar", + "country_code": "QA" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0548 1261", + "all": [ + "0000 0004 0548 1261", + "0000 0004 9474 7403" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "23417284" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q890759" + ] + }, + "GRID": { + "preferred": "grid.452115.6", + "all": "grid.452115.6" + } + } +} \ No newline at end of file diff --git a/v1.43/007bytg49.json b/v1.43/007bytg49.json new file mode 100644 index 000000000..57d3886ff --- /dev/null +++ b/v1.43/007bytg49.json @@ -0,0 +1,83 @@ +{ + "ip_addresses": [], + "aliases": [ + "Institutul de Studii Sud-Est Europene al Academiei Române", + "The Romanian Academy’s Institute for South-East European Studies" + ], + "acronyms": [], + "links": [ + "https://www.acadsudest.ro" + ], + "country": { + "country_name": "Romania", + "country_code": "RO" + }, + "name": "Institutul de Studii Sud-Est Europene", + "wikipedia_url": null, + "addresses": [ + { + "lat": 44.43225, + "lng": 26.10626, + "state": null, + "state_code": null, + "country_geonames_id": 798549, + "city": "Bucharest", + "geonames_city": { + "id": 683506, + "city": "Bucharest", + "geonames_admin1": { + "name": "București", + "ascii_name": "București", + "id": 683504, + "code": "RO.10" + }, + "geonames_admin2": { + "name": "Municipiul Bucureşti", + "id": 8335003, + "ascii_name": "Municipiul Bucureşti", + "code": "RO.10.179132" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": null, + "relationships": [ + { + "label": "Romanian Academy", + "type": "Parent", + "id": "https://ror.org/0561n6946" + } + ], + "email_address": null, + "id": "https://ror.org/007bytg49", + "labels": [ + { + "label": "Institute for South-East European Studies", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/007sts724.json b/v1.43/007sts724.json new file mode 100644 index 000000000..a619f8d8c --- /dev/null +++ b/v1.43/007sts724.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/007sts724", + "name": "New Mexico State University Alamogordo", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "New Mexico State University", + "type": "Parent", + "id": "https://ror.org/00hpz7z43" + } + ], + "addresses": [ + { + "lat": 32.89953, + "lng": -105.96027, + "state": null, + "state_code": null, + "city": "Alamogordo", + "geonames_city": { + "id": 5454627, + "city": "Alamogordo", + "geonames_admin1": { + "name": "New Mexico", + "id": 5481136, + "ascii_name": "New Mexico", + "code": "US.NM" + }, + "geonames_admin2": { + "name": "Otero", + "id": 5482932, + "ascii_name": "Otero", + "code": "US.NM.035" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://alamogordo.nmsu.edu" + ], + "aliases": [ + "NMSU Alamogordo" + ], + "acronyms": [ + "NMSU-A" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/New_Mexico_State_University_Alamogordo", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 4650 5039" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "37600864" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7010288" + ] + }, + "GRID": { + "preferred": "grid.449449.0", + "all": "grid.449449.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..4b0296398 --- /dev/null +++ b/v1.43/007x3c094.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/007x3c094", + "name": "Délégation Paris-Villejuif-03", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Direction Générale Déléguée aux Ressources", + "type": "Parent", + "id": "https://ror.org/03yz3tz18" + } + ], + "addresses": [ + { + "lat": 48.76496, + "lng": 2.3961, + "state": null, + "state_code": null, + "city": "Thiais", + "geonames_city": { + "id": 2972893, + "city": "Thiais", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Val-de-Marne", + "id": 2971090, + "ascii_name": "Val-de-Marne", + "code": "FR.11.94" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.dr1.cnrs.fr/spip.php?article118" + ], + "aliases": [ + "DR03" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "CNRS": { + "preferred": null, + "all": [ + "MOY300" + ] + }, + "GRID": { + "preferred": "grid.457096.9", + "all": "grid.457096.9" + } + } +} \ No newline at end of file diff --git a/v1.43/007xgfy35.json b/v1.43/007xgfy35.json new file mode 100644 index 000000000..9048eb17d --- /dev/null +++ b/v1.43/007xgfy35.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "TrinaSolar Co., Ltd.", + "TrinaSolar Co.", + "TrinaSolar" + ], + "acronyms": [], + "links": [ + "https://www.trinasolar.com" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "TrinaSolar Co., Ltd. (China)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 31.77359, + "lng": 119.95401, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Changzhou", + "geonames_city": { + "id": 1815456, + "city": "Changzhou", + "geonames_admin1": { + "name": "Jiangsu", + "ascii_name": "Jiangsu", + "id": 1806260, + "code": "CN.04" + }, + "geonames_admin2": { + "name": "Changzhou Shi", + "id": 1815454, + "ascii_name": "Changzhou Shi", + "code": "CN.04.3204" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/007xgfy35", + "labels": [ + { + "label": "天合光能股份有限公司", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/0083c5602.json b/v1.43/0083c5602.json new file mode 100644 index 000000000..5397defef --- /dev/null +++ b/v1.43/0083c5602.json @@ -0,0 +1,85 @@ +{ + "ip_addresses": [], + "aliases": [ + "Damp Foundation", + "Damp-Stiftung" + ], + "acronyms": [], + "links": [ + "https://www.damp-stiftung.de" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "Damp Stiftung", + "wikipedia_url": null, + "addresses": [ + { + "lat": 54.32133, + "lng": 10.13489, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Kiel", + "geonames_city": { + "id": 2891122, + "city": "Kiel", + "geonames_admin1": { + "name": "Schleswig-Holstein", + "ascii_name": "Schleswig-Holstein", + "id": 2838632, + "code": "DE.10" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.10.00" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8308 2557", + "all": [ + "0000 0004 8308 2557" + ] + }, + "FundRef": { + "preferred": "501100013859", + "all": [ + "501100013859" + ] + } + }, + "established": 2012, + "relationships": [], + "email_address": null, + "id": "https://ror.org/0083c5602", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/008j47576.json b/v1.43/008j47576.json new file mode 100644 index 000000000..eec2cb05f --- /dev/null +++ b/v1.43/008j47576.json @@ -0,0 +1,80 @@ +{ + "ip_addresses": [], + "aliases": [ + "Mount Kenya University Rwanda" + ], + "acronyms": [ + "MKUR" + ], + "links": [ + "https://mkur.ac.rw" + ], + "country": { + "country_name": "Rwanda", + "country_code": "RW" + }, + "name": "Mount Kigali University", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mount_Kigali_University", + "addresses": [ + { + "lat": -1.94995, + "lng": 30.05885, + "state": null, + "state_code": null, + "country_geonames_id": 49518, + "city": "Kigali", + "geonames_city": { + "id": 202061, + "city": "Kigali", + "geonames_admin1": { + "name": "Kigali", + "ascii_name": "Kigali", + "id": 6413338, + "code": "RW.12" + }, + "geonames_admin2": { + "name": "Nyarugenge District", + "id": 7690205, + "ascii_name": "Nyarugenge District", + "code": "RW.12.11" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q119702803", + "all": [ + "Q119702803" + ] + } + }, + "established": 2010, + "relationships": [], + "email_address": null, + "id": "https://ror.org/008j47576", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/008jep717.json b/v1.43/008jep717.json new file mode 100644 index 000000000..487fe039c --- /dev/null +++ b/v1.43/008jep717.json @@ -0,0 +1,80 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [], + "country": { + "country_name": "Mozambique", + "country_code": "MZ" + }, + "name": "Instituto Agrário de Chimoio", + "wikipedia_url": null, + "addresses": [ + { + "lat": -19.11639, + "lng": 33.48333, + "state": null, + "state_code": null, + "country_geonames_id": 1036973, + "city": "Chimoio", + "geonames_city": { + "id": 1049261, + "city": "Chimoio", + "geonames_admin1": { + "name": "Manica", + "ascii_name": "Manica", + "id": 1040947, + "code": "MZ.10" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0000 8751 5410", + "all": [ + "0000 0000 8751 5410" + ] + }, + "Wikidata": { + "preferred": "Q21485207", + "all": [ + "Q21485207" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/008jep717", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/008kn4z11.json b/v1.43/008kn4z11.json new file mode 100644 index 000000000..e16d794b9 --- /dev/null +++ b/v1.43/008kn4z11.json @@ -0,0 +1,133 @@ +{ + "id": "https://ror.org/008kn4z11", + "name": "Délégation Ile-de-France Villejuif", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.iledefrance-villejuif.cnrs.fr/" + ], + "aliases": [], + "acronyms": [ + "DR01" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "CNRS": { + "preferred": null, + "all": [ + "MOY100" + ] + }, + "GRID": { + "preferred": "grid.457095.a", + "all": "grid.457095.a" + } + } +} \ No newline at end of file diff --git a/v1.43/008rmbt77.json b/v1.43/008rmbt77.json new file mode 100644 index 000000000..d287c16fd --- /dev/null +++ b/v1.43/008rmbt77.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/008rmbt77", + "name": "Binghamton University", + "email_address": "", + "ip_addresses": [], + "established": 1946, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 42.09869, + "lng": -75.91797, + "state": null, + "state_code": null, + "city": "Binghamton", + "geonames_city": { + "id": 5109177, + "city": "Binghamton", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Broome", + "id": 5110365, + "ascii_name": "Broome", + "code": "US.NY.007" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.binghamton.edu" + ], + "aliases": [ + "SUNY Binghamton", + "State University of New York, Binghamton" + ], + "acronyms": [ + "BU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Binghamton_University", + "labels": [ + { + "label": "Universidad de Binghamton", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2164 4508" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100008451" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "275474" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q863813" + ] + }, + "GRID": { + "preferred": "grid.264260.4", + "all": "grid.264260.4" + } + } +} \ No newline at end of file diff --git a/v1.43/008rywf59.json b/v1.43/008rywf59.json new file mode 100644 index 000000000..bde1f1b78 --- /dev/null +++ b/v1.43/008rywf59.json @@ -0,0 +1,130 @@ +{ + "id": "https://ror.org/008rywf59", + "name": "Centre d'Écologie Fonctionnelle et Évolutive", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.cefe.cnrs.fr/fr/" + ], + "aliases": [], + "acronyms": [ + "CEFE" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2169 1275" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR5175" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30255991" + ] + }, + "GRID": { + "preferred": "grid.433534.6", + "all": "grid.433534.6" + } + } +} \ No newline at end of file diff --git a/v1.43/0090gef29.json b/v1.43/0090gef29.json new file mode 100644 index 000000000..4fc339713 --- /dev/null +++ b/v1.43/0090gef29.json @@ -0,0 +1,73 @@ +{ + "ip_addresses": [], + "aliases": [ + "Spanish Association of Lymphedema" + ], + "acronyms": [ + "AEL" + ], + "links": [ + "https://aelinfedema.org" + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "name": "Asociación Española de Linfedema", + "wikipedia_url": null, + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "country_geonames_id": 2510769, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "ascii_name": "Madrid", + "id": 3117732, + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": {}, + "established": 2016, + "relationships": [], + "email_address": null, + "id": "https://ror.org/0090gef29", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/0090zs177.json b/v1.43/0090zs177.json new file mode 100644 index 000000000..ce37ba03d --- /dev/null +++ b/v1.43/0090zs177.json @@ -0,0 +1,146 @@ +{ + "id": "https://ror.org/0090zs177", + "name": "London School of Economics and Political Science", + "email_address": null, + "ip_addresses": [], + "established": 1895, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of London", + "type": "Parent", + "id": "https://ror.org/04cw6st05" + }, + { + "label": "Systemic Risk Centre", + "type": "Child", + "id": "https://ror.org/05d88z031" + }, + { + "label": "International Growth Centre", + "type": "Child", + "id": "https://ror.org/01zgm7d48" + }, + { + "label": "Centre for Climate Change Economics and Policy", + "type": "Child", + "id": "https://ror.org/03tsg3y65" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.lse.ac.uk/home.aspx" + ], + "aliases": [ + "London School of Economics" + ], + "acronyms": [ + "LSE" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/London_School_of_Economics", + "labels": [ + { + "label": "Ysgol Economeg a Gwyddor Gwleidyddiaeth Llundain", + "iso639": "cy" + } + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0789 5319" + ] + }, + "FundRef": { + "preferred": "100011326", + "all": [ + "100011326" + ] + }, + "HESA": { + "preferred": null, + "all": [ + "0137" + ] + }, + "UCAS": { + "preferred": null, + "all": [ + "L72" + ] + }, + "UKPRN": { + "preferred": null, + "all": [ + "10004063" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "67704" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q174570" + ] + }, + "GRID": { + "preferred": "grid.13063.37", + "all": "grid.13063.37" + } + } +} \ No newline at end of file diff --git a/v1.43/009avj582.json b/v1.43/009avj582.json new file mode 100644 index 000000000..6c29d072d --- /dev/null +++ b/v1.43/009avj582.json @@ -0,0 +1,153 @@ +{ + "id": "https://ror.org/009avj582", + "name": "Oregon Health & Science University", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "OHSU Knight Cancer Institute", + "type": "Child", + "id": "https://ror.org/002shna07" + }, + { + "label": "Vaccine and Gene Therapy Institute", + "type": "Child", + "id": "https://ror.org/00d4pqn65" + } + ], + "addresses": [ + { + "lat": 45.52345, + "lng": -122.67621, + "state": null, + "state_code": null, + "city": "Portland", + "geonames_city": { + "id": 5746545, + "city": "Portland", + "geonames_admin1": { + "name": "Oregon", + "id": 5744337, + "ascii_name": "Oregon", + "code": "US.OR" + }, + "geonames_admin2": { + "name": "Multnomah", + "id": 5742126, + "ascii_name": "Multnomah", + "code": "US.OR.051" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.ohsu.edu" + ], + "aliases": [ + "University of Oregon Health Sciences Center", + "Oregon Health Sciences University" + ], + "acronyms": [ + "OHSU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Oregon_Health_%26_Science_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9758 5690" + ] + }, + "FundRef": { + "preferred": "100006668", + "all": [ + "100006668", + "100006667", + "100007804", + "100007269" + ] + }, + "OrgRef": { + "preferred": "1655072", + "all": [ + "1655072", + "23601083" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q282097" + ] + }, + "GRID": { + "preferred": "grid.5288.7", + "all": "grid.5288.7" + } + } +} \ No newline at end of file diff --git a/v1.43/009q0jm69.json b/v1.43/009q0jm69.json new file mode 100644 index 000000000..f95b530c4 --- /dev/null +++ b/v1.43/009q0jm69.json @@ -0,0 +1,94 @@ +{ + "ip_addresses": [], + "aliases": [ + "Agricultural Experiment Station, New Mexico State University", + "New Mexico State University Agricultural Experiment Station" + ], + "acronyms": [ + "AES NMSU", + "NMSU AES" + ], + "links": [ + "https://aes.nmsu.edu" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Agricultural Experiment Station", + "wikipedia_url": "https://en.wikipedia.org/wiki/New_Mexico_State_University_Agricultural_Experiment_Station", + "addresses": [ + { + "lat": 32.31232, + "lng": -106.77834, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Las Cruces", + "geonames_city": { + "id": 5475352, + "city": "Las Cruces", + "geonames_admin1": { + "name": "New Mexico", + "ascii_name": "New Mexico", + "id": 5481136, + "code": "US.NM" + }, + "geonames_admin2": { + "name": "Doña Ana", + "id": 5465283, + "ascii_name": "Doña Ana", + "code": "US.NM.013" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q45133446", + "all": [ + "Q45133446" + ] + }, + "FundRef": { + "preferred": "100011499", + "all": [ + "100011499" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "New Mexico State University", + "type": "Parent", + "id": "https://ror.org/00hpz7z43" + } + ], + "email_address": null, + "id": "https://ror.org/009q0jm69", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/009xdmc59.json b/v1.43/009xdmc59.json new file mode 100644 index 000000000..08cd1ae68 --- /dev/null +++ b/v1.43/009xdmc59.json @@ -0,0 +1,99 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "BAM" + ], + "links": [ + "https://www.bam.edu.es" + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "name": "Escuela Universitaria de Magisterio Begoñako Andra Mari", + "wikipedia_url": null, + "addresses": [ + { + "lat": 43.26271, + "lng": -2.92528, + "state": null, + "state_code": null, + "country_geonames_id": 2510769, + "city": "Bilbao", + "geonames_city": { + "id": 3128026, + "city": "Bilbao", + "geonames_admin1": { + "name": "Basque Country", + "ascii_name": "Basque Country", + "id": 3336903, + "code": "ES.59" + }, + "geonames_admin2": { + "name": "Biscay", + "id": 3104469, + "ascii_name": "Biscay", + "code": "ES.59.BI" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0617 3682", + "all": [ + "0000 0004 0617 3682" + ] + }, + "Wikidata": { + "preferred": "Q124670480", + "all": [ + "Q124670480" + ] + } + }, + "established": 1948, + "relationships": [ + { + "label": "Universidad de Deusto", + "type": "Related", + "id": "https://ror.org/00ne6sr39" + } + ], + "email_address": null, + "id": "https://ror.org/009xdmc59", + "labels": [ + { + "label": "Begoñako Andra Mari Irakasleen Unibertsitate Eskola", + "iso639": "eu" + }, + { + "label": "Begoñako Andra Mari Teacher Training University College", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00a7bnr15.json b/v1.43/00a7bnr15.json new file mode 100644 index 000000000..f09476f6c --- /dev/null +++ b/v1.43/00a7bnr15.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/00a7bnr15", + "name": "Fundación Tripartita para la Formación en el Empleo", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.fundae.es" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0614 8604" + ] + }, + "GRID": { + "preferred": "grid.434278.e", + "all": "grid.434278.e" + } + } +} \ No newline at end of file diff --git a/v1.43/00ae7jd04.json b/v1.43/00ae7jd04.json new file mode 100644 index 000000000..e0031621e --- /dev/null +++ b/v1.43/00ae7jd04.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/00ae7jd04", + "name": "World Bank", + "email_address": null, + "ip_addresses": [], + "established": 1944, + "types": [ + "Other" + ], + "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" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "name": "Washington, D.C.", + "id": 4138106, + "ascii_name": "Washington, D.C.", + "code": "US.DC" + }, + "geonames_admin2": { + "name": "Washington", + "id": 4140987, + "ascii_name": "Washington", + "code": "US.DC.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.worldbank.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/World_Bank", + "labels": [ + { + "label": "Banque Mondiale", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0482 9086" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100004421" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7164" + ] + }, + "GRID": { + "preferred": "grid.431778.e", + "all": "grid.431778.e" + } + } +} \ No newline at end of file diff --git a/v1.43/00ajjta07.json b/v1.43/00ajjta07.json new file mode 100644 index 000000000..08a047f9c --- /dev/null +++ b/v1.43/00ajjta07.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/00ajjta07", + "name": "Institut des Sciences des Plantes de Paris Saclay", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://ips2.u-psud.fr" + ], + "aliases": [ + "Paris Saclay Institute of Plant Sciences", + "Institute of Plant Sciences of Paris Saclay" + ], + "acronyms": [ + "IPS2" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "CNRS": { + "preferred": null, + "all": [ + "UMR9213" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q51784779" + ] + }, + "GRID": { + "preferred": "grid.503243.3", + "all": "grid.503243.3" + } + } +} \ No newline at end of file diff --git a/v1.43/00b67z867.json b/v1.43/00b67z867.json new file mode 100644 index 000000000..0344899c2 --- /dev/null +++ b/v1.43/00b67z867.json @@ -0,0 +1,92 @@ +{ + "ip_addresses": [], + "aliases": [ + "State Key Lab of Automotive Simulation and Control", + "State Key Laboratory of Automobile Simulation and Control", + "State Key Lab of Automobile Simulation and Control", + "汽车动态模拟国家重点实验室" + ], + "acronyms": [], + "links": [ + "http://www.ascl.jlu.edu.cn" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "State Key Laboratory of Automotive Simulation and Control", + "wikipedia_url": null, + "addresses": [ + { + "lat": 43.88, + "lng": 125.32278, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Changchun", + "geonames_city": { + "id": 2038180, + "city": "Changchun", + "geonames_admin1": { + "name": "Jilin", + "ascii_name": "Jilin", + "id": 2036500, + "code": "CN.05" + }, + "geonames_admin2": { + "name": "Changchun Shi", + "id": 2038176, + "ascii_name": "Changchun Shi", + "code": "CN.05.2201" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "501100011234", + "all": [ + "501100011234" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Jilin University", + "type": "Parent", + "id": "https://ror.org/00js3aw79" + } + ], + "email_address": null, + "id": "https://ror.org/00b67z867", + "labels": [ + { + "label": "汽车仿真与控制国家重点实验室", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00b80ez59.json b/v1.43/00b80ez59.json new file mode 100644 index 000000000..6404b8576 --- /dev/null +++ b/v1.43/00b80ez59.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/00b80ez59", + "name": "Functional Ecology and Biogeochemistry of Soils and Agrosystems", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.umr-ecosols.fr/en/" + ], + "aliases": [ + "Eco & Sols" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "preferred": "grid.503166.7", + "all": "grid.503166.7" + } + } +} \ No newline at end of file diff --git a/v1.43/00b88za07.json b/v1.43/00b88za07.json new file mode 100644 index 000000000..f7dbc6dcb --- /dev/null +++ b/v1.43/00b88za07.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "IRIS" + ], + "links": [ + "https://iris-recherche.qc.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Institut de recherche et d’informations socioéconomiques", + "wikipedia_url": null, + "addresses": [ + { + "lat": 45.50884, + "lng": -73.58781, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Montreal", + "geonames_city": { + "id": 6077243, + "city": "Montreal", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Montréal", + "id": 6077246, + "ascii_name": "Montréal", + "code": "CA.10.06" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0823 8812", + "all": [ + "0000 0001 0823 8812" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00b88za07", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00bb4nn95.json b/v1.43/00bb4nn95.json new file mode 100644 index 000000000..ebfbbc8f4 --- /dev/null +++ b/v1.43/00bb4nn95.json @@ -0,0 +1,85 @@ +{ + "ip_addresses": [], + "aliases": [ + "NFDI4DataScience", + "NFDI for Data Science and Artificial Intelligence" + ], + "acronyms": [], + "links": [ + "https://www.nfdi4datascience.de" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "NFDI4DS", + "wikipedia_url": "https://de.wikipedia.org/wiki/NFDI4DataScience", + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "name": "Berlin", + "ascii_name": "Berlin", + "id": 2950157, + "code": "DE.16" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.16.00" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q108542422", + "all": [ + "Q108542422" + ] + } + }, + "established": 2021, + "relationships": [ + { + "label": "Nationale Forschungsdateninfrastruktur", + "type": "Parent", + "id": "https://ror.org/05qj6w324" + } + ], + "email_address": null, + "id": "https://ror.org/00bb4nn95", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00bep5t26.json b/v1.43/00bep5t26.json new file mode 100644 index 000000000..36540d145 --- /dev/null +++ b/v1.43/00bep5t26.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/00bep5t26", + "name": "National Library of Catalonia", + "email_address": null, + "ip_addresses": [], + "established": 1907, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.bnc.cat" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Library_of_Catalonia", + "labels": [ + { + "label": "Bibliotèca de Catalonha", + "iso639": "oc" + }, + { + "label": "Biblioteca de Catalunya", + "iso639": "ca" + }, + { + "label": "Kataluniako Liburutegia", + "iso639": "eu" + }, + { + "label": "Biblioteca de Catalunya", + "iso639": "gl" + }, + { + "label": "Biblioteca de Cataluña", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2291 9040" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "15333967" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1200925" + ] + }, + "GRID": { + "preferred": "grid.462577.5", + "all": "grid.462577.5" + } + } +} \ No newline at end of file diff --git a/v1.43/00bgk9508.json b/v1.43/00bgk9508.json new file mode 100644 index 000000000..94da5e59a --- /dev/null +++ b/v1.43/00bgk9508.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/00bgk9508", + "name": "Polytechnic University of Turin", + "email_address": "", + "ip_addresses": [], + "established": 1859, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 45.07049, + "lng": 7.68682, + "state": null, + "state_code": null, + "city": "Turin", + "geonames_city": { + "id": 3165524, + "city": "Turin", + "geonames_admin1": { + "name": "Piedmont", + "id": 3170831, + "ascii_name": "Piedmont", + "code": "IT.12" + }, + "geonames_admin2": { + "name": "Turin", + "id": 3165523, + "ascii_name": "Turin", + "code": "IT.12.TO" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "http://www.polito.it/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Polytechnic_University_of_Turin", + "labels": [ + { + "label": "Politecnico di Torino", + "iso639": "it" + }, + { + "label": "École Polytechnique de Turin", + "iso639": "fr" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1937 0343" + ] + }, + "FundRef": { + "preferred": "100013000", + "all": [ + "100013000" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "911906" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q392897" + ] + }, + "GRID": { + "preferred": "grid.4800.c", + "all": "grid.4800.c" + } + } +} \ No newline at end of file diff --git a/v1.43/00brnhb09.json b/v1.43/00brnhb09.json new file mode 100644 index 000000000..6a68a0b1d --- /dev/null +++ b/v1.43/00brnhb09.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "CISSS de la Côte-Nord" + ], + "acronyms": [], + "links": [ + "https://www.cisss-cotenord.gouv.qc.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Centre intégré de santé et de services sociaux de la Côte-Nord", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux", + "addresses": [ + { + "lat": 49.21679, + "lng": -68.14894, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Baie-Comeau", + "geonames_city": { + "id": 5889745, + "city": "Baie-Comeau", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Côte-Nord", + "id": 5928473, + "ascii_name": "Côte-Nord", + "code": "CA.10.09" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8062 3186", + "all": [ + "0000 0004 8062 3186" + ] + } + }, + "established": 1946, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00brnhb09", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00bsxeq86.json b/v1.43/00bsxeq86.json new file mode 100644 index 000000000..96ab0d048 --- /dev/null +++ b/v1.43/00bsxeq86.json @@ -0,0 +1,74 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://syreon.eu" + ], + "country": { + "country_name": "Hungary", + "country_code": "HU" + }, + "name": "Syreon Research Institute (Hungary)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 47.49835, + "lng": 19.04045, + "state": null, + "state_code": null, + "country_geonames_id": 719819, + "city": "Budapest", + "geonames_city": { + "id": 3054643, + "city": "Budapest", + "geonames_admin1": { + "name": "Budapest", + "ascii_name": "Budapest", + "id": 3054638, + "code": "HU.05" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": 2008, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00bsxeq86", + "labels": [ + { + "label": "Syreon Research Institute", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00bv2aa44.json b/v1.43/00bv2aa44.json new file mode 100644 index 000000000..bf8be7f6f --- /dev/null +++ b/v1.43/00bv2aa44.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/00bv2aa44", + "name": "STCube (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.14344, + "lng": -77.20137, + "state": null, + "state_code": null, + "city": "Gaithersburg", + "geonames_city": { + "id": 4355843, + "city": "Gaithersburg", + "geonames_admin1": { + "name": "Maryland", + "id": 4361885, + "ascii_name": "Maryland", + "code": "US.MD" + }, + "geonames_admin2": { + "name": "Montgomery", + "id": 4362716, + "ascii_name": "Montgomery", + "code": "US.MD.031" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.stcube.com/" + ], + "aliases": [ + "STCube Pharmaceuticals", + "STCube Pharmaceuticals, Inc." + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "preferred": "501100011016", + "all": [ + "501100011016" + ] + }, + "GRID": { + "preferred": "grid.511415.5", + "all": "grid.511415.5" + } + } +} \ No newline at end of file diff --git a/v1.43/00by1q217.json b/v1.43/00by1q217.json new file mode 100644 index 000000000..8512dc58b --- /dev/null +++ b/v1.43/00by1q217.json @@ -0,0 +1,277 @@ +{ + "id": "https://ror.org/00by1q217", + "name": "Roche (Switzerland)", + "email_address": null, + "ip_addresses": [], + "established": 1896, + "types": [ + "Company" + ], + "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" + } + ], + "addresses": [ + { + "lat": 47.55839, + "lng": 7.57327, + "state": null, + "state_code": null, + "city": "Basel", + "geonames_city": { + "id": 2661604, + "city": "Basel", + "geonames_admin1": { + "name": "Basel-City", + "id": 2661602, + "ascii_name": "Basel-City", + "code": "CH.BS" + }, + "geonames_admin2": { + "name": "Basel-Stadt", + "id": 6458763, + "ascii_name": "Basel-Stadt", + "code": "CH.BS.1200" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "http://www.roche.ch/en/index.htm" + ], + "aliases": [ + "Hoffmann-La Roche" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Hoffmann-La_Roche", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0374 1269" + ] + }, + "FundRef": { + "preferred": "100004337", + "all": [ + "100004337", + "100007013" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "548739" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q212646" + ] + }, + "GRID": { + "preferred": "grid.417570.0", + "all": "grid.417570.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00c746491.json b/v1.43/00c746491.json new file mode 100644 index 000000000..4d38ddac8 --- /dev/null +++ b/v1.43/00c746491.json @@ -0,0 +1,99 @@ +{ + "ip_addresses": [], + "aliases": [ + "Philippines National Research Council" + ], + "acronyms": [ + "DOST-NRCP", + "NRCP" + ], + "links": [ + "https://nrcp.dost.gov.ph" + ], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "name": "National Research Council of the Philippines", + "wikipedia_url": null, + "addresses": [ + { + "lat": 14.5243, + "lng": 121.0792, + "state": null, + "state_code": null, + "country_geonames_id": 1694008, + "city": "Taguig", + "geonames_city": { + "id": 1684308, + "city": "Taguig", + "geonames_admin1": { + "name": "National Capital Region", + "ascii_name": "National Capital Region", + "id": 7521311, + "code": "PH.NCR" + }, + "geonames_admin2": { + "name": "Southern Manila District", + "id": 11395838, + "ascii_name": "Southern Manila District", + "code": "PH.NCR.137600000" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7777 4717", + "all": [ + "0000 0004 7777 4717" + ] + }, + "Wikidata": { + "preferred": "Q114556703", + "all": [ + "Q114556703" + ] + }, + "FundRef": { + "preferred": "501100010217", + "all": [ + "501100010217" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Department of Science and Technology", + "type": "Parent", + "id": "https://ror.org/05tgxx705" + } + ], + "email_address": null, + "id": "https://ror.org/00c746491", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00ca2c886.json b/v1.43/00ca2c886.json new file mode 100644 index 000000000..217af3ae9 --- /dev/null +++ b/v1.43/00ca2c886.json @@ -0,0 +1,202 @@ +{ + "id": "https://ror.org/00ca2c886", + "name": "Instituto de Salud Carlos III", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Nonprofit" + ], + "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" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.isciii.es/" + ], + "aliases": [ + "Carlos III Health Institute" + ], + "acronyms": [ + "ISCIII" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Carlos_III_Health_Institute", + "labels": [ + { + "label": "Institute of Health Carlos III", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9314 1427" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004587" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5918335" + ] + }, + "GRID": { + "preferred": "grid.413448.e", + "all": "grid.413448.e" + } + } +} \ No newline at end of file diff --git a/v1.43/00carf720.json b/v1.43/00carf720.json new file mode 100644 index 000000000..bf89d1b74 --- /dev/null +++ b/v1.43/00carf720.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/00carf720", + "name": "Royal Adelaide Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1841, + "types": [ + "Healthcare" + ], + "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" + } + ], + "addresses": [ + { + "lat": -34.92866, + "lng": 138.59863, + "state": null, + "state_code": null, + "city": "Adelaide", + "geonames_city": { + "id": 2078025, + "city": "Adelaide", + "geonames_admin1": { + "name": "South Australia", + "id": 2061327, + "ascii_name": "South Australia", + "code": "AU.05" + }, + "geonames_admin2": { + "name": "Adelaide", + "id": 7839644, + "ascii_name": "Adelaide", + "code": "AU.05.40070" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "http://www.rah.sa.gov.au/homepage.php" + ], + "aliases": [], + "acronyms": [ + "RAH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Royal_Adelaide_Hospital", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0367 1221" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004267" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "1367435" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7373582" + ] + }, + "GRID": { + "preferred": "grid.416075.1", + "all": "grid.416075.1" + } + } +} \ No newline at end of file diff --git a/v1.43/00cy6xh23.json b/v1.43/00cy6xh23.json new file mode 100644 index 000000000..b44b1c48e --- /dev/null +++ b/v1.43/00cy6xh23.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/00cy6xh23", + "name": "Conservatori Superior de Música de Castelló", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.98567, + "lng": -0.04935, + "state": null, + "state_code": null, + "city": "Castellon", + "geonames_city": { + "id": 2519752, + "city": "Castellon", + "geonames_admin1": { + "name": "Valencia", + "id": 2593113, + "ascii_name": "Valencia", + "code": "ES.60" + }, + "geonames_admin2": { + "name": "Castellon", + "id": 3125881, + "ascii_name": "Castellon", + "code": "ES.60.CS" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.conservatorisuperiorcastello.com/" + ], + "aliases": [ + "Conservatorio Superior de Música de Castellón" + ], + "acronyms": [ + "CSMC" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q61931981" + ] + }, + "GRID": { + "preferred": "grid.502340.0", + "all": "grid.502340.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..80ad6cf75 --- /dev/null +++ b/v1.43/00d0nc645.json @@ -0,0 +1,197 @@ +{ + "id": "https://ror.org/00d0nc645", + "name": "Microsoft (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Company" + ], + "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" + } + ], + "addresses": [ + { + "lat": 47.67399, + "lng": -122.12151, + "state": null, + "state_code": null, + "city": "Redmond", + "geonames_city": { + "id": 5808079, + "city": "Redmond", + "geonames_admin1": { + "name": "Washington", + "id": 5815135, + "ascii_name": "Washington", + "code": "US.WA" + }, + "geonames_admin2": { + "name": "King", + "id": 5799783, + "ascii_name": "King", + "code": "US.WA.033" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.microsoft.com/en-us" + ], + "aliases": [ + "Microsoft Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Microsoft", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2181 3404" + ] + }, + "FundRef": { + "preferred": "100004318", + "all": [ + "100004318", + "100006112" + ] + }, + "Wikidata": { + "preferred": "Q2283", + "all": [ + "Q2283", + "Q47462228" + ] + }, + "GRID": { + "preferred": "grid.419815.0", + "all": "grid.419815.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00d4pqn65.json b/v1.43/00d4pqn65.json new file mode 100644 index 000000000..27a5b792a --- /dev/null +++ b/v1.43/00d4pqn65.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [ + "Vaccine & Gene Therapy Institute", + "Oregon Health & Science University Vaccine and Gene Therapy Institute", + "OHSU Vaccine and Gene Therapy Institute" + ], + "acronyms": [ + "VGTI", + "OHSU VGTI" + ], + "links": [ + "https://www.ohsu.edu/vaccine-gene-therapy-institute" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Vaccine and Gene Therapy Institute", + "wikipedia_url": null, + "addresses": [ + { + "lat": 45.48706, + "lng": -122.80371, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Beaverton", + "geonames_city": { + "id": 5713376, + "city": "Beaverton", + "geonames_admin1": { + "name": "Oregon", + "ascii_name": "Oregon", + "id": 5744337, + "code": "US.OR" + }, + "geonames_admin2": { + "name": "Washington", + "id": 5759333, + "ascii_name": "Washington", + "code": "US.OR.067" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": 2001, + "relationships": [ + { + "label": "Oregon Health & Science University", + "type": "Parent", + "id": "https://ror.org/009avj582" + } + ], + "email_address": null, + "id": "https://ror.org/00d4pqn65", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00davry38.json b/v1.43/00davry38.json new file mode 100644 index 000000000..624f3c10a --- /dev/null +++ b/v1.43/00davry38.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/00davry38", + "name": "National Technological Institute of Mexico", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Secretariat of Public Education", + "type": "Parent", + "id": "https://ror.org/02e1c4h55" + }, + { + "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": "Instituto Tecnológico de San Luis Potosí", + "type": "Child", + "id": "https://ror.org/04w0a0617" + } + ], + "addresses": [ + { + "lat": 19.42847, + "lng": -99.12766, + "state": null, + "state_code": null, + "city": "Mexico City", + "geonames_city": { + "id": 3530597, + "city": "Mexico City", + "geonames_admin1": { + "name": "Mexico City", + "id": 3527646, + "ascii_name": "Mexico City", + "code": "MX.09" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3996063 + } + ], + "links": [ + "http://www.tecnm.mx/" + ], + "aliases": [], + "acronyms": [ + "TecNM" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Tecnológico Nacional de México", + "iso639": "es" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 5988 7021" + ] + }, + "FundRef": { + "preferred": "100012725", + "all": [ + "100012725" + ] + }, + "GRID": { + "preferred": "grid.484694.3", + "all": "grid.484694.3" + } + } +} \ No newline at end of file diff --git a/v1.43/00deq0f50.json b/v1.43/00deq0f50.json new file mode 100644 index 000000000..f4170300c --- /dev/null +++ b/v1.43/00deq0f50.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "Pelita Bangsa University" + ], + "acronyms": [], + "links": [ + "https://www.pelitabangsa.ac.id" + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "name": "Universitas Pelita Bangsa", + "wikipedia_url": null, + "addresses": [ + { + "lat": -6.2349, + "lng": 106.9896, + "state": null, + "state_code": null, + "country_geonames_id": 1643084, + "city": "Bekasi", + "geonames_city": { + "id": 1649378, + "city": "Bekasi", + "geonames_admin1": { + "name": "West Java", + "ascii_name": "West Java", + "id": 1642672, + "code": "ID.30" + }, + "geonames_admin2": { + "name": "Kota Bekasi", + "id": 6599302, + "ascii_name": "Kota Bekasi", + "code": "ID.30.3275" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q109919472", + "all": [ + "Q109919472" + ] + } + }, + "established": 2019, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00deq0f50", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00e45qp82.json b/v1.43/00e45qp82.json new file mode 100644 index 000000000..a37086ebb --- /dev/null +++ b/v1.43/00e45qp82.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://www.foundationweb.net/perklen/understod.html" + ], + "country": { + "country_name": "Finland", + "country_code": "FI" + }, + "name": "Stiftelsen Dorothea Olivia, Karl Walter och Jarl Walter Perkléns Minne", + "wikipedia_url": null, + "addresses": [ + { + "lat": 60.16952, + "lng": 24.93545, + "state": null, + "state_code": null, + "country_geonames_id": 660013, + "city": "Helsinki", + "geonames_city": { + "id": 658225, + "city": "Helsinki", + "geonames_admin1": { + "name": "Uusimaa", + "ascii_name": "Uusimaa", + "id": 830709, + "code": "FI.01" + }, + "geonames_admin2": { + "name": "Helsinki", + "id": 9610677, + "ascii_name": "Helsinki", + "code": "FI.01.011" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6090 6859", + "all": [ + "0000 0004 6090 6859" + ] + }, + "Wikidata": { + "preferred": "Q45131748", + "all": [ + "Q45131748" + ] + }, + "FundRef": { + "preferred": "100010119", + "all": [ + "100010119" + ] + } + }, + "established": 1985, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00e45qp82", + "labels": [ + { + "label": "Dorothea Olivia, Karl Walter and Jarl Walter Perkléns Memorial Foundation", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00enf6a78.json b/v1.43/00enf6a78.json new file mode 100644 index 000000000..1738af166 --- /dev/null +++ b/v1.43/00enf6a78.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [ + "CIUSSS de l'Ouest-de-l'Ile-de-Montréal" + ], + "acronyms": [], + "links": [ + "https://www.ciusss-ouestmtl.gouv.qc.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Centre intégré universitaire de santé et de services sociaux de l'Ouest-de-l’Île-de-Montréal", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux", + "addresses": [ + { + "lat": 52.00017, + "lng": -71.99907, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Quebec", + "geonames_city": { + "id": 6115047, + "city": "Quebec", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 4910 4636", + "all": [ + "0000 0004 4910 4636" + ] + }, + "Wikidata": { + "preferred": "Q109018003", + "all": [ + "Q109018003" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00enf6a78", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00ew61678.json b/v1.43/00ew61678.json new file mode 100644 index 000000000..0924b3b7a --- /dev/null +++ b/v1.43/00ew61678.json @@ -0,0 +1,96 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "SERDP" + ], + "links": [ + "https://serdp-estcp.mil" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Strategic Environmental Research and Development Program", + "wikipedia_url": null, + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "name": "Washington, D.C.", + "ascii_name": "Washington, D.C.", + "id": 4138106, + "code": "US.DC" + }, + "geonames_admin2": { + "name": "Washington", + "id": 4140987, + "ascii_name": "Washington", + "code": "US.DC.001" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0000 9967 6377", + "all": [ + "0000 0000 9967 6377" + ] + }, + "Wikidata": { + "preferred": "Q30274428", + "all": [ + "Q30274428" + ] + }, + "FundRef": { + "preferred": "100013316", + "all": [ + "100013316" + ] + } + }, + "established": 1990, + "relationships": [ + { + "label": "United States Department of Defense", + "type": "Parent", + "id": "https://ror.org/0447fe631" + } + ], + "email_address": null, + "id": "https://ror.org/00ew61678", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00f2pe266.json b/v1.43/00f2pe266.json new file mode 100644 index 000000000..94a97acc9 --- /dev/null +++ b/v1.43/00f2pe266.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "IAITF" + ], + "links": [ + "https://iaitfdumai.ac.id" + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "name": "Institut Agama Islam Tafaqquh Fiddin Dumai", + "wikipedia_url": null, + "addresses": [ + { + "lat": 1.66711, + "lng": 101.44316, + "state": null, + "state_code": null, + "country_geonames_id": 1643084, + "city": "Dumai", + "geonames_city": { + "id": 1645133, + "city": "Dumai", + "geonames_admin1": { + "name": "Riau", + "ascii_name": "Riau", + "id": 1629652, + "code": "ID.37" + }, + "geonames_admin2": { + "name": "Kota Dumai", + "id": 9821955, + "ascii_name": "Kota Dumai", + "code": "ID.37.1473" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q109912239", + "all": [ + "Q109912239" + ] + } + }, + "established": 1999, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00f2pe266", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00f3x4340.json b/v1.43/00f3x4340.json new file mode 100644 index 000000000..a41c6d559 --- /dev/null +++ b/v1.43/00f3x4340.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/00f3x4340", + "name": "Instituto Español de Oceanografía", + "email_address": null, + "ip_addresses": [], + "established": 1914, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.ieo.es" + ], + "aliases": [ + "Spanish Institute of Oceanography" + ], + "acronyms": [ + "IEO" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0943 6642" + ] + }, + "FundRef": { + "preferred": "501100011034", + "all": [ + "501100011034" + ] + }, + "GRID": { + "preferred": "grid.410389.7", + "all": "grid.410389.7" + } + } +} \ No newline at end of file diff --git a/v1.43/00f54p054.json b/v1.43/00f54p054.json new file mode 100644 index 000000000..fc05d2c33 --- /dev/null +++ b/v1.43/00f54p054.json @@ -0,0 +1,199 @@ +{ + "id": "https://ror.org/00f54p054", + "name": "Stanford University", + "email_address": null, + "ip_addresses": [], + "established": 1891, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "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": "Stanford SystemX Alliance", + "type": "Child", + "id": "https://ror.org/0551gkb08" + } + ], + "addresses": [ + { + "lat": 37.42411, + "lng": -122.16608, + "state": null, + "state_code": null, + "city": "Stanford", + "geonames_city": { + "id": 5398563, + "city": "Stanford", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Santa Clara", + "id": 5393021, + "ascii_name": "Santa Clara", + "code": "US.CA.085" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.stanford.edu" + ], + "aliases": [ + "Leland Stanford Junior University" + ], + "acronyms": [ + "SU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Stanford_University", + "labels": [ + { + "label": "Universidad Stanford", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1936 8956" + ] + }, + "FundRef": { + "preferred": "100005492", + "all": [ + "100005492", + "100006521", + "100008643", + "100006100", + "100010866", + "100011098", + "100006598", + "100006057", + "100005575", + "100005541", + "100006382", + "100016959", + "100010864" + ] + }, + "OrgRef": { + "preferred": "26977", + "all": [ + "26977", + "452927", + "435330", + "382431" + ] + }, + "Wikidata": { + "preferred": "Q41506", + "all": [ + "Q41506", + "Q1754977" + ] + }, + "GRID": { + "preferred": "grid.168010.e", + "all": "grid.168010.e" + } + } +} \ No newline at end of file diff --git a/v1.43/00f7n9887.json b/v1.43/00f7n9887.json new file mode 100644 index 000000000..72df45ced --- /dev/null +++ b/v1.43/00f7n9887.json @@ -0,0 +1,75 @@ +{ + "ip_addresses": [], + "aliases": [ + "Special Pathogens Research Network Limited", + "Spparenet", + "Special Journals Publisher" + ], + "acronyms": [ + "SJP" + ], + "links": [ + "https://www.spparenet.org/special-journals/" + ], + "country": { + "country_name": "Uganda", + "country_code": "UG" + }, + "name": "Special Pathogens Research Network Ltd.", + "wikipedia_url": null, + "addresses": [ + { + "lat": -0.54306, + "lng": 30.13694, + "state": null, + "state_code": null, + "country_geonames_id": 226074, + "city": "Ishaka", + "geonames_city": { + "id": 448001, + "city": "Ishaka", + "geonames_admin1": { + "name": "Western Region", + "ascii_name": "Western Region", + "id": 8260675, + "code": "UG.W" + }, + "geonames_admin2": { + "name": "Bushenyi", + "id": 443330, + "ascii_name": "Bushenyi", + "code": "UG.W.29" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": {}, + "established": 2020, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00f7n9887", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00fbnyb24.json b/v1.43/00fbnyb24.json new file mode 100644 index 000000000..dca8b502e --- /dev/null +++ b/v1.43/00fbnyb24.json @@ -0,0 +1,132 @@ +{ + "id": "https://ror.org/00fbnyb24", + "name": "University of Würzburg", + "email_address": "", + "ip_addresses": [], + "established": 1402, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 49.79391, + "lng": 9.95121, + "state": null, + "state_code": null, + "city": "Würzburg", + "geonames_city": { + "id": 2805615, + "city": "Würzburg", + "geonames_admin1": { + "name": "Bavaria", + "id": 2951839, + "ascii_name": "Bavaria", + "code": "DE.02" + }, + "geonames_admin2": { + "name": "Lower Franconia", + "id": 2819564, + "ascii_name": "Lower Franconia", + "code": "DE.02.096" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "http://www.uni-wuerzburg.de/en/ueber/university/" + ], + "aliases": [ + "Julius Maximilian University of Würzburg" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_W%C3%BCrzburg", + "labels": [ + { + "label": "Julius-Maximilians-Universität Würzburg", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1958 8658" + ] + }, + "FundRef": { + "preferred": "501100008769", + "all": [ + "501100008769", + "501100009379" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "715155" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q161976" + ] + }, + "GRID": { + "preferred": "grid.8379.5", + "all": "grid.8379.5" + } + } +} \ No newline at end of file diff --git a/v1.43/00fp4q488.json b/v1.43/00fp4q488.json new file mode 100644 index 000000000..e5759d8df --- /dev/null +++ b/v1.43/00fp4q488.json @@ -0,0 +1,95 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "EOS" + ], + "links": [ + "https://eoseurope.org" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "European Orthodontic Society", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1009 6390", + "all": [ + "0000 0001 1009 6390" + ] + }, + "Wikidata": { + "preferred": "Q120043481", + "all": [ + "Q120043481" + ] + }, + "FundRef": { + "preferred": "100015902", + "all": [ + "100015902" + ] + } + }, + "established": 1907, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00fp4q488", + "labels": [ + { + "label": "Europäische Gesellschaft für Orthodontie", + "iso639": "de" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00fpvte21.json b/v1.43/00fpvte21.json new file mode 100644 index 000000000..4e9e19a56 --- /dev/null +++ b/v1.43/00fpvte21.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/00fpvte21", + "name": "Arts University Plymouth", + "email_address": null, + "ip_addresses": [], + "established": 1856, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.37153, + "lng": -4.14305, + "state": null, + "state_code": null, + "city": "Plymouth", + "geonames_city": { + "id": 2640194, + "city": "Plymouth", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Plymouth", + "id": 3333181, + "ascii_name": "Plymouth", + "code": "GB.ENG.K4" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.aup.ac.uk" + ], + "aliases": [ + "Plymouth College of Art" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Plymouth_College_of_Art", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0455 3120" + ] + }, + "HESA": { + "preferred": null, + "all": [ + "0230" + ] + }, + "UCAS": { + "preferred": null, + "all": [ + "P65" + ] + }, + "UKPRN": { + "preferred": null, + "all": [ + "10005127" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2194394" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7205783" + ] + }, + "GRID": { + "preferred": "grid.451096.f", + "all": "grid.451096.f" + } + } +} \ No newline at end of file diff --git a/v1.43/00g1jn849.json b/v1.43/00g1jn849.json new file mode 100644 index 000000000..9bb288ff6 --- /dev/null +++ b/v1.43/00g1jn849.json @@ -0,0 +1,80 @@ +{ + "ip_addresses": [], + "aliases": [ + "Centre on Innovation & Energy Demand" + ], + "acronyms": [ + "CIED" + ], + "links": [ + "http://www.cied.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Centre on Innovation and Energy Demand", + "wikipedia_url": null, + "addresses": [ + { + "lat": 50.82838, + "lng": -0.13947, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Brighton", + "geonames_city": { + "id": 2654710, + "city": "Brighton", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Brighton and Hove", + "id": 3333133, + "ascii_name": "Brighton and Hove", + "code": "GB.ENG.B6" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "501100011049", + "all": [ + "501100011049" + ] + } + }, + "established": 2013, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00g1jn849", + "labels": [], + "status": "inactive" +} \ No newline at end of file diff --git a/v1.43/00g8hms52.json b/v1.43/00g8hms52.json new file mode 100644 index 000000000..975bdc4e3 --- /dev/null +++ b/v1.43/00g8hms52.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00g8hms52", + "name": "Administration for Children and Families", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "name": "Washington, D.C.", + "id": 4138106, + "ascii_name": "Washington, D.C.", + "code": "US.DC" + }, + "geonames_admin2": { + "name": "Washington", + "id": 4140987, + "ascii_name": "Washington", + "code": "US.DC.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.acf.hhs.gov" + ], + "aliases": [], + "acronyms": [ + "ACF" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0405 6976", + "all": [ + "0000 0004 0405 6976" + ] + }, + "FundRef": { + "preferred": "100005240", + "all": [ + "100005240" + ] + }, + "GRID": { + "preferred": "grid.473856.b", + "all": "grid.473856.b" + } + } +} \ No newline at end of file diff --git a/v1.43/00gjj5n39.json b/v1.43/00gjj5n39.json new file mode 100644 index 000000000..8422e2de5 --- /dev/null +++ b/v1.43/00gjj5n39.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/00gjj5n39", + "name": "Valencian International University", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.98567, + "lng": -0.04935, + "state": null, + "state_code": null, + "city": "Castellon", + "geonames_city": { + "id": 2519752, + "city": "Castellon", + "geonames_admin1": { + "name": "Valencia", + "id": 2593113, + "ascii_name": "Valencia", + "code": "ES.60" + }, + "geonames_admin2": { + "name": "Castellon", + "id": 3125881, + "ascii_name": "Castellon", + "code": "ES.60.CS" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.universidadviu.com" + ], + "aliases": [ + "Universidad Internacional de Valencia" + ], + "acronyms": [ + "VIU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Valencian_International_University", + "labels": [ + { + "label": "Universidad Internacional Valenciana", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1766 8613" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "30087965" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6156487" + ] + }, + "GRID": { + "preferred": "grid.440832.9", + "all": "grid.440832.9" + } + } +} \ No newline at end of file diff --git a/v1.43/00grd1h17.json b/v1.43/00grd1h17.json new file mode 100644 index 000000000..09bec637d --- /dev/null +++ b/v1.43/00grd1h17.json @@ -0,0 +1,170 @@ +{ + "id": "https://ror.org/00grd1h17", + "name": "Medtronic (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1949, + "types": [ + "Company" + ], + "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" + } + ], + "addresses": [ + { + "lat": 44.97997, + "lng": -93.26384, + "state": null, + "state_code": null, + "city": "Minneapolis", + "geonames_city": { + "id": 5037649, + "city": "Minneapolis", + "geonames_admin1": { + "name": "Minnesota", + "id": 5037779, + "ascii_name": "Minnesota", + "code": "US.MN" + }, + "geonames_admin2": { + "name": "Hennepin", + "id": 5029877, + "ascii_name": "Hennepin", + "code": "US.MN.053" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.medtronic.com/us-en/index.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Medtronic", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9545 2456" + ] + }, + "FundRef": { + "preferred": "100004374", + "all": [ + "100004374", + "100007102", + "100016304" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q642189" + ] + }, + "GRID": { + "preferred": "grid.419673.e", + "all": "grid.419673.e" + } + } +} \ No newline at end of file diff --git a/v1.43/00h3hwc05.json b/v1.43/00h3hwc05.json new file mode 100644 index 000000000..7ebfa0d7b --- /dev/null +++ b/v1.43/00h3hwc05.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00h3hwc05", + "name": "Bristol General Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1832, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.45523, + "lng": -2.59665, + "state": null, + "state_code": null, + "city": "Bristol", + "geonames_city": { + "id": 2654675, + "city": "Bristol", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bristol", + "id": 3333134, + "ascii_name": "Bristol", + "code": "GB.ENG.B7" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [], + "aliases": [], + "acronyms": [ + "BGH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bristol_General_Hospital", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0399 4653" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q4968908" + ] + }, + "GRID": { + "preferred": "grid.415177.1", + "all": "grid.415177.1" + } + } +} \ No newline at end of file diff --git a/v1.43/00h3w1m15.json b/v1.43/00h3w1m15.json new file mode 100644 index 000000000..1babd1a73 --- /dev/null +++ b/v1.43/00h3w1m15.json @@ -0,0 +1,89 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "KFNL" + ], + "links": [ + "https://kfnl.gov.sa" + ], + "country": { + "country_name": "Saudi Arabia", + "country_code": "SA" + }, + "name": "King Fahad National Library", + "wikipedia_url": "https://en.wikipedia.org/wiki/King_Fahd_National_Library", + "addresses": [ + { + "lat": 24.68773, + "lng": 46.72185, + "state": null, + "state_code": null, + "country_geonames_id": 102358, + "city": "Riyadh", + "geonames_city": { + "id": 108410, + "city": "Riyadh", + "geonames_admin1": { + "name": "Riyadh Region", + "ascii_name": "Riyadh Region", + "id": 108411, + "code": "SA.10" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Archive" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1014 6204", + "all": [ + "0000 0001 1014 6204" + ] + }, + "Wikidata": { + "preferred": "Q620803", + "all": [ + "Q620803" + ] + } + }, + "established": 1983, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00h3w1m15", + "labels": [ + { + "label": "مكتبة الملك فهد الوطنية", + "iso639": "ar" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00hpz7z43.json b/v1.43/00hpz7z43.json new file mode 100644 index 000000000..443189789 --- /dev/null +++ b/v1.43/00hpz7z43.json @@ -0,0 +1,147 @@ +{ + "id": "https://ror.org/00hpz7z43", + "name": "New Mexico State University", + "email_address": null, + "ip_addresses": [], + "established": 1888, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 32.31232, + "lng": -106.77834, + "state": null, + "state_code": null, + "city": "Las Cruces", + "geonames_city": { + "id": 5475352, + "city": "Las Cruces", + "geonames_admin1": { + "name": "New Mexico", + "id": 5481136, + "ascii_name": "New Mexico", + "code": "US.NM" + }, + "geonames_admin2": { + "name": "Doña Ana", + "id": 5465283, + "ascii_name": "Doña Ana", + "code": "US.NM.013" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.nmsu.edu/" + ], + "aliases": [], + "acronyms": [ + "NMSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/New_Mexico_State_University", + "labels": [ + { + "label": "Universidad Estatal de Nuevo México", + "iso639": "es" + }, + { + "label": "Université d'État du nouveau-mexique", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0941 243X", + "all": [ + "0000 0001 0687 2182", + "0000 0001 0941 243X" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100009611" + ] + }, + "OrgRef": { + "preferred": "510353", + "all": [ + "510353", + "37600611" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1353248" + ] + }, + "GRID": { + "preferred": "grid.24805.3b", + "all": "grid.24805.3b" + } + } +} \ No newline at end of file diff --git a/v1.43/00hx6zz33.json b/v1.43/00hx6zz33.json new file mode 100644 index 000000000..e9046e542 --- /dev/null +++ b/v1.43/00hx6zz33.json @@ -0,0 +1,171 @@ +{ + "id": "https://ror.org/00hx6zz33", + "name": "École Normale Supérieure Paris-Saclay", + "email_address": null, + "ip_addresses": [], + "established": 1892, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://ens-paris-saclay.fr/" + ], + "aliases": [ + "ENS Cachan", + "Normale Sup' Cachan" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%89cole_normale_sup%C3%A9rieure_de_Cachan", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1765 0915" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "1352747" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q273604" + ] + }, + "GRID": { + "preferred": "grid.6390.c", + "all": "grid.6390.c" + } + } +} \ No newline at end of file diff --git a/v1.43/00j0w4q23.json b/v1.43/00j0w4q23.json new file mode 100644 index 000000000..6f987522c --- /dev/null +++ b/v1.43/00j0w4q23.json @@ -0,0 +1,76 @@ +{ + "ip_addresses": [], + "aliases": [ + "AIMS Senegal" + ], + "acronyms": [], + "links": [ + "https://aims-senegal.org" + ], + "country": { + "country_name": "Senegal", + "country_code": "SN" + }, + "name": "African Institute for Mathematical Sciences Senegal", + "wikipedia_url": null, + "addresses": [ + { + "lat": 14.42196, + "lng": -16.96375, + "state": null, + "state_code": null, + "country_geonames_id": 2245662, + "city": "Mbour", + "geonames_city": { + "id": 2248477, + "city": "Mbour", + "geonames_admin1": { + "name": "Thiès", + "ascii_name": "Thiès", + "id": 2244800, + "code": "SN.07" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00j0w4q23", + "labels": [ + { + "label": "Institut Africain des Sciences Mathématiques Sénégal", + "iso639": "fr" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00j39jc12.json b/v1.43/00j39jc12.json new file mode 100644 index 000000000..314b38b99 --- /dev/null +++ b/v1.43/00j39jc12.json @@ -0,0 +1,83 @@ +{ + "ip_addresses": [], + "aliases": [ + "Syreon Clinical Research" + ], + "acronyms": [], + "links": [ + "https://syreon.com" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Syreon Corporation (Canada)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 49.24966, + "lng": -123.11934, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Vancouver", + "geonames_city": { + "id": 6173331, + "city": "Vancouver", + "geonames_admin1": { + "name": "British Columbia", + "ascii_name": "British Columbia", + "id": 5909050, + "code": "CA.02" + }, + "geonames_admin2": { + "name": "Metro Vancouver Regional District", + "id": 5965814, + "ascii_name": "Metro Vancouver Regional District", + "code": "CA.02.5915" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0476 4403", + "all": [ + "0000 0004 0476 4403" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00j39jc12", + "labels": [ + { + "label": "Syreon Corporation", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00jjx8s55.json b/v1.43/00jjx8s55.json new file mode 100644 index 000000000..c7020da0d --- /dev/null +++ b/v1.43/00jjx8s55.json @@ -0,0 +1,416 @@ +{ + "id": "https://ror.org/00jjx8s55", + "name": "Atomic Energy and Alternative Energies Commission", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.cea.fr/" + ], + "aliases": [], + "acronyms": [ + "CEA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/French_Alternative_Energies_and_Atomic_Energy_Commission", + "labels": [ + { + "label": "Commissariat à l'Énergie Atomique et aux Énergies Alternatives", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2299 8025" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100006489" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "322701" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q868550" + ] + }, + "GRID": { + "preferred": "grid.5583.b", + "all": "grid.5583.b" + } + } +} \ No newline at end of file diff --git a/v1.43/00jma8s40.json b/v1.43/00jma8s40.json new file mode 100644 index 000000000..c92b96cb7 --- /dev/null +++ b/v1.43/00jma8s40.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/00jma8s40", + "name": "China Aerodynamics Research and Development Center", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "State Key Laboratory of Aerodynamics", + "type": "Child", + "id": "https://ror.org/055rh9p75" + } + ], + "addresses": [ + { + "lat": 31.46784, + "lng": 104.68168, + "state": null, + "state_code": null, + "city": "Mianyang", + "geonames_city": { + "id": 1800627, + "city": "Mianyang", + "geonames_admin1": { + "name": "Sichuan", + "id": 1794299, + "ascii_name": "Sichuan", + "code": "CN.32" + }, + "geonames_admin2": { + "name": "Mianyang Shi", + "id": 1800626, + "ascii_name": "Mianyang Shi", + "code": "CN.32.5107" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "http://www.cardc.cn:88/" + ], + "aliases": [ + "Zhōngguó Kōngqì Dònglì Yánjiū yǔ Fāzhǎn Zhōngxīn" + ], + "acronyms": [ + "CARDC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/China_Aerodynamics_Research_and_Development_Center", + "labels": [ + { + "label": "中国空气动力研究与发展中心", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 7434 0868" + ] + }, + "FundRef": { + "preferred": "501100015913", + "all": [ + "501100015913" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5099558" + ] + }, + "GRID": { + "preferred": "grid.469557.c", + "all": "grid.469557.c" + } + } +} \ No newline at end of file diff --git a/v1.43/00jmfr291.json b/v1.43/00jmfr291.json new file mode 100644 index 000000000..c6744fb9c --- /dev/null +++ b/v1.43/00jmfr291.json @@ -0,0 +1,183 @@ +{ + "id": "https://ror.org/00jmfr291", + "name": "University of Michigan–Ann Arbor", + "email_address": "", + "ip_addresses": [], + "established": 1817, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 42.27756, + "lng": -83.74088, + "state": null, + "state_code": null, + "city": "Ann Arbor", + "geonames_city": { + "id": 4984247, + "city": "Ann Arbor", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Washtenaw", + "id": 5014120, + "ascii_name": "Washtenaw", + "code": "US.MI.161" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.umich.edu" + ], + "aliases": [ + "UMich" + ], + "acronyms": [ + "UM" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Michigan", + "labels": [ + { + "label": "University of Michigan", + "iso639": "en" + }, + { + "label": "Université du Michigan", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 1936 7347", + "all": [ + "0000 0000 8683 7370", + "0000 0004 1936 7347" + ] + }, + "FundRef": { + "preferred": "100007270", + "all": [ + "100007270", + "100008192", + "100006790", + "100006801", + "100008269", + "100005953", + "100008455", + "100008456", + "100006652", + "100008115", + "100005993", + "100009539", + "100005543", + "100005949", + "100008557", + "100006416", + "100005476", + "100011232" + ] + }, + "OrgRef": { + "preferred": "31740", + "all": [ + "31740", + "23952518", + "2344035", + "1202467" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q230492" + ] + }, + "GRID": { + "preferred": "grid.214458.e", + "all": "grid.214458.e" + } + } +} \ No newline at end of file diff --git a/v1.43/00js3aw79.json b/v1.43/00js3aw79.json new file mode 100644 index 000000000..dba6559c1 --- /dev/null +++ b/v1.43/00js3aw79.json @@ -0,0 +1,146 @@ +{ + "id": "https://ror.org/00js3aw79", + "name": "Jilin University", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Education" + ], + "relationships": [ + { + "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 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": "State Key Laboratory of Automotive Simulation and Control", + "type": "Child", + "id": "https://ror.org/00b67z867" + } + ], + "addresses": [ + { + "lat": 43.88, + "lng": 125.32278, + "state": null, + "state_code": null, + "city": "Changchun", + "geonames_city": { + "id": 2038180, + "city": "Changchun", + "geonames_admin1": { + "name": "Jilin", + "id": 2036500, + "ascii_name": "Jilin", + "code": "CN.05" + }, + "geonames_admin2": { + "name": "Changchun Shi", + "id": 2038176, + "ascii_name": "Changchun Shi", + "code": "CN.05.2201" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "https://www.jlu.edu.cn/" + ], + "aliases": [ + "Jílín Dàxué" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Jilin_University", + "labels": [ + { + "label": "吉林大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1760 5735" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004032" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "919179" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1432030" + ] + }, + "GRID": { + "preferred": "grid.64924.3d", + "all": "grid.64924.3d" + } + } +} \ No newline at end of file diff --git a/v1.43/00jvqbw52.json b/v1.43/00jvqbw52.json new file mode 100644 index 000000000..c63cb1db3 --- /dev/null +++ b/v1.43/00jvqbw52.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/00jvqbw52", + "name": "Institute for Translational Medicine and Liver Disease", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.liverstrasbourg.org" + ], + "aliases": [ + "Institut de Recherche sur les Maladies Virales et Hépatiques" + ], + "acronyms": [ + "IVH", + "ITM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Institut de recherche en médecine translationnelle et maladies hépatiques", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q51781718", + "all": [ + "Q51781718" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/00k3ph542.json b/v1.43/00k3ph542.json new file mode 100644 index 000000000..feec30305 --- /dev/null +++ b/v1.43/00k3ph542.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/00k3ph542", + "name": "Complexité, Innovation et Activités Motrices et Sportives", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.faculte-sciences-sport.universite-paris-saclay.fr/recherche/presentation-unite-de-recherche-ciams" + ], + "aliases": [ + "Laboratoire CIAMS", + "Laboratoire Complexité, Innovation et Activités Motrices et Sportives" + ], + "acronyms": [ + "CIAMS" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "preferred": "grid.503134.0", + "all": "grid.503134.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..575c5c952 --- /dev/null +++ b/v1.43/00kk89y84.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/00kk89y84", + "name": "Écologie, Systématique et Évolution", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.ese.universite-paris-saclay.fr" + ], + "aliases": [], + "acronyms": [ + "ESE" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0445 9548", + "all": [ + "0000 0004 0445 9548" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR8079" + ] + }, + "GRID": { + "preferred": "grid.463962.c", + "all": "grid.463962.c" + } + } +} \ No newline at end of file diff --git a/v1.43/00krnv781.json b/v1.43/00krnv781.json new file mode 100644 index 000000000..ac5a26518 --- /dev/null +++ b/v1.43/00krnv781.json @@ -0,0 +1,95 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "RSBO" + ], + "links": [ + "https://www.rsbo.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Réseau de Recherche en Santé Buccodentaire et Osseuse", + "wikipedia_url": null, + "addresses": [ + { + "lat": 45.50884, + "lng": -73.58781, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Montreal", + "geonames_city": { + "id": 6077243, + "city": "Montreal", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Montréal", + "id": 6077246, + "ascii_name": "Montréal", + "code": "CA.10.06" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6431 5714", + "all": [ + "0000 0004 6431 5714" + ] + }, + "Wikidata": { + "preferred": "Q45132445", + "all": [ + "Q45132445" + ] + }, + "FundRef": { + "preferred": "100012013", + "all": [ + "100012013" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00krnv781", + "labels": [ + { + "label": "Network for Oral and Bone Health Research", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00kxqbw45.json b/v1.43/00kxqbw45.json new file mode 100644 index 000000000..751208682 --- /dev/null +++ b/v1.43/00kxqbw45.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/00kxqbw45", + "name": "Hospital Virgen del Valle", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Complejo Hospitalario Universitario de Toledo", + "type": "Parent", + "id": "https://ror.org/04q4ppz72" + } + ], + "addresses": [ + { + "lat": 39.8581, + "lng": -4.02263, + "state": null, + "state_code": null, + "city": "Toledo", + "geonames_city": { + "id": 2510409, + "city": "Toledo", + "geonames_admin1": { + "name": "Castille-La Mancha", + "id": 2593111, + "ascii_name": "Castille-La Mancha", + "code": "ES.54" + }, + "geonames_admin2": { + "name": "Toledo", + "id": 2510407, + "ascii_name": "Toledo", + "code": "ES.54.TO" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.cht.es/cht/cm/cht/tkContent?pgseed=1493207263184&idContent=6065&locale=es_ES&textOnly=false" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0617 2698" + ] + }, + "GRID": { + "preferred": "grid.413531.1", + "all": "grid.413531.1" + } + } +} \ No newline at end of file diff --git a/v1.43/00m98kt33.json b/v1.43/00m98kt33.json new file mode 100644 index 000000000..d3af28060 --- /dev/null +++ b/v1.43/00m98kt33.json @@ -0,0 +1,88 @@ +{ + "ip_addresses": [], + "aliases": [ + "California State University Agricultural Research Institute", + "CSU Agricultural Research Institute", + "Cal State Agricultural Research Institute" + ], + "acronyms": [ + "ARI" + ], + "links": [ + "https://www.calstate.edu/impact-of-the-csu/research/ari" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Agricultural Research Institute", + "wikipedia_url": null, + "addresses": [ + { + "lat": 33.76696, + "lng": -118.18923, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Long Beach", + "geonames_city": { + "id": 5367929, + "city": "Long Beach", + "geonames_admin1": { + "name": "California", + "ascii_name": "California", + "id": 5332921, + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Los Angeles", + "id": 5368381, + "ascii_name": "Los Angeles", + "code": "US.CA.037" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "100011956", + "all": [ + "100011956" + ] + } + }, + "established": 1999, + "relationships": [ + { + "label": "California State University System", + "type": "Parent", + "id": "https://ror.org/020qm1538" + } + ], + "email_address": null, + "id": "https://ror.org/00m98kt33", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00mccb878.json b/v1.43/00mccb878.json new file mode 100644 index 000000000..e47756924 --- /dev/null +++ b/v1.43/00mccb878.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/00mccb878", + "name": "IberEspacio (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Arquimea (Spain)", + "type": "Successor", + "id": "https://ror.org/04mnaqe33" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://iberespacio.es/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.466733.3", + "all": "grid.466733.3" + } + } +} \ No newline at end of file diff --git a/v1.43/00mmn6b08.json b/v1.43/00mmn6b08.json new file mode 100644 index 000000000..982b35d8f --- /dev/null +++ b/v1.43/00mmn6b08.json @@ -0,0 +1,205 @@ +{ + "id": "https://ror.org/00mmn6b08", + "name": "Office of Science", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "name": "Washington, D.C.", + "id": 4138106, + "ascii_name": "Washington, D.C.", + "code": "US.DC" + }, + "geonames_admin2": { + "name": "Washington", + "id": 4140987, + "ascii_name": "Washington", + "code": "US.DC.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.energy.gov/science/office-science" + ], + "aliases": [ + "United States Department of Energy Office of Science", + "U.S. Department of Energy Office of Science" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Office_of_Science", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "preferred": "100006132", + "all": [ + "100006132" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7079302" + ] + }, + "GRID": { + "preferred": "grid.453216.7", + "all": "grid.453216.7" + } + } +} \ No newline at end of file diff --git a/v1.43/00mmpjq16.json b/v1.43/00mmpjq16.json new file mode 100644 index 000000000..d4b9f97df --- /dev/null +++ b/v1.43/00mmpjq16.json @@ -0,0 +1,77 @@ +{ + "ip_addresses": [], + "aliases": [ + "Hygeia Suzhou Yongding Hospital", + "苏州永鼎医院" + ], + "acronyms": [], + "links": [ + "https://www.szydyy.com" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "Suzhou Yongding Hospital", + "wikipedia_url": null, + "addresses": [ + { + "lat": 31.30408, + "lng": 120.59538, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Suzhou", + "geonames_city": { + "id": 1886760, + "city": "Suzhou", + "geonames_admin1": { + "name": "Jiangsu", + "ascii_name": "Jiangsu", + "id": 1806260, + "code": "CN.04" + }, + "geonames_admin2": { + "name": "Suzhou Shi", + "id": 1881771, + "ascii_name": "Suzhou Shi", + "code": "CN.04.3205" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00mmpjq16", + "labels": [ + { + "label": "海吉亚苏州永鼎医院", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00na1dz18.json b/v1.43/00na1dz18.json new file mode 100644 index 000000000..de805af0b --- /dev/null +++ b/v1.43/00na1dz18.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://abcbirds.org" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "American Bird Conservancy", + "wikipedia_url": "https://en.wikipedia.org/wiki/American_Bird_Conservancy", + "addresses": [ + { + "lat": 38.86206, + "lng": -77.77388, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "The Plains", + "geonames_city": { + "id": 4789226, + "city": "The Plains", + "geonames_admin1": { + "name": "Virginia", + "ascii_name": "Virginia", + "id": 6254928, + "code": "US.VA" + }, + "geonames_admin2": { + "name": "Fauquier", + "id": 4758541, + "ascii_name": "Fauquier", + "code": "US.VA.061" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0723 9469", + "all": [ + "0000 0001 0723 9469" + ] + }, + "Wikidata": { + "preferred": "Q4743178", + "all": [ + "Q4743178" + ] + } + }, + "established": 1994, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00na1dz18", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00ne6sr39.json b/v1.43/00ne6sr39.json new file mode 100644 index 000000000..870b4ad7a --- /dev/null +++ b/v1.43/00ne6sr39.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/00ne6sr39", + "name": "Universidad de Deusto", + "email_address": "", + "ip_addresses": [], + "established": 1886, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Escuela Universitaria de Magisterio Begoñako Andra Mari", + "type": "Related", + "id": "https://ror.org/009xdmc59" + } + ], + "addresses": [ + { + "lat": 43.26271, + "lng": -2.92528, + "state": null, + "state_code": null, + "city": "Bilbao", + "geonames_city": { + "id": 3128026, + "city": "Bilbao", + "geonames_admin1": { + "name": "Basque Country", + "id": 3336903, + "ascii_name": "Basque Country", + "code": "ES.59" + }, + "geonames_admin2": { + "name": "Biscay", + "id": 3104469, + "ascii_name": "Biscay", + "code": "ES.59.BI" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.deusto.es" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Deusto", + "labels": [ + { + "label": "Deustuko Unibertsitatea", + "iso639": "eu" + }, + { + "label": "Universidade de Deusto", + "iso639": "gl" + }, + { + "label": "University of Deusto", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0941 7046" + ] + }, + "FundRef": { + "preferred": "501100019927", + "all": [ + "501100019927" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "1435692" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1468481" + ] + }, + "GRID": { + "preferred": "grid.14724.34", + "all": "grid.14724.34" + } + } +} \ No newline at end of file diff --git a/v1.43/00nffqq91.json b/v1.43/00nffqq91.json new file mode 100644 index 000000000..484d77f1f --- /dev/null +++ b/v1.43/00nffqq91.json @@ -0,0 +1,94 @@ +{ + "ip_addresses": [], + "aliases": [ + "Terry C. Johnson Center for Basic Cancer Research", + "Kansas State University Johnson Cancer Research Center" + ], + "acronyms": [ + "JCRC", + "KSU JCRC" + ], + "links": [ + "https://cancer.k-state.edu" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Johnson Cancer Research Center", + "wikipedia_url": null, + "addresses": [ + { + "lat": 39.18361, + "lng": -96.57167, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Manhattan", + "geonames_city": { + "id": 4274994, + "city": "Manhattan", + "geonames_admin1": { + "name": "Kansas", + "ascii_name": "Kansas", + "id": 4273857, + "code": "US.KS" + }, + "geonames_admin2": { + "name": "Riley", + "id": 4278061, + "ascii_name": "Riley", + "code": "US.KS.161" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9234 0669", + "all": [ + "0000 0004 9234 0669" + ] + }, + "FundRef": { + "preferred": "100015421", + "all": [ + "100015421" + ] + } + }, + "established": 1980, + "relationships": [ + { + "label": "Kansas State University", + "type": "Parent", + "id": "https://ror.org/05p1j8758" + } + ], + "email_address": null, + "id": "https://ror.org/00nffqq91", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00ntbvq76.json b/v1.43/00ntbvq76.json new file mode 100644 index 000000000..f61caad62 --- /dev/null +++ b/v1.43/00ntbvq76.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/00ntbvq76", + "name": "CHU Dinant Godinne UCL Namur", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "UCLouvain", + "type": "Related", + "id": "https://ror.org/02495e989" + } + ], + "addresses": [ + { + "lat": 50.4669, + "lng": 4.86746, + "state": null, + "state_code": null, + "city": "Namur", + "geonames_city": { + "id": 2790471, + "city": "Namur", + "geonames_admin1": { + "name": "Wallonia", + "id": 3337387, + "ascii_name": "Wallonia", + "code": "BE.WAL" + }, + "geonames_admin2": { + "name": "Namur Province", + "id": 2790469, + "ascii_name": "Namur Province", + "code": "BE.WAL.WNA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2802361 + } + ], + "links": [ + "http://www.chdinant.be/default.asp" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "47000553" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q29576408" + ] + }, + "GRID": { + "preferred": "grid.411754.2", + "all": "grid.411754.2" + } + } +} \ No newline at end of file diff --git a/v1.43/00p094v10.json b/v1.43/00p094v10.json new file mode 100644 index 000000000..d704073e7 --- /dev/null +++ b/v1.43/00p094v10.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [ + "National University of Hurlingham" + ], + "acronyms": [ + "UNAHUR" + ], + "links": [ + "https://unahur.edu.ar" + ], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "name": "Universidad Nacional de Hurlingham", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Nacional_de_Hurlingham", + "addresses": [ + { + "lat": -34.5904, + "lng": -58.62904, + "state": null, + "state_code": null, + "country_geonames_id": 3865483, + "city": "Hurlingham", + "geonames_city": { + "id": 3433522, + "city": "Hurlingham", + "geonames_admin1": { + "name": "Buenos Aires", + "ascii_name": "Buenos Aires", + "id": 3435907, + "code": "AR.01" + }, + "geonames_admin2": { + "name": "Partido de Hurlingham", + "id": 8063217, + "ascii_name": "Partido de Hurlingham", + "code": "AR.01.06408" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7699 5761", + "all": [ + "0000 0004 7699 5761" + ] + }, + "Wikidata": { + "preferred": "Q28501872", + "all": [ + "Q28501872" + ] + } + }, + "established": 2016, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00p094v10", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00p11pk44.json b/v1.43/00p11pk44.json new file mode 100644 index 000000000..d8bf00d55 --- /dev/null +++ b/v1.43/00p11pk44.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/00p11pk44", + "name": "Wabash College", + "email_address": "", + "ip_addresses": [], + "established": 1832, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 40.04115, + "lng": -86.87445, + "state": null, + "state_code": null, + "city": "Crawfordsville", + "geonames_city": { + "id": 4919381, + "city": "Crawfordsville", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Montgomery", + "id": 4923741, + "ascii_name": "Montgomery", + "code": "US.IN.107" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.wabash.edu/" + ], + "aliases": [ + "The Wabash Teachers Seminary and Manual Labor College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Wabash_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9886 0607" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100008352" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "33507" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7958639" + ] + }, + "GRID": { + "preferred": "grid.267959.6", + "all": "grid.267959.6" + } + } +} \ No newline at end of file diff --git a/v1.43/00p4ywg82.json b/v1.43/00p4ywg82.json new file mode 100644 index 000000000..21c11feaf --- /dev/null +++ b/v1.43/00p4ywg82.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00p4ywg82", + "name": "Marian University - Indiana", + "email_address": null, + "ip_addresses": [], + "established": 1851, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 39.76838, + "lng": -86.15804, + "state": null, + "state_code": null, + "city": "Indianapolis", + "geonames_city": { + "id": 4259418, + "city": "Indianapolis", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Marion", + "id": 4260977, + "ascii_name": "Marion", + "code": "US.IN.097" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.marian.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Marian_University_(Indiana)", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0413 3417" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "946469" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6761994" + ] + }, + "GRID": { + "preferred": "grid.421123.7", + "all": "grid.421123.7" + } + } +} \ No newline at end of file diff --git a/v1.43/00p7f7z86.json b/v1.43/00p7f7z86.json new file mode 100644 index 000000000..221805e92 --- /dev/null +++ b/v1.43/00p7f7z86.json @@ -0,0 +1,94 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://www.waltham.com" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Waltham Centre for Pet Nutrition", + "wikipedia_url": "https://en.wikipedia.org/wiki/Waltham_Petcare_Science_Institute", + "addresses": [ + { + "lat": 52.81698, + "lng": -0.80835, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Waltham on the Wolds", + "geonames_city": { + "id": 2634840, + "city": "Waltham on the Wolds", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Leicestershire", + "id": 2644667, + "ascii_name": "Leicestershire", + "code": "GB.ENG.H5" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0598 7406", + "all": [ + "0000 0004 0598 7406" + ] + }, + "Wikidata": { + "preferred": "Q7966597", + "all": [ + "Q7966597" + ] + }, + "FundRef": { + "preferred": "100014560", + "all": [ + "100014560" + ] + } + }, + "established": 1973, + "relationships": [ + { + "label": "Mars (United States)", + "type": "Parent", + "id": "https://ror.org/028vrr082" + } + ], + "email_address": null, + "id": "https://ror.org/00p7f7z86", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00pa9y269.json b/v1.43/00pa9y269.json new file mode 100644 index 000000000..7aa42738e --- /dev/null +++ b/v1.43/00pa9y269.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/00pa9y269", + "name": "South Bristol Community Hospital", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.45523, + "lng": -2.59665, + "state": null, + "state_code": null, + "city": "Bristol", + "geonames_city": { + "id": 2654675, + "city": "Bristol", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bristol", + "id": 3333134, + "ascii_name": "Bristol", + "code": "GB.ENG.B7" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/south-bristol-community-hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/South_Bristol_Community_Hospital", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 4691 0296" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "20816260" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7566412" + ] + }, + "GRID": { + "preferred": "grid.439439.0", + "all": "grid.439439.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00pamm417.json b/v1.43/00pamm417.json new file mode 100644 index 000000000..358db9cc2 --- /dev/null +++ b/v1.43/00pamm417.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "CIUSSS de la Capitale-Nationale" + ], + "acronyms": [], + "links": [ + "https://www.ciusss-capitalenationale.gouv.qc.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Centre intégré universitaire de santé et de services sociaux de la Capitale-Nationale", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux", + "addresses": [ + { + "lat": 46.81228, + "lng": -71.21454, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Québec", + "geonames_city": { + "id": 6325494, + "city": "Québec", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Capitale-Nationale", + "id": 6691319, + "ascii_name": "Capitale-Nationale", + "code": "CA.10.03" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8060 7653", + "all": [ + "0000 0004 8060 7653" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00pamm417", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00pd74e08.json b/v1.43/00pd74e08.json new file mode 100644 index 000000000..7b235157a --- /dev/null +++ b/v1.43/00pd74e08.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/00pd74e08", + "name": "University of Münster", + "email_address": null, + "ip_addresses": [], + "established": 1780, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University Hospital Münster", + "type": "Related", + "id": "https://ror.org/01856cw59" + } + ], + "addresses": [ + { + "lat": 51.96236, + "lng": 7.62571, + "state": null, + "state_code": null, + "city": "Münster", + "geonames_city": { + "id": 2867543, + "city": "Münster", + "geonames_admin1": { + "name": "North Rhine-Westphalia", + "id": 2861876, + "ascii_name": "North Rhine-Westphalia", + "code": "DE.07" + }, + "geonames_admin2": { + "name": "Regierungsbezirk Münster", + "id": 2867539, + "ascii_name": "Regierungsbezirk Münster", + "code": "DE.07.055" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.uni-muenster.de" + ], + "aliases": [ + "Westfälische Wilhelms-Universität Münster", + "Universitaet Muenster", + "University of Muenster" + ], + "acronyms": [ + "WWU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_M%C3%BCnster", + "labels": [ + { + "label": "Universität Münster", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2172 9288" + ] + }, + "FundRef": { + "preferred": "501100004869", + "all": [ + "501100004869", + "501100004870" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "172246" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q168426" + ] + }, + "GRID": { + "preferred": "grid.5949.1", + "all": "grid.5949.1" + } + } +} \ No newline at end of file diff --git a/v1.43/00pg6eq24.json b/v1.43/00pg6eq24.json new file mode 100644 index 000000000..711b6ce09 --- /dev/null +++ b/v1.43/00pg6eq24.json @@ -0,0 +1,383 @@ +{ + "id": "https://ror.org/00pg6eq24", + "name": "University of Strasbourg", + "email_address": "", + "ip_addresses": [], + "established": 1538, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Hôpitaux Universitaires de Strasbourg", + "type": "Related", + "id": "https://ror.org/04bckew43" + }, + { + "label": "Architecture et Réactivité de l'arN", + "type": "Child", + "id": "https://ror.org/03xmjtz19" + }, + { + "label": "Archéologie et Histoire Ancienne : Méditerranée – Europe", + "type": "Child", + "id": "https://ror.org/007xqmx73" + }, + { + "label": "Biomatériaux et Bioingénierie", + "type": "Child", + "id": "https://ror.org/05vcax154" + }, + { + "label": "Biotechnologie et Signalisation Cellulaire", + "type": "Child", + "id": "https://ror.org/047fwb937" + }, + { + "label": "Bureau for Economic Theory and Applications", + "type": "Child", + "id": "https://ror.org/05em8ne27" + }, + { + "label": "Fédération de Recherche PhotoVoltaïque", + "type": "Child", + "id": "https://ror.org/059fn5f50" + }, + { + "label": "Grapevine Health and Wine Quality", + "type": "Child", + "id": "https://ror.org/0291jbz11" + }, + { + "label": "Génétique Moléculaire Génomique Microbiologie", + "type": "Child", + "id": "https://ror.org/05n4nmn13" + }, + { + "label": "Hubert Curien Pluridisciplinary Institute", + "type": "Child", + "id": "https://ror.org/01g3mb532" + }, + { + "label": "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": "Médecine Cardiovasculaire Translationnelle", + "type": "Child", + "id": "https://ror.org/010e21634" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.unistra.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Strasbourg", + "labels": [ + { + "label": "Université de Strasbourg", + "iso639": "fr" + }, + { + "label": "Universität Straßburg", + "iso639": "de" + }, + { + "label": "Universitat d'Estrasburg", + "iso639": "ca" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2157 9291" + ] + }, + "FundRef": { + "preferred": "501100003768", + "all": [ + "501100003768", + "501100003998" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "722824" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q157575" + ] + }, + "GRID": { + "preferred": "grid.11843.3f", + "all": "grid.11843.3f" + } + } +} \ No newline at end of file diff --git a/v1.43/00pnp4y96.json b/v1.43/00pnp4y96.json new file mode 100644 index 000000000..4c454729b --- /dev/null +++ b/v1.43/00pnp4y96.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/00pnp4y96", + "name": "Government of Pakistan", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 33.72148, + "lng": 73.04329, + "state": null, + "state_code": null, + "city": "Islamabad", + "geonames_city": { + "id": 1176615, + "city": "Islamabad", + "geonames_admin1": { + "name": "Islamabad", + "id": 1162015, + "ascii_name": "Islamabad", + "code": "PK.08" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1168579 + } + ], + "links": [ + "http://www.pakistan.gov.pk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Government_of_Pakistan", + "labels": [ + { + "label": "حکومتِ پاکستان", + "iso639": "ur" + } + ], + "country": { + "country_name": "Pakistan", + "country_code": "PK" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0433 7882" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3250182" + ] + }, + "GRID": { + "preferred": "grid.484191.1", + "all": "grid.484191.1" + } + } +} \ No newline at end of file diff --git a/v1.43/00pyxrd04.json b/v1.43/00pyxrd04.json new file mode 100644 index 000000000..0d60d3580 --- /dev/null +++ b/v1.43/00pyxrd04.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/00pyxrd04", + "name": "Foundation for Strategic Environmental Research", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 59.32938, + "lng": 18.06871, + "state": null, + "state_code": null, + "city": "Stockholm", + "geonames_city": { + "id": 2673730, + "city": "Stockholm", + "geonames_admin1": { + "name": "Stockholm", + "id": 2673722, + "ascii_name": "Stockholm", + "code": "SE.26" + }, + "geonames_admin2": { + "name": "Stockholm Municipality", + "id": 2673723, + "ascii_name": "Stockholm Municipality", + "code": "SE.26.0180" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2661886 + } + ], + "links": [ + "https://mistra.org" + ], + "aliases": [ + "Stiftelsen för Miljöstrategisk Forskning" + ], + "acronyms": [ + "MISTRA" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2230 9816" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100007633" + ] + }, + "GRID": { + "preferred": "grid.457409.b", + "all": "grid.457409.b" + } + } +} \ No newline at end of file diff --git a/v1.43/00q1brk57.json b/v1.43/00q1brk57.json new file mode 100644 index 000000000..ec58cf381 --- /dev/null +++ b/v1.43/00q1brk57.json @@ -0,0 +1,96 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "MCUAAAR" + ], + "links": [ + "https://mcuaaar.org" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Michigan Center for Urban African American Aging Research", + "wikipedia_url": null, + "addresses": [ + { + "lat": 42.27756, + "lng": -83.74088, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Ann Arbor", + "geonames_city": { + "id": 4984247, + "city": "Ann Arbor", + "geonames_admin1": { + "name": "Michigan", + "ascii_name": "Michigan", + "id": 5001836, + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Washtenaw", + "id": 5014120, + "ascii_name": "Washtenaw", + "code": "US.MI.161" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6431 4500", + "all": [ + "0000 0004 6431 4500" + ] + }, + "Wikidata": { + "preferred": "Q45137775", + "all": [ + "Q45137775" + ] + }, + "FundRef": { + "preferred": "100011869", + "all": [ + "100011869" + ] + } + }, + "established": 1999, + "relationships": [ + { + "label": "Wayne State University", + "type": "Parent", + "id": "https://ror.org/01070mq45" + } + ], + "email_address": null, + "id": "https://ror.org/00q1brk57", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00qaqj396.json b/v1.43/00qaqj396.json new file mode 100644 index 000000000..0ec45df04 --- /dev/null +++ b/v1.43/00qaqj396.json @@ -0,0 +1,85 @@ +{ + "ip_addresses": [], + "aliases": [ + "FluxMagic" + ], + "acronyms": [ + "FLUX" + ], + "links": [ + "https://fluxmagic.com" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "FluxMagic, Inc. (United States)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 45.52345, + "lng": -122.67621, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Portland", + "geonames_city": { + "id": 5746545, + "city": "Portland", + "geonames_admin1": { + "name": "Oregon", + "ascii_name": "Oregon", + "id": 5744337, + "code": "US.OR" + }, + "geonames_admin2": { + "name": "Multnomah", + "id": 5742126, + "ascii_name": "Multnomah", + "code": "US.OR.051" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0860 0673", + "all": [ + "0000 0005 0860 0673" + ] + } + }, + "established": 2019, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00qaqj396", + "labels": [ + { + "label": "FluxMagic, Inc.", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00qqv6244.json b/v1.43/00qqv6244.json new file mode 100644 index 000000000..e7dca7ebf --- /dev/null +++ b/v1.43/00qqv6244.json @@ -0,0 +1,122 @@ +{ + "id": "https://ror.org/00qqv6244", + "name": "Medical College of Wisconsin", + "email_address": null, + "ip_addresses": [], + "established": 1893, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.0389, + "lng": -87.90647, + "state": null, + "state_code": null, + "city": "Milwaukee", + "geonames_city": { + "id": 5263045, + "city": "Milwaukee", + "geonames_admin1": { + "name": "Wisconsin", + "id": 5279468, + "ascii_name": "Wisconsin", + "code": "US.WI" + }, + "geonames_admin2": { + "name": "Milwaukee", + "id": 5263058, + "ascii_name": "Milwaukee", + "code": "US.WI.079" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.mcw.edu/MCW" + ], + "aliases": [], + "acronyms": [ + "MCW" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Medical_College_of_Wisconsin", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2111 8460" + ] + }, + "FundRef": { + "preferred": "100008980", + "all": [ + "100008980", + "100008981" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2773521" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6806307" + ] + }, + "GRID": { + "preferred": "grid.30760.32", + "all": "grid.30760.32" + } + } +} \ No newline at end of file diff --git a/v1.43/00qsr9g17.json b/v1.43/00qsr9g17.json new file mode 100644 index 000000000..524af9083 --- /dev/null +++ b/v1.43/00qsr9g17.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/00qsr9g17", + "name": "Grace College & Seminary", + "email_address": null, + "ip_addresses": [], + "established": 1948, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 41.22727, + "lng": -85.82193, + "state": null, + "state_code": null, + "city": "Winona Lake", + "geonames_city": { + "id": 4928337, + "city": "Winona Lake", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Kosciusko", + "id": 4922408, + "ascii_name": "Kosciusko", + "code": "US.IN.085" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.grace.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Grace_College_%26_Seminary", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "37839306" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5591059" + ] + }, + "GRID": { + "preferred": "grid.454574.3", + "all": "grid.454574.3" + } + } +} \ No newline at end of file diff --git a/v1.43/00qv0tw17.json b/v1.43/00qv0tw17.json new file mode 100644 index 000000000..241dcf4d5 --- /dev/null +++ b/v1.43/00qv0tw17.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/00qv0tw17", + "name": "SUNY College of Environmental Science and Forestry", + "email_address": null, + "ip_addresses": [], + "established": 1911, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Edna Bailey Sussman Foundation", + "type": "Child", + "id": "https://ror.org/024tqtx80" + }, + { + "label": "Great Lakes Research Consortium", + "type": "Related", + "id": "https://ror.org/05cshtm26" + } + ], + "addresses": [ + { + "lat": 43.04812, + "lng": -76.14742, + "state": null, + "state_code": null, + "city": "Syracuse", + "geonames_city": { + "id": 5140405, + "city": "Syracuse", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Onondaga", + "id": 5129867, + "ascii_name": "Onondaga", + "code": "US.NY.067" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.esf.edu/" + ], + "aliases": [], + "acronyms": [ + "SUNY ESF", + "ESF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/State_University_of_New_York_College_of_Environmental_Science_and_Forestry", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0387 8708" + ] + }, + "FundRef": { + "preferred": "100011961", + "all": [ + "100011961" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "523198" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7603610" + ] + }, + "GRID": { + "preferred": "grid.264257.0", + "all": "grid.264257.0" + } + } +} \ No newline at end of file diff --git a/v1.43/00qxcft19.json b/v1.43/00qxcft19.json new file mode 100644 index 000000000..9793fd7ec --- /dev/null +++ b/v1.43/00qxcft19.json @@ -0,0 +1,89 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "WSS" + ], + "links": [ + "https://www.wernersiemens-stiftung.ch" + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "name": "Werner Siemens-Stiftung", + "wikipedia_url": "https://de.wikipedia.org/wiki/Werner_Siemens-Stiftung", + "addresses": [ + { + "lat": 47.17242, + "lng": 8.51745, + "state": null, + "state_code": null, + "country_geonames_id": 2658434, + "city": "Zug", + "geonames_city": { + "id": 2657908, + "city": "Zug", + "geonames_admin1": { + "name": "Zug", + "ascii_name": "Zug", + "id": 2657907, + "code": "CH.ZG" + }, + "geonames_admin2": { + "name": "Zug", + "id": 6458807, + "ascii_name": "Zug", + "code": "CH.ZG.900" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0275 206X", + "all": [ + "0000 0005 0275 206X" + ] + }, + "FundRef": { + "preferred": "100016964", + "all": [ + "100016964" + ] + } + }, + "established": 1923, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00qxcft19", + "labels": [ + { + "label": "Werner Siemens Foundation", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00qy68j92.json b/v1.43/00qy68j92.json new file mode 100644 index 000000000..4ab659492 --- /dev/null +++ b/v1.43/00qy68j92.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00qy68j92", + "name": "Corewell Health Blodgett Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Michigan State University", + "type": "Related", + "id": "https://ror.org/05hs6h993" + }, + { + "label": "Corewell Health", + "type": "Parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "addresses": [ + { + "lat": 42.96336, + "lng": -85.66809, + "state": null, + "state_code": null, + "city": "Grand Rapids", + "geonames_city": { + "id": 4994358, + "city": "Grand Rapids", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Kent", + "id": 4998005, + "ascii_name": "Kent", + "code": "US.MI.081" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.spectrumhealth.org/locations/spectrum-health-hospitals-blodgett-hospital" + ], + "aliases": [ + "Spectrum Health", + "Spectrum Health Blodgett Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0450 5903" + ] + }, + "GRID": { + "preferred": "grid.430538.9", + "all": "grid.430538.9" + } + } +} \ No newline at end of file diff --git a/v1.43/00r4bna31.json b/v1.43/00r4bna31.json new file mode 100644 index 000000000..1d04a92b9 --- /dev/null +++ b/v1.43/00r4bna31.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [ + "Anatomical Society of Great Britain and Ireland", + "UK Anatomical Society" + ], + "acronyms": [ + "ASGBI" + ], + "links": [ + "https://www.anatsoc.org.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Anatomical Society", + "wikipedia_url": "https://en.wikipedia.org/wiki/Anatomical_Society", + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6432 5082", + "all": [ + "0000 0004 6432 5082" + ] + }, + "Wikidata": { + "preferred": "Q4752272", + "all": [ + "Q4752272" + ] + }, + "FundRef": { + "preferred": "100012070", + "all": [ + "100012070" + ] + } + }, + "established": 1887, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00r4bna31", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00rwpbm87.json b/v1.43/00rwpbm87.json new file mode 100644 index 000000000..bcb5daf22 --- /dev/null +++ b/v1.43/00rwpbm87.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/00rwpbm87", + "name": "Augenklinik Universitätsklinikum Würzburg", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Universitätsklinikum Würzburg", + "type": "Parent", + "id": "https://ror.org/03pvr2g57" + } + ], + "addresses": [ + { + "lat": 49.79391, + "lng": 9.95121, + "state": null, + "state_code": null, + "city": "Würzburg", + "geonames_city": { + "id": 2805615, + "city": "Würzburg", + "geonames_admin1": { + "name": "Bavaria", + "id": 2951839, + "ascii_name": "Bavaria", + "code": "DE.02" + }, + "geonames_admin2": { + "name": "Lower Franconia", + "id": 2819564, + "ascii_name": "Lower Franconia", + "code": "DE.02.096" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.ukw.de/augenklinik/startseite/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "preferred": "grid.488580.9", + "all": "grid.488580.9" + } + } +} \ No newline at end of file diff --git a/v1.43/00rydyx93.json b/v1.43/00rydyx93.json new file mode 100644 index 000000000..5327ffb7b --- /dev/null +++ b/v1.43/00rydyx93.json @@ -0,0 +1,709 @@ +{ + "id": "https://ror.org/00rydyx93", + "name": "Institut des Sciences Biologiques", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.81568, + "lng": 2.38487, + "state": null, + "state_code": null, + "city": "Ivry-sur-Seine", + "geonames_city": { + "id": 3012621, + "city": "Ivry-sur-Seine", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Val-de-Marne", + "id": 2971090, + "ascii_name": "Val-de-Marne", + "code": "FR.11.94" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.cnrs.fr/insb/" + ], + "aliases": [], + "acronyms": [ + "INSB" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Institute of Biological Sciences", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0387 060X" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q24935881" + ] + }, + "GRID": { + "preferred": "grid.456999.e", + "all": "grid.456999.e" + } + } +} \ No newline at end of file diff --git a/v1.43/00rz8kx73.json b/v1.43/00rz8kx73.json new file mode 100644 index 000000000..1df524d55 --- /dev/null +++ b/v1.43/00rz8kx73.json @@ -0,0 +1,92 @@ +{ + "ip_addresses": [], + "aliases": [ + "The Society for the Study of Addiction to Alcohol and other Drugs" + ], + "acronyms": [ + "SSA" + ], + "links": [ + "https://www.addiction-ssa.org" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Society for the Study of Addiction", + "wikipedia_url": "https://en.wikipedia.org/wiki/Society_for_the_Study_of_Addiction", + "addresses": [ + { + "lat": 52.25, + "lng": -0.88333, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Northampton", + "geonames_city": { + "id": 2641430, + "city": "Northampton", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Northamptonshire", + "id": 2641429, + "ascii_name": "Northamptonshire", + "code": "GB.ENG.J1" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1011 6814", + "all": [ + "0000 0001 1011 6814" + ] + }, + "Wikidata": { + "preferred": "Q55633416", + "all": [ + "Q55633416" + ] + }, + "FundRef": { + "preferred": "100014660", + "all": [ + "100014660" + ] + } + }, + "established": 1884, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00rz8kx73", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00s19x989.json b/v1.43/00s19x989.json new file mode 100644 index 000000000..dc1ffbc25 --- /dev/null +++ b/v1.43/00s19x989.json @@ -0,0 +1,513 @@ +{ + "id": "https://ror.org/00s19x989", + "name": "Institut des Sciences de l'Ingénierie et des Systèmes", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.cnrs.fr/insis/" + ], + "aliases": [], + "acronyms": [ + "INSIS" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "preferred": "501100017214", + "all": [ + "501100017214" + ] + }, + "GRID": { + "preferred": "grid.457016.1", + "all": "grid.457016.1" + } + } +} \ No newline at end of file diff --git a/v1.43/00s3s5518.json b/v1.43/00s3s5518.json new file mode 100644 index 000000000..1d2c9dbc1 --- /dev/null +++ b/v1.43/00s3s5518.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/00s3s5518", + "name": "Almaarefa University", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 24.68773, + "lng": 46.72185, + "state": null, + "state_code": null, + "city": "Riyadh", + "geonames_city": { + "id": 108410, + "city": "Riyadh", + "geonames_admin1": { + "name": "Riyadh Region", + "id": 108411, + "ascii_name": "Riyadh Region", + "code": "SA.10" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 102358 + } + ], + "links": [ + "https://www.um.edu.sa" + ], + "aliases": [], + "acronyms": [ + "UM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "جامعة المعرفة", + "iso639": "ar" + } + ], + "country": { + "country_name": "Saudi Arabia", + "country_code": "SA" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9360 4152", + "all": [ + "0000 0004 9360 4152" + ] + }, + "Wikidata": { + "preferred": "Q12236085", + "all": [ + "Q12236085" + ] + }, + "FundRef": { + "preferred": "100019217", + "all": [ + "100019217" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/00s409261.json b/v1.43/00s409261.json new file mode 100644 index 000000000..d9c7b66ec --- /dev/null +++ b/v1.43/00s409261.json @@ -0,0 +1,123 @@ +{ + "id": "https://ror.org/00s409261", + "name": "University of Insubria", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 45.82058, + "lng": 8.82511, + "state": null, + "state_code": null, + "city": "Varese", + "geonames_city": { + "id": 3164699, + "city": "Varese", + "geonames_admin1": { + "name": "Lombardy", + "id": 3174618, + "ascii_name": "Lombardy", + "code": "IT.09" + }, + "geonames_admin2": { + "name": "Province of Varese", + "id": 3164697, + "ascii_name": "Province of Varese", + "code": "IT.09.VA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "http://www.uninsubria.eu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Insubria", + "labels": [ + { + "label": "Università degli Studi dell'Insubria", + "iso639": "it" + }, + { + "label": "Université de l'insubrie", + "iso639": "fr" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2172 4807" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100005389" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "4946009" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1309998" + ] + }, + "GRID": { + "preferred": "grid.18147.3b", + "all": "grid.18147.3b" + } + } +} \ No newline at end of file diff --git a/v1.43/00sef7t37.json b/v1.43/00sef7t37.json new file mode 100644 index 000000000..581cd94d9 --- /dev/null +++ b/v1.43/00sef7t37.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "CAS" + ], + "links": [ + "https://cas.or.th" + ], + "country": { + "country_name": "Thailand", + "country_code": "TH" + }, + "name": "Center for Alcohol Studies", + "wikipedia_url": null, + "addresses": [ + { + "lat": 7.19882, + "lng": 100.5951, + "state": null, + "state_code": null, + "country_geonames_id": 1605651, + "city": "Songkhla", + "geonames_city": { + "id": 1606147, + "city": "Songkhla", + "geonames_admin1": { + "name": "Songkhla", + "ascii_name": "Songkhla", + "id": 1606146, + "code": "TH.68" + }, + "geonames_admin2": { + "name": "Mueang Songkhla", + "id": 1608615, + "ascii_name": "Mueang Songkhla", + "code": "TH.68.9001" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7832 2704", + "all": [ + "0000 0004 7832 2704" + ] + }, + "FundRef": { + "preferred": "501100010725", + "all": [ + "501100010725" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00sef7t37", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00sh68184.json b/v1.43/00sh68184.json new file mode 100644 index 000000000..ab6007be1 --- /dev/null +++ b/v1.43/00sh68184.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/00sh68184", + "name": "Roche Pharma AG (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 1896, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Roche (Switzerland)", + "type": "Parent", + "id": "https://ror.org/00by1q217" + } + ], + "addresses": [ + { + "lat": 47.55, + "lng": 7.68333, + "state": null, + "state_code": null, + "city": "Grenzach-Wyhlen", + "geonames_city": { + "id": 2917698, + "city": "Grenzach-Wyhlen", + "geonames_admin1": { + "name": "Baden-Wurttemberg", + "id": 2953481, + "ascii_name": "Baden-Wurttemberg", + "code": "DE.01" + }, + "geonames_admin2": { + "name": "Freiburg Region", + "id": 2925180, + "ascii_name": "Freiburg Region", + "code": "DE.01.083" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.roche.de" + ], + "aliases": [ + "Roche Germany" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Roche Pharma AG", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "preferred": "grid.424277.0", + "all": "grid.424277.0" + }, + "Wikidata": { + "preferred": "Q30254367", + "all": [ + "Q30254367" + ] + }, + "ISNI": { + "preferred": "0000 0004 0397 3959", + "all": [ + "0000 0004 0397 3959" + ] + }, + "FundRef": { + "preferred": "100020957", + "all": [ + "100020957" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/00skw9v43.json b/v1.43/00skw9v43.json new file mode 100644 index 000000000..3569c0a8f --- /dev/null +++ b/v1.43/00skw9v43.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/00skw9v43", + "name": "Laboratoire des signaux et systèmes", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://l2s.centralesupelec.fr" + ], + "aliases": [ + "Laboratoire des signaux & systèmes" + ], + "acronyms": [ + "L2S" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0410 8422" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR8506" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q51784646" + ] + }, + "GRID": { + "preferred": "grid.503366.5", + "all": "grid.503366.5" + } + } +} \ No newline at end of file diff --git a/v1.43/00sps5y96.json b/v1.43/00sps5y96.json new file mode 100644 index 000000000..02651524b --- /dev/null +++ b/v1.43/00sps5y96.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00sps5y96", + "name": "Fundación para la innovación tecnológica", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://cotec.es" + ], + "aliases": [], + "acronyms": [ + "COTEC" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2106 0959" + ] + }, + "GRID": { + "preferred": "grid.434661.2", + "all": "grid.434661.2" + } + } +} \ No newline at end of file diff --git a/v1.43/00tdqgq45.json b/v1.43/00tdqgq45.json new file mode 100644 index 000000000..a60400ab5 --- /dev/null +++ b/v1.43/00tdqgq45.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://cegepstfe.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Cégep de Saint-Félicien", + "wikipedia_url": "https://fr.wikipedia.org/wiki/C%C3%A9gep_de_Saint-F%C3%A9licien", + "addresses": [ + { + "lat": 48.65007, + "lng": -72.44906, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Saint-Félicien", + "geonames_city": { + "id": 6138201, + "city": "Saint-Félicien", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Saguenay/Lac-Saint-Jean", + "id": 6137271, + "ascii_name": "Saguenay/Lac-Saint-Jean", + "code": "CA.10.02" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0216 404X", + "all": [ + "0000 0001 0216 404X" + ] + }, + "Wikidata": { + "preferred": "Q3010005", + "all": [ + "Q3010005" + ] + } + }, + "established": 1971, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00tdqgq45", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00tpn9z48.json b/v1.43/00tpn9z48.json new file mode 100644 index 000000000..baabbdb2f --- /dev/null +++ b/v1.43/00tpn9z48.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/00tpn9z48", + "name": "Misión Biológica de Galicia", + "email_address": null, + "ip_addresses": [], + "established": 1921, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Consejo Superior de Investigaciones Científicas", + "type": "Parent", + "id": "https://ror.org/02gfc7t72" + } + ], + "addresses": [ + { + "lat": 42.431, + "lng": -8.64435, + "state": null, + "state_code": null, + "city": "Pontevedra", + "geonames_city": { + "id": 3113209, + "city": "Pontevedra", + "geonames_admin1": { + "name": "Galicia", + "id": 3336902, + "ascii_name": "Galicia", + "code": "ES.58" + }, + "geonames_admin2": { + "name": "Pontevedra", + "id": 3113208, + "ascii_name": "Pontevedra", + "code": "ES.58.PO" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://mbg.csic.es" + ], + "aliases": [ + "Biological Mission of Galicia" + ], + "acronyms": [ + "MBG-CSIC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Galicia_Biological_Mission", + "labels": [ + { + "label": "Galicia Biological Mission", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2292 6080" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q38078567" + ] + }, + "GRID": { + "preferred": "grid.502190.f", + "all": "grid.502190.f" + } + } +} \ No newline at end of file diff --git a/v1.43/00v4yb702.json b/v1.43/00v4yb702.json new file mode 100644 index 000000000..21917e984 --- /dev/null +++ b/v1.43/00v4yb702.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/00v4yb702", + "name": "Rochester Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": 1829, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.15478, + "lng": -77.61556, + "state": null, + "state_code": null, + "city": "Rochester", + "geonames_city": { + "id": 5134086, + "city": "Rochester", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Monroe", + "id": 5127305, + "ascii_name": "Monroe", + "code": "US.NY.055" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.rit.edu/" + ], + "aliases": [ + "Rochester Athenaeum and Mechanics Institute" + ], + "acronyms": [ + "RIT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Rochester_Institute_of_Technology", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2323 3518" + ] + }, + "OrgRef": { + "preferred": "81756", + "all": [ + "81756", + "16656870" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2140778" + ] + }, + "GRID": { + "preferred": "grid.262613.2", + "all": "grid.262613.2" + } + } +} \ No newline at end of file diff --git a/v1.43/00v9a4y41.json b/v1.43/00v9a4y41.json new file mode 100644 index 000000000..f392db56f --- /dev/null +++ b/v1.43/00v9a4y41.json @@ -0,0 +1,80 @@ +{ + "ip_addresses": [], + "aliases": [ + "Centre de recherches sur les écosystèmes d'altitude" + ], + "acronyms": [ + "CREA" + ], + "links": [ + "https://creamontblanc.org" + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "name": "CREA Mont-Blanc", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Centre_de_recherches_sur_les_%C3%A9cosyst%C3%A8mes_d%27altitude", + "addresses": [ + { + "lat": 45.92375, + "lng": 6.86933, + "state": null, + "state_code": null, + "country_geonames_id": 3017382, + "city": "Chamonix", + "geonames_city": { + "id": 3027301, + "city": "Chamonix", + "geonames_admin1": { + "name": "Auvergne-Rhône-Alpes", + "ascii_name": "Auvergne-Rhône-Alpes", + "id": 11071625, + "code": "FR.84" + }, + "geonames_admin2": { + "name": "Upper Savoy", + "id": 3013736, + "ascii_name": "Upper Savoy", + "code": "FR.84.74" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q2945473", + "all": [ + "Q2945473" + ] + } + }, + "established": 1996, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00v9a4y41", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00vc14296.json b/v1.43/00vc14296.json new file mode 100644 index 000000000..9866f4a5d --- /dev/null +++ b/v1.43/00vc14296.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/00vc14296", + "name": "Hanover College", + "email_address": null, + "ip_addresses": [], + "established": 1827, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 38.71423, + "lng": -85.47357, + "state": null, + "state_code": null, + "city": "Hanover", + "geonames_city": { + "id": 4258510, + "city": "Hanover", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Jefferson", + "id": 4259654, + "ascii_name": "Jefferson", + "code": "US.IN.077" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.hanover.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Hanover_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8867 670X" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "918556" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5649375" + ] + }, + "GRID": { + "preferred": "grid.431583.8", + "all": "grid.431583.8" + } + } +} \ No newline at end of file diff --git a/v1.43/00vtgdb53.json b/v1.43/00vtgdb53.json new file mode 100644 index 000000000..deb5bcc43 --- /dev/null +++ b/v1.43/00vtgdb53.json @@ -0,0 +1,233 @@ +{ + "id": "https://ror.org/00vtgdb53", + "name": "University of Glasgow", + "email_address": "", + "ip_addresses": [], + "established": 1451, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "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": "Scottish Confederation of University and Research Libraries", + "type": "Related", + "id": "https://ror.org/03hkzcg46" + }, + { + "label": "QuantIC", + "type": "Child", + "id": "https://ror.org/04qdwq068" + } + ], + "addresses": [ + { + "lat": 55.86515, + "lng": -4.25763, + "state": null, + "state_code": null, + "city": "Glasgow", + "geonames_city": { + "id": 2648579, + "city": "Glasgow", + "geonames_admin1": { + "name": "Scotland", + "id": 2638360, + "ascii_name": "Scotland", + "code": "GB.SCT" + }, + "geonames_admin2": { + "name": "Glasgow City", + "id": 3333231, + "ascii_name": "Glasgow City", + "code": "GB.SCT.V2" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.gla.ac.uk/" + ], + "aliases": [ + "Glasgow University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Glasgow", + "labels": [ + { + "label": "Prifysgol Glasgow", + "iso639": "cy" + }, + { + "label": "Oilthigh Ghlaschu", + "iso639": "gd" + } + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2193 314X" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100000853" + ] + }, + "HESA": { + "preferred": null, + "all": [ + "0168" + ] + }, + "UCAS": { + "preferred": null, + "all": [ + "G28" + ] + }, + "UKPRN": { + "preferred": null, + "all": [ + "10007794" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "39569" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q192775" + ] + }, + "GRID": { + "preferred": "grid.8756.c", + "all": "grid.8756.c" + } + } +} \ No newline at end of file diff --git a/v1.43/00vvz3k68.json b/v1.43/00vvz3k68.json new file mode 100644 index 000000000..5c1b85bc1 --- /dev/null +++ b/v1.43/00vvz3k68.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/00vvz3k68", + "name": "Elite School of Optometry", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Sankara Nethralaya", + "type": "Parent", + "id": "https://ror.org/02k0t9a94" + }, + { + "label": "SASTRA University", + "type": "Related", + "id": "https://ror.org/032jk8892" + } + ], + "addresses": [ + { + "lat": 13.08784, + "lng": 80.27847, + "state": null, + "state_code": null, + "city": "Chennai", + "geonames_city": { + "id": 1264527, + "city": "Chennai", + "geonames_admin1": { + "name": "Tamil Nadu", + "id": 1255053, + "ascii_name": "Tamil Nadu", + "code": "IN.25" + }, + "geonames_admin2": { + "name": "Chennai district", + "id": 7646145, + "ascii_name": "Chennai district", + "code": "IN.25.603" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1269750 + } + ], + "links": [ + "https://www.eso.sankaranethralaya.org" + ], + "aliases": [], + "acronyms": [ + "ESO" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 6050 1114" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30263769" + ] + }, + "GRID": { + "preferred": "grid.466628.8", + "all": "grid.466628.8" + } + } +} \ No newline at end of file diff --git a/v1.43/00w67e447.json b/v1.43/00w67e447.json new file mode 100644 index 000000000..abcc0e71f --- /dev/null +++ b/v1.43/00w67e447.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/00w67e447", + "name": "Laboratory of Theoretical Physics and Statistical Models", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.lptms.universite-paris-saclay.fr" + ], + "aliases": [], + "acronyms": [ + "LPTMS" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Laboratoire de Physique Théorique et Modèles Statistiques", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0366 8268" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR8626" + ] + }, + "GRID": { + "preferred": "grid.503330.6", + "all": "grid.503330.6" + } + } +} \ No newline at end of file diff --git a/v1.43/00wd0xj77.json b/v1.43/00wd0xj77.json new file mode 100644 index 000000000..d71f52f61 --- /dev/null +++ b/v1.43/00wd0xj77.json @@ -0,0 +1,74 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://adpi.uz" + ], + "country": { + "country_name": "Uzbekistan", + "country_code": "UZ" + }, + "name": "Andijon Davlat Pedagogika instituti", + "wikipedia_url": "https://uz.wikipedia.org/wiki/Andijon_davlat_pedagogika_instituti", + "addresses": [ + { + "lat": 40.78206, + "lng": 72.34424, + "state": null, + "state_code": null, + "country_geonames_id": 1512440, + "city": "Andijan", + "geonames_city": { + "id": 1514588, + "city": "Andijan", + "geonames_admin1": { + "name": "Andijon", + "ascii_name": "Andijon", + "id": 1484846, + "code": "UZ.01" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": {}, + "established": 2021, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00wd0xj77", + "labels": [ + { + "label": "Andijan State Pedagogical Institute", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00wk2mp56.json b/v1.43/00wk2mp56.json new file mode 100644 index 000000000..ce63a6fa5 --- /dev/null +++ b/v1.43/00wk2mp56.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/00wk2mp56", + "name": "Beihang University", + "email_address": "", + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "name": "Beijing", + "id": 2038349, + "ascii_name": "Beijing", + "code": "CN.22" + }, + "geonames_admin2": { + "name": "Beijing", + "id": 11876380, + "ascii_name": "Beijing", + "code": "CN.22.11876380" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "http://ev.buaa.edu.cn/" + ], + "aliases": [ + "Beijing University of Aeronautics and Astronautics" + ], + "acronyms": [ + "BUAA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Beihang_University", + "labels": [ + { + "label": "北京航空航天大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9999 1211" + ] + }, + "FundRef": { + "preferred": "501100002358", + "all": [ + "501100002358", + "501100003096" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "599903" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2299797" + ] + }, + "GRID": { + "preferred": "grid.64939.31", + "all": "grid.64939.31" + } + } +} \ No newline at end of file diff --git a/v1.43/00ws85526.json b/v1.43/00ws85526.json new file mode 100644 index 000000000..94ee014be --- /dev/null +++ b/v1.43/00ws85526.json @@ -0,0 +1,83 @@ +{ + "id": "https://ror.org/00ws85526", + "name": "Metro Bilbao", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.26271, + "lng": -2.92528, + "state": null, + "state_code": null, + "city": "Bilbao", + "geonames_city": { + "id": 3128026, + "city": "Bilbao", + "geonames_admin1": { + "name": "Basque Country", + "id": 3336903, + "ascii_name": "Basque Country", + "code": "ES.59" + }, + "geonames_admin2": { + "name": "Biscay", + "id": 3104469, + "ascii_name": "Biscay", + "code": "ES.59.BI" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.metrobilbao.eus" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Metro_Bilbao", + "labels": [ + { + "label": "Metro de Bilbao", + "iso639": "es" + }, + { + "label": "Bilboko metroa", + "iso639": "eu" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.436451.1", + "all": "grid.436451.1" + } + } +} \ No newline at end of file diff --git a/v1.43/00wtrxf04.json b/v1.43/00wtrxf04.json new file mode 100644 index 000000000..29345afea --- /dev/null +++ b/v1.43/00wtrxf04.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://oshercenter.org" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Osher Center for Integrative Medicine", + "wikipedia_url": null, + "addresses": [ + { + "lat": 42.35843, + "lng": -71.05977, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Boston", + "geonames_city": { + "id": 4930956, + "city": "Boston", + "geonames_admin1": { + "name": "Massachusetts", + "ascii_name": "Massachusetts", + "id": 6254926, + "code": "US.MA" + }, + "geonames_admin2": { + "name": "Suffolk", + "id": 4952349, + "ascii_name": "Suffolk", + "code": "US.MA.025" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "FundRef": { + "preferred": "100014872", + "all": [ + "100014872" + ] + } + }, + "established": 1998, + "relationships": [ + { + "label": "Brigham and Women's Hospital", + "type": "Parent", + "id": "https://ror.org/04b6nzv94" + } + ], + "email_address": null, + "id": "https://ror.org/00wtrxf04", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00wvqgd19.json b/v1.43/00wvqgd19.json new file mode 100644 index 000000000..92cc214eb --- /dev/null +++ b/v1.43/00wvqgd19.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/00wvqgd19", + "name": "Mondragon University", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Basque Culinary Center", + "type": "Related", + "id": "https://ror.org/03ftn5w97" + }, + { + "label": "Mondragon Corporation (Spain)", + "type": "Parent", + "id": "https://ror.org/00fxswh37" + } + ], + "addresses": [ + { + "lat": 43.06441, + "lng": -2.48977, + "state": null, + "state_code": null, + "city": "Arrasate / Mondragón", + "geonames_city": { + "id": 3116503, + "city": "Arrasate / Mondragón", + "geonames_admin1": { + "name": "Basque Country", + "id": 3336903, + "ascii_name": "Basque Country", + "code": "ES.59" + }, + "geonames_admin2": { + "name": "Gipuzkoa", + "id": 3120935, + "ascii_name": "Gipuzkoa", + "code": "ES.59.SS" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.mondragon.edu" + ], + "aliases": [], + "acronyms": [ + "MU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Mondrag%C3%B3n", + "labels": [ + { + "label": "Universidad de Mondragón", + "iso639": "es" + }, + { + "label": "Mondragon Unibertsitatea", + "iso639": "eu" + }, + { + "label": "Universidade de Mondragón", + "iso639": "gl" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0662 2298" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "11965681" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2599486" + ] + }, + "GRID": { + "preferred": "grid.436417.3", + "all": "grid.436417.3" + } + } +} \ No newline at end of file diff --git a/v1.43/00wxgxz56.json b/v1.43/00wxgxz56.json new file mode 100644 index 000000000..116ab400c --- /dev/null +++ b/v1.43/00wxgxz56.json @@ -0,0 +1,90 @@ +{ + "ip_addresses": [], + "aliases": [ + "University Hospital of Toledo" + ], + "acronyms": [], + "links": [ + "https://hospitaluniversitariodetoledo.es" + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "name": "Hospital Universitario de Toledo", + "wikipedia_url": "https://es.wikipedia.org/wiki/Hospital_Universitario_de_Toledo", + "addresses": [ + { + "lat": 39.8581, + "lng": -4.02263, + "state": null, + "state_code": null, + "country_geonames_id": 2510769, + "city": "Toledo", + "geonames_city": { + "id": 2510409, + "city": "Toledo", + "geonames_admin1": { + "name": "Castille-La Mancha", + "ascii_name": "Castille-La Mancha", + "id": 2593111, + "code": "ES.54" + }, + "geonames_admin2": { + "name": "Toledo", + "id": 2510407, + "ascii_name": "Toledo", + "code": "ES.54.TO" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7406 9449", + "all": [ + "0000 0004 7406 9449" + ] + }, + "Wikidata": { + "preferred": "Q107611919", + "all": [ + "Q107611919" + ] + } + }, + "established": 2020, + "relationships": [ + { + "label": "Hospital Virgen de la Salud", + "type": "Predecessor", + "id": "https://ror.org/0289cxp23" + } + ], + "email_address": null, + "id": "https://ror.org/00wxgxz56", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00x362k69.json b/v1.43/00x362k69.json new file mode 100644 index 000000000..5f862eb20 --- /dev/null +++ b/v1.43/00x362k69.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/00x362k69", + "name": "Queen Elizabeth Hospital", + "email_address": "", + "ip_addresses": [], + "established": 1954, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Central Adelaide Local Health Network", + "type": "Parent", + "id": "https://ror.org/02r40rn49" + } + ], + "addresses": [ + { + "lat": -34.92866, + "lng": 138.59863, + "state": null, + "state_code": null, + "city": "Adelaide", + "geonames_city": { + "id": 2078025, + "city": "Adelaide", + "geonames_admin1": { + "name": "South Australia", + "id": 2061327, + "ascii_name": "South Australia", + "code": "AU.05" + }, + "geonames_admin2": { + "name": "Adelaide", + "id": 7839644, + "ascii_name": "Adelaide", + "code": "AU.05.40070" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "http://www.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" + ], + "aliases": [], + "acronyms": [ + "TQEH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Queen_Elizabeth_Hospital,_Adelaide", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0486 659X" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7270336" + ] + }, + "GRID": { + "preferred": "grid.278859.9", + "all": "grid.278859.9" + } + } +} \ No newline at end of file diff --git a/v1.43/00xexfj57.json b/v1.43/00xexfj57.json new file mode 100644 index 000000000..14e472dfd --- /dev/null +++ b/v1.43/00xexfj57.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [ + "IranDoc", + "یرانداک", + "پژوهشگاه علوم و فناوری اطلاعات ایران (ایرانداک)", + "Iranian Research Institute for Scientific Information and Documentation" + ], + "acronyms": [], + "links": [ + "https://irandoc.ac.ir" + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "name": "Iranian Research Institute for Information Science and Technology", + "wikipedia_url": "https://en.wikipedia.org/wiki/Iranian_Research_Institute_for_Information_Science_and_Technology", + "addresses": [ + { + "lat": 35.69439, + "lng": 51.42151, + "state": null, + "state_code": null, + "country_geonames_id": 130758, + "city": "Tehran", + "geonames_city": { + "id": 112931, + "city": "Tehran", + "geonames_admin1": { + "name": "Tehran", + "ascii_name": "Tehran", + "id": 110791, + "code": "IR.26" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility", + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0745 840X", + "all": [ + "0000 0001 0745 840X" + ] + }, + "Wikidata": { + "preferred": "Q10860433", + "all": [ + "Q10860433" + ] + } + }, + "established": 1968, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00xexfj57", + "labels": [ + { + "label": "پژوهشگاه علوم و فناوری اطلاعات ایران", + "iso639": "fa" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00xn1pr13.json b/v1.43/00xn1pr13.json new file mode 100644 index 000000000..2d820df68 --- /dev/null +++ b/v1.43/00xn1pr13.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/00xn1pr13", + "name": "Leibniz Institute for Immunotherapy", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "Parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "addresses": [ + { + "lat": 49.01513, + "lng": 12.10161, + "state": null, + "state_code": null, + "city": "Regensburg", + "geonames_city": { + "id": 2849483, + "city": "Regensburg", + "geonames_admin1": { + "name": "Bavaria", + "id": 2951839, + "ascii_name": "Bavaria", + "code": "DE.02" + }, + "geonames_admin2": { + "name": "Upper Palatinate", + "id": 2859444, + "ascii_name": "Upper Palatinate", + "code": "DE.02.093" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://lit.eu" + ], + "aliases": [ + "Regensburger Centrum für Interventionelle Immunologie" + ], + "acronyms": [ + "LIT" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Leibniz-Institut_f%C3%BCr_Immuntherapie", + "labels": [ + { + "label": "Leibniz-Institut für Immuntherapie", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q110516280", + "all": [ + "Q110516280" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/00xp1b128.json b/v1.43/00xp1b128.json new file mode 100644 index 000000000..0dc3156a3 --- /dev/null +++ b/v1.43/00xp1b128.json @@ -0,0 +1,89 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "KBHN" + ], + "links": [ + "https://kidsbrainhealth.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Kids Brain Health Network", + "wikipedia_url": null, + "addresses": [ + { + "lat": 49.26636, + "lng": -122.95263, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Burnaby", + "geonames_city": { + "id": 5911606, + "city": "Burnaby", + "geonames_admin1": { + "name": "British Columbia", + "ascii_name": "British Columbia", + "id": 5909050, + "code": "CA.02" + }, + "geonames_admin2": { + "name": "Metro Vancouver Regional District", + "id": 5965814, + "ascii_name": "Metro Vancouver Regional District", + "code": "CA.02.5915" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9224 2604", + "all": [ + "0000 0004 9224 2604" + ] + }, + "FundRef": { + "preferred": "501100015741", + "all": [ + "501100015741" + ] + } + }, + "established": 2010, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00xp1b128", + "labels": [ + { + "label": "Réseau pour la Santé du Cerveau des Enfants", + "iso639": "fr" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00xsz4758.json b/v1.43/00xsz4758.json new file mode 100644 index 000000000..a4c8a68c5 --- /dev/null +++ b/v1.43/00xsz4758.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://www.leukaemiauk.org.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Leukaemia UK", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9224 2380", + "all": [ + "0000 0004 9224 2380" + ] + }, + "FundRef": { + "preferred": "100015763", + "all": [ + "100015763" + ] + } + }, + "established": 2019, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00xsz4758", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00xzacp61.json b/v1.43/00xzacp61.json new file mode 100644 index 000000000..b7425c125 --- /dev/null +++ b/v1.43/00xzacp61.json @@ -0,0 +1,102 @@ +{ + "ip_addresses": [], + "aliases": [ + "National Centres of Competence in Research SwissMAP", + "SwissMAP – The Mathematics of Physics", + "SwissMAP" + ], + "acronyms": [], + "links": [ + "https://www.nccr-swissmap.ch" + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "name": "NCCR SwissMAP", + "wikipedia_url": null, + "addresses": [ + { + "lat": 46.20222, + "lng": 6.14569, + "state": null, + "state_code": null, + "country_geonames_id": 2658434, + "city": "Geneva", + "geonames_city": { + "id": 2660646, + "city": "Geneva", + "geonames_admin1": { + "name": "Geneva", + "ascii_name": "Geneva", + "id": 2660645, + "code": "CH.GE" + }, + "geonames_admin2": { + "name": "Geneva", + "id": 6458783, + "ascii_name": "Geneva", + "code": "CH.GE.2500" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q105573106", + "all": [ + "Q105573106" + ] + }, + "FundRef": { + "preferred": "100018011", + "all": [ + "100018011" + ] + } + }, + "established": 2014, + "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" + } + ], + "email_address": null, + "id": "https://ror.org/00xzacp61", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00y0aj963.json b/v1.43/00y0aj963.json new file mode 100644 index 000000000..4b650ca4e --- /dev/null +++ b/v1.43/00y0aj963.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/00y0aj963", + "name": "Going Green (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.thecorebike.com/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30256790" + ] + }, + "GRID": { + "preferred": "grid.434604.1", + "all": "grid.434604.1" + } + } +} \ No newline at end of file diff --git a/v1.43/00y1k7p64.json b/v1.43/00y1k7p64.json new file mode 100644 index 000000000..39db01565 --- /dev/null +++ b/v1.43/00y1k7p64.json @@ -0,0 +1,71 @@ +{ + "ip_addresses": [], + "aliases": [ + "Scapa Healthcare" + ], + "acronyms": [], + "links": [ + "https://www.scapahealthcare.com" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Scapa Healthcare (United Kingdom)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 53.9863, + "lng": -2.11252, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Gargrave", + "geonames_city": { + "id": 7296779, + "city": "Gargrave", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "North Yorkshire", + "id": 2641209, + "ascii_name": "North Yorkshire", + "code": "GB.ENG.J7" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00y1k7p64", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00y6q9n79.json b/v1.43/00y6q9n79.json new file mode 100644 index 000000000..67fc17f92 --- /dev/null +++ b/v1.43/00y6q9n79.json @@ -0,0 +1,129 @@ +{ + "id": "https://ror.org/00y6q9n79", + "name": "Ministry of Health", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.sanidad.gob.es" + ], + "aliases": [ + "Ministry of Health, Social Services and Equality" + ], + "acronyms": [ + "MISAN" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Health_(Spain)", + "labels": [ + { + "label": "Ministerio de Sanidad Servicios Sociales e Igualdad", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "FundRef": { + "preferred": "501100003751", + "all": [ + "501100003751", + "100016145", + "100016658" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "33528060" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3113883" + ] + }, + "GRID": { + "preferred": "grid.436087.e", + "all": "grid.436087.e" + } + } +} \ No newline at end of file diff --git a/v1.43/00y7tet25.json b/v1.43/00y7tet25.json new file mode 100644 index 000000000..1006f11fa --- /dev/null +++ b/v1.43/00y7tet25.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/00y7tet25", + "name": "ERN eUROGEN", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Healthcare" + ], + "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" + } + ], + "addresses": [ + { + "lat": 51.8425, + "lng": 5.85278, + "state": null, + "state_code": null, + "city": "Nijmegen", + "geonames_city": { + "id": 2750053, + "city": "Nijmegen", + "geonames_admin1": { + "name": "Gelderland", + "id": 2755634, + "ascii_name": "Gelderland", + "code": "NL.03" + }, + "geonames_admin2": { + "name": "Nijmegen Municipality", + "id": 2750052, + "ascii_name": "Nijmegen Municipality", + "code": "NL.03.0268" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2750405 + } + ], + "links": [ + "https://eurogen-ern.eu" + ], + "aliases": [ + "European Reference Network on urogenital diseases and conditions" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.43/00yjd3n13.json b/v1.43/00yjd3n13.json new file mode 100644 index 000000000..365675825 --- /dev/null +++ b/v1.43/00yjd3n13.json @@ -0,0 +1,147 @@ +{ + "id": "https://ror.org/00yjd3n13", + "name": "Swiss National Science Foundation", + "email_address": null, + "ip_addresses": [], + "established": 1952, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Swiss National Data and Service Center for the Humanities", + "type": "Related", + "id": "https://ror.org/047f01g80" + }, + { + "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": "NCCR SwissMAP", + "type": "Child", + "id": "https://ror.org/00xzacp61" + } + ], + "addresses": [ + { + "lat": 46.94809, + "lng": 7.44744, + "state": null, + "state_code": null, + "city": "Bern", + "geonames_city": { + "id": 2661552, + "city": "Bern", + "geonames_admin1": { + "name": "Bern", + "id": 2661551, + "ascii_name": "Bern", + "code": "CH.BE" + }, + "geonames_admin2": { + "name": "Bern-Mittelland District", + "id": 8260142, + "ascii_name": "Bern-Mittelland District", + "code": "CH.BE.246" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "http://www.snf.ch/en" + ], + "aliases": [], + "acronyms": [ + "SNSF", + "SNF", + "FNS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Swiss_National_Science_Foundation", + "labels": [ + { + "label": "Fonds national suisse de la recherche scientifique", + "iso639": "fr" + }, + { + "label": "Schweizerische Nationalfonds zur Förderung der wissenschaftlichen Forschung", + "iso639": "de" + }, + { + "label": "Fondo Nazionale Svizzero per la Ricerca Scientifica", + "iso639": "it" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1957 0992" + ] + }, + "FundRef": { + "preferred": "501100001711", + "all": [ + "501100001711", + "501100002339" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q471732", + "Q45132019" + ] + }, + "GRID": { + "preferred": "grid.425888.b", + "all": "grid.425888.b" + } + } +} \ No newline at end of file diff --git a/v1.43/00z54nq84.json b/v1.43/00z54nq84.json new file mode 100644 index 000000000..ec5015ad9 --- /dev/null +++ b/v1.43/00z54nq84.json @@ -0,0 +1,323 @@ +{ + "id": "https://ror.org/00z54nq84", + "name": "Institut de Physique", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.cnrs.fr/inp/" + ], + "aliases": [], + "acronyms": [ + "INP" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8863 6724" + ] + }, + "GRID": { + "preferred": "grid.457018.f", + "all": "grid.457018.f" + } + } +} \ No newline at end of file diff --git a/v1.43/00z5s8133.json b/v1.43/00z5s8133.json new file mode 100644 index 000000000..ee64e043c --- /dev/null +++ b/v1.43/00z5s8133.json @@ -0,0 +1,87 @@ +{ + "ip_addresses": [], + "aliases": [ + "Instituto Forestal de Chile", + "Chilean Forestry Institute", + "Chilean Forest Institute" + ], + "acronyms": [], + "links": [ + "https://www.infor.cl" + ], + "country": { + "country_name": "Chile", + "country_code": "CL" + }, + "name": "Instituto Forestal", + "wikipedia_url": "https://en.wikipedia.org/wiki/Instituto_Forestal", + "addresses": [ + { + "lat": -33.45694, + "lng": -70.64827, + "state": null, + "state_code": null, + "country_geonames_id": 3895114, + "city": "Santiago", + "geonames_city": { + "id": 3871336, + "city": "Santiago", + "geonames_admin1": { + "name": "Santiago Metropolitan", + "ascii_name": "Santiago Metropolitan", + "id": 3873544, + "code": "CL.12" + }, + "geonames_admin2": { + "name": "Provincia de Santiago", + "id": 3871332, + "ascii_name": "Provincia de Santiago", + "code": "CL.12.131" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility", + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 1268 3678", + "all": [ + "0000 0005 1268 3678" + ] + }, + "Wikidata": { + "preferred": "Q5917327", + "all": [ + "Q5917327" + ] + } + }, + "established": 1965, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00z5s8133", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/00za53h95.json b/v1.43/00za53h95.json new file mode 100644 index 000000000..2d4d5ee9b --- /dev/null +++ b/v1.43/00za53h95.json @@ -0,0 +1,225 @@ +{ + "id": "https://ror.org/00za53h95", + "name": "Johns Hopkins University", + "email_address": null, + "ip_addresses": [], + "established": 1876, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "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": "Konza Prairie Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/02wavzm11" + }, + { + "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": "Packard Center", + "type": "Child", + "id": "https://ror.org/042fhmq33" + } + ], + "addresses": [ + { + "lat": 39.29038, + "lng": -76.61219, + "state": null, + "state_code": null, + "city": "Baltimore", + "geonames_city": { + "id": 4347778, + "city": "Baltimore", + "geonames_admin1": { + "name": "Maryland", + "id": 4361885, + "ascii_name": "Maryland", + "code": "US.MD" + }, + "geonames_admin2": { + "name": "Baltimore", + "id": 4347820, + "ascii_name": "Baltimore", + "code": "US.MD.510" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.jhu.edu/" + ], + "aliases": [], + "acronyms": [ + "JHU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Johns_Hopkins_University", + "labels": [ + { + "label": "Universidad Johns Hopkins", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2171 9311" + ] + }, + "FundRef": { + "preferred": "100007880", + "all": [ + "100007880", + "100005932", + "100005952", + "100009810", + "100010489", + "100007228", + "100008309", + "100008911", + "100005542", + "100009053", + "100008632" + ] + }, + "OrgRef": { + "preferred": "38420", + "all": [ + "38420", + "918222", + "10919408", + "1991054", + "1877646" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q193727" + ] + }, + "GRID": { + "preferred": "grid.21107.35", + "all": "grid.21107.35" + } + } +} \ No newline at end of file diff --git a/v1.43/00zay3w86.json b/v1.43/00zay3w86.json new file mode 100644 index 000000000..72691ce39 --- /dev/null +++ b/v1.43/00zay3w86.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/00zay3w86", + "name": "Centre for Nanoscience and Nanotechnology", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.c2n.universite-paris-saclay.fr" + ], + "aliases": [], + "acronyms": [ + "C2N" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Centre de Nanosciences et de Nanotechnologies", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "CNRS": { + "preferred": null, + "all": [ + "UMR9001" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q47520094" + ] + }, + "GRID": { + "preferred": "grid.503099.6", + "all": "grid.503099.6" + } + } +} \ No newline at end of file diff --git a/v1.43/00zvfs242.json b/v1.43/00zvfs242.json new file mode 100644 index 000000000..292cd000d --- /dev/null +++ b/v1.43/00zvfs242.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "NAN" + ], + "links": [ + "https://www.nanonline.org" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "National Academy of Neuropsychology", + "wikipedia_url": null, + "addresses": [ + { + "lat": 39.73915, + "lng": -104.9847, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Denver", + "geonames_city": { + "id": 5419384, + "city": "Denver", + "geonames_admin1": { + "name": "Colorado", + "ascii_name": "Colorado", + "id": 5417618, + "code": "US.CO" + }, + "geonames_admin2": { + "name": "Denver", + "id": 5419396, + "ascii_name": "Denver", + "code": "US.CO.031" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2195 5584", + "all": [ + "0000 0001 2195 5584" + ] + }, + "FundRef": { + "preferred": "100011471", + "all": [ + "100011471" + ] + } + }, + "established": 1975, + "relationships": [], + "email_address": null, + "id": "https://ror.org/00zvfs242", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01070mq45.json b/v1.43/01070mq45.json new file mode 100644 index 000000000..2dbaaee01 --- /dev/null +++ b/v1.43/01070mq45.json @@ -0,0 +1,164 @@ +{ + "id": "https://ror.org/01070mq45", + "name": "Wayne State University", + "email_address": null, + "ip_addresses": [], + "established": 1868, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 42.33143, + "lng": -83.04575, + "state": null, + "state_code": null, + "city": "Detroit", + "geonames_city": { + "id": 4990729, + "city": "Detroit", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Wayne", + "id": 5014227, + "ascii_name": "Wayne", + "code": "US.MI.163" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://wayne.edu/" + ], + "aliases": [], + "acronyms": [ + "WSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Wayne_State_University", + "labels": [ + { + "label": "Université de Wayne State", + "iso639": "fr" + }, + { + "label": "Universidad Estatal Wayne", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1456 7807" + ] + }, + "FundRef": { + "preferred": "100006710", + "all": [ + "100006710", + "100007284", + "100008296" + ] + }, + "OrgRef": { + "preferred": "302260", + "all": [ + "302260", + "9564938", + "3106745" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q349055" + ] + }, + "GRID": { + "preferred": "grid.254444.7", + "all": "grid.254444.7" + } + } +} \ No newline at end of file diff --git a/v1.43/010e21634.json b/v1.43/010e21634.json new file mode 100644 index 000000000..b1e7f819f --- /dev/null +++ b/v1.43/010e21634.json @@ -0,0 +1,77 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "MCVT" + ], + "links": [ + "https://www.unistra.fr/recherche-1/vie-et-sante-1/medecine-cardiovasculaire-translationnelle-mcvt-ur-3074" + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "name": "Médecine Cardiovasculaire Translationnelle", + "wikipedia_url": null, + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "country_geonames_id": 3017382, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "ascii_name": "Grand Est", + "id": 11071622, + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": null, + "relationships": [ + { + "label": "University of Strasbourg", + "type": "Parent", + "id": "https://ror.org/00pg6eq24" + } + ], + "email_address": null, + "id": "https://ror.org/010e21634", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/010j4w165.json b/v1.43/010j4w165.json new file mode 100644 index 000000000..42c261ddf --- /dev/null +++ b/v1.43/010j4w165.json @@ -0,0 +1,74 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://gulf.edu.sa/en/index.php" + ], + "country": { + "country_name": "Saudi Arabia", + "country_code": "SA" + }, + "name": "Gulf College", + "wikipedia_url": null, + "addresses": [ + { + "lat": 28.43279, + "lng": 45.97077, + "state": null, + "state_code": null, + "country_geonames_id": 102358, + "city": "Hafar Al-Batin", + "geonames_city": { + "id": 106297, + "city": "Hafar Al-Batin", + "geonames_admin1": { + "name": "Eastern Province", + "ascii_name": "Eastern Province", + "id": 108241, + "code": "SA.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/010j4w165", + "labels": [ + { + "label": "كلية الخليج", + "iso639": "ar" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/010ywy128.json b/v1.43/010ywy128.json new file mode 100644 index 000000000..9dba1808e --- /dev/null +++ b/v1.43/010ywy128.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/010ywy128", + "name": "Instituto de Investigaciones de la Amazonía Peruana", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": -3.74912, + "lng": -73.25383, + "state": null, + "state_code": null, + "city": "Iquitos", + "geonames_city": { + "id": 3696183, + "city": "Iquitos", + "geonames_admin1": { + "name": "Loreto", + "id": 3695238, + "ascii_name": "Loreto", + "code": "PE.16" + }, + "geonames_admin2": { + "name": "Maynas Province", + "id": 3694873, + "ascii_name": "Maynas Province", + "code": "PE.16.1601" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3932488 + } + ], + "links": [ + "https://www.gob.pe/iiap" + ], + "aliases": [], + "acronyms": [ + "IIAP" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Peru", + "country_code": "PE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2177 4732" + ] + }, + "GRID": { + "preferred": "grid.493484.6", + "all": "grid.493484.6" + } + } +} \ No newline at end of file diff --git a/v1.43/0115fxs14.json b/v1.43/0115fxs14.json new file mode 100644 index 000000000..6e3aef692 --- /dev/null +++ b/v1.43/0115fxs14.json @@ -0,0 +1,90 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "MCWCC" + ], + "links": [ + "https://cancer.mcw.edu" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Medical College of Wisconsin Cancer Center", + "wikipedia_url": null, + "addresses": [ + { + "lat": 43.0389, + "lng": -87.90647, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Milwaukee", + "geonames_city": { + "id": 5263045, + "city": "Milwaukee", + "geonames_admin1": { + "name": "Wisconsin", + "ascii_name": "Wisconsin", + "id": 5279468, + "code": "US.WI" + }, + "geonames_admin2": { + "name": "Milwaukee", + "id": 5263058, + "ascii_name": "Milwaukee", + "code": "US.WI.079" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0390 8735", + "all": [ + "0000 0004 0390 8735" + ] + }, + "FundRef": { + "preferred": "100017342", + "all": [ + "100017342" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Medical College of Wisconsin", + "type": "Parent", + "id": "https://ror.org/00qqv6244" + } + ], + "email_address": null, + "id": "https://ror.org/0115fxs14", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/011abem59.json b/v1.43/011abem59.json new file mode 100644 index 000000000..ad24eb9f8 --- /dev/null +++ b/v1.43/011abem59.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/011abem59", + "name": "Évolution, Génomes, Comportement, Écologie", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.egce.universite-paris-saclay.fr" + ], + "aliases": [ + "LEGS", + "Laboratoire Évolution, Génomes, Comportement, Écologie" + ], + "acronyms": [ + "EGCE" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0614 7687", + "all": [ + "0000 0004 0614 7687" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR9191" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30262344" + ] + }, + "GRID": { + "preferred": "grid.463972.d", + "all": "grid.463972.d" + } + } +} \ No newline at end of file diff --git a/v1.43/011jtr847.json b/v1.43/011jtr847.json new file mode 100644 index 000000000..fad5ba318 --- /dev/null +++ b/v1.43/011jtr847.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/011jtr847", + "name": "Centre de Recerca en Sanitat Animal", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.irta.cat/ca/centre/irta-cresa/" + ], + "aliases": [ + "IRTA Centre de Recerca en Sanitat Animal", + "Institut de Recerca i Tecnologia Agroalimentàries Centre de Recerca en Sanitat Animal" + ], + "acronyms": [ + "IRTA-CReSA", + "CReSA" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.424716.2", + "all": "grid.424716.2" + } + } +} \ No newline at end of file diff --git a/v1.43/011n4tk56.json b/v1.43/011n4tk56.json new file mode 100644 index 000000000..04ed12053 --- /dev/null +++ b/v1.43/011n4tk56.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/011n4tk56", + "name": "Agricultural Research Institute of Ontario", + "email_address": null, + "ip_addresses": [], + "established": 1962, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.54594, + "lng": -80.25599, + "state": null, + "state_code": null, + "city": "Guelph", + "geonames_city": { + "id": 5967629, + "city": "Guelph", + "geonames_admin1": { + "name": "Ontario", + "id": 6093943, + "ascii_name": "Ontario", + "code": "CA.08" + }, + "geonames_admin2": { + "name": "Wellington County", + "id": 6177913, + "ascii_name": "Wellington County", + "code": "CA.08.3523" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://www.omafra.gov.on.ca/english/research/ario/institute.htm" + ], + "aliases": [], + "acronyms": [ + "ARIO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Agricultural_Research_Institute_of_Ontario", + "labels": [ + { + "label": "Institut de Recherche Agricole de l'Ontario", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2181 3826" + ] + }, + "GRID": { + "preferred": "grid.482495.6", + "all": "grid.482495.6" + } + } +} \ No newline at end of file diff --git a/v1.43/011xg1225.json b/v1.43/011xg1225.json new file mode 100644 index 000000000..89389569c --- /dev/null +++ b/v1.43/011xg1225.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/011xg1225", + "name": "Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://umr-moisa.cirad.fr/" + ], + "aliases": [ + "Marchés, Organisations, Institutions et Stratégies d'Acteurs" + ], + "acronyms": [ + "MOISA", + "MoISA" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2243 1571" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30261418" + ] + }, + "GRID": { + "preferred": "grid.462287.d", + "all": "grid.462287.d" + } + } +} \ No newline at end of file diff --git a/v1.43/011zm6c42.json b/v1.43/011zm6c42.json new file mode 100644 index 000000000..9f988e298 --- /dev/null +++ b/v1.43/011zm6c42.json @@ -0,0 +1,74 @@ +{ + "ip_addresses": [], + "aliases": [ + "Associação Catarinense de Tecnologia", + "Catarinense Technology Association" + ], + "acronyms": [ + "ACATE" + ], + "links": [ + "https://www.acate.com.br" + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "name": "ACATE - Associação Catarinense de Tecnologia", + "wikipedia_url": null, + "addresses": [ + { + "lat": -27.59667, + "lng": -48.54917, + "state": null, + "state_code": null, + "country_geonames_id": 3469034, + "city": "Florianópolis", + "geonames_city": { + "id": 3463237, + "city": "Florianópolis", + "geonames_admin1": { + "name": "Santa Catarina", + "ascii_name": "Santa Catarina", + "id": 3450387, + "code": "BR.26" + }, + "geonames_admin2": { + "name": "Florianópolis", + "id": 6323121, + "ascii_name": "Florianópolis", + "code": "BR.26.4205407" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": {}, + "established": 1986, + "relationships": [], + "email_address": null, + "id": "https://ror.org/011zm6c42", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01225hq90.json b/v1.43/01225hq90.json new file mode 100644 index 000000000..669c70b14 --- /dev/null +++ b/v1.43/01225hq90.json @@ -0,0 +1,130 @@ +{ + "id": "https://ror.org/01225hq90", + "name": "Centre d'Études Spatiales de la Biosphère", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Upper Garonne", + "id": 3013767, + "ascii_name": "Upper Garonne", + "code": "FR.76.31" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.cesbio.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "CESBIO" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Center for the Study of the Biosphere from Space", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0382 8364", + "all": [ + "0000 0004 0382 8364" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR5126" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q51780455" + ] + }, + "GRID": { + "preferred": "grid.500939.6", + "all": "grid.500939.6" + } + } +} \ No newline at end of file diff --git a/v1.43/0124x7055.json b/v1.43/0124x7055.json new file mode 100644 index 000000000..7046de464 --- /dev/null +++ b/v1.43/0124x7055.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/0124x7055", + "name": "Centre for Industrial Technological Development", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.cdti.es" + ], + "aliases": [], + "acronyms": [ + "CDTI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Centre_for_the_Development_of_Industrial_Technology", + "labels": [ + { + "label": "Centro para el Desarrollo Tecnologico Industrial", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2193 5524" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100001872" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1054348" + ] + }, + "GRID": { + "preferred": "grid.410460.7", + "all": "grid.410460.7" + } + } +} \ No newline at end of file diff --git a/v1.43/012fqzm33.json b/v1.43/012fqzm33.json new file mode 100644 index 000000000..4d8c8d418 --- /dev/null +++ b/v1.43/012fqzm33.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/012fqzm33", + "name": "Génétique Quantitative et Évolution Le Moulon", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://moulon.inrae.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Quantitative Genetics and Evolution - Le Moulon", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "CNRS": { + "preferred": null, + "all": [ + "UMR8120" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30261512" + ] + }, + "GRID": { + "preferred": "grid.462625.1", + "all": "grid.462625.1" + } + } +} \ No newline at end of file diff --git a/v1.43/012k1v959.json b/v1.43/012k1v959.json new file mode 100644 index 000000000..5f3169896 --- /dev/null +++ b/v1.43/012k1v959.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/012k1v959", + "name": "Munich University of Applied Sciences", + "email_address": "", + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "name": "Bavaria", + "id": 2951839, + "ascii_name": "Bavaria", + "code": "DE.02" + }, + "geonames_admin2": { + "name": "Upper Bavaria", + "id": 2861322, + "ascii_name": "Upper Bavaria", + "code": "DE.02.091" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.hm.edu" + ], + "aliases": [ + "Hochschule München", + "Hochschule für angewandte Wissenschaften München" + ], + "acronyms": [ + "HM" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Munich_University_of_Applied_Sciences", + "labels": [ + { + "label": "Hochschule München University of Applied Sciences", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1408 3925" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "1006346" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q314089" + ] + }, + "GRID": { + "preferred": "grid.434949.7", + "all": "grid.434949.7" + } + } +} \ No newline at end of file diff --git a/v1.43/012qsrr25.json b/v1.43/012qsrr25.json new file mode 100644 index 000000000..2bfe2bdbc --- /dev/null +++ b/v1.43/012qsrr25.json @@ -0,0 +1,99 @@ +{ + "ip_addresses": [], + "aliases": [ + "Cornell AES", + "Cornell AgriTech" + ], + "acronyms": [ + "CUAES" + ], + "links": [ + "https://cals.cornell.edu/agricultural-experiment-station" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Cornell University Agricultural Experiment Station", + "wikipedia_url": "https://en.wikipedia.org/wiki/New_York_State_Agricultural_Experiment_Station", + "addresses": [ + { + "lat": 42.44063, + "lng": -76.49661, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Ithaca", + "geonames_city": { + "id": 5122432, + "city": "Ithaca", + "geonames_admin1": { + "name": "New York", + "ascii_name": "New York", + "id": 5128638, + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Tompkins", + "id": 5141153, + "ascii_name": "Tompkins", + "code": "US.NY.109" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2170 7652", + "all": [ + "0000 0001 2170 7652" + ] + }, + "Wikidata": { + "preferred": "Q45134801", + "all": [ + "Q45134801" + ] + }, + "FundRef": { + "preferred": "100011622", + "all": [ + "100011622" + ] + } + }, + "established": 1880, + "relationships": [ + { + "label": "Cornell University", + "type": "Parent", + "id": "https://ror.org/05bnh6r87" + } + ], + "email_address": null, + "id": "https://ror.org/012qsrr25", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/012s7h980.json b/v1.43/012s7h980.json new file mode 100644 index 000000000..5230d43bb --- /dev/null +++ b/v1.43/012s7h980.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/012s7h980", + "name": "Acerinox (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.acerinox.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Acerinox", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0551 8239" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1419453" + ] + }, + "GRID": { + "preferred": "grid.13739.3f", + "all": "grid.13739.3f" + } + } +} \ No newline at end of file diff --git a/v1.43/012zh9h13.json b/v1.43/012zh9h13.json new file mode 100644 index 000000000..ea02d26b0 --- /dev/null +++ b/v1.43/012zh9h13.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/012zh9h13", + "name": "Institute for Research and Technology in Food and Agriculture", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 41.63333, + "lng": 2.16667, + "state": null, + "state_code": null, + "city": "Caldes de Montbui", + "geonames_city": { + "id": 3127035, + "city": "Caldes de Montbui", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.irta.cat" + ], + "aliases": [ + "Institute of Agrifood Research and Technology" + ], + "acronyms": [ + "IRTA", + "IRTA-CERCA" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Institut de Recerca i Tecnologia Agroalimentàries", + "iso639": "ca" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1943 6646", + "all": [ + "0000 0001 1943 6646" + ] + }, + "Wikidata": { + "preferred": "Q9006472", + "all": [ + "Q9006472" + ] + }, + "GRID": { + "preferred": "grid.8581.4", + "all": "grid.8581.4" + } + } +} \ No newline at end of file diff --git a/v1.43/012zs8222.json b/v1.43/012zs8222.json new file mode 100644 index 000000000..5ad20444d --- /dev/null +++ b/v1.43/012zs8222.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/012zs8222", + "name": "University at Albany, State University of New York", + "email_address": null, + "ip_addresses": [], + "established": 1844, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 42.65258, + "lng": -73.75623, + "state": null, + "state_code": null, + "city": "Albany", + "geonames_city": { + "id": 5106834, + "city": "Albany", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Albany", + "id": 5106841, + "ascii_name": "Albany", + "code": "US.NY.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.albany.edu/" + ], + "aliases": [ + "University at Albany", + "University at Albany, SUNY", + "New York State Normal School" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_at_Albany,_SUNY", + "labels": [ + { + "label": "Université d'État de new york à albany", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2151 7947" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100009790" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "472878" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1780816" + ] + }, + "GRID": { + "preferred": "grid.265850.c", + "all": "grid.265850.c" + } + } +} \ No newline at end of file diff --git a/v1.43/013355g38.json b/v1.43/013355g38.json new file mode 100644 index 000000000..8d569a2f6 --- /dev/null +++ b/v1.43/013355g38.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/013355g38", + "name": "Dalle Molle Institute for Artificial Intelligence Research", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 46.01008, + "lng": 8.96004, + "state": null, + "state_code": null, + "city": "Lugano", + "geonames_city": { + "id": 2659836, + "city": "Lugano", + "geonames_admin1": { + "name": "Ticino", + "id": 2658370, + "ascii_name": "Ticino", + "code": "CH.TI" + }, + "geonames_admin2": { + "name": "Lugano", + "id": 6458771, + "ascii_name": "Lugano", + "code": "CH.TI.2105" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "http://www.idsia.ch/" + ], + "aliases": [], + "acronyms": [ + "IDSIA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Dalle_Molle_Institute_for_Artificial_Intelligence_Research", + "labels": [ + { + "label": "Istituto Dalle Molle di Studi sull'Intelligenza Artificiale", + "iso639": "it" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8642 5392" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5211467" + ] + }, + "GRID": { + "preferred": "grid.469945.3", + "all": "grid.469945.3" + } + } +} \ No newline at end of file diff --git a/v1.43/013a79z51.json b/v1.43/013a79z51.json new file mode 100644 index 000000000..36d903fd2 --- /dev/null +++ b/v1.43/013a79z51.json @@ -0,0 +1,85 @@ +{ + "ip_addresses": [], + "aliases": [ + "桂林旅游专科学校" + ], + "acronyms": [ + "GLTU" + ], + "links": [ + "https://www.gltu.edu.cn" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "Guilin Tourism University", + "wikipedia_url": "https://zh.wikipedia.org/wiki/%E6%A1%82%E6%9E%97%E6%97%85%E6%B8%B8%E5%AD%A6%E9%99%A2", + "addresses": [ + { + "lat": 25.28022, + "lng": 110.29639, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Guilin", + "geonames_city": { + "id": 1809498, + "city": "Guilin", + "geonames_admin1": { + "name": "Guangxi", + "ascii_name": "Guangxi", + "id": 1809867, + "code": "CN.16" + }, + "geonames_admin2": { + "name": "Guilin Shi", + "id": 1809492, + "ascii_name": "Guilin Shi", + "code": "CN.16.4503" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q11111580", + "all": [ + "Q11111580" + ] + } + }, + "established": 1985, + "relationships": [], + "email_address": null, + "id": "https://ror.org/013a79z51", + "labels": [ + { + "label": "桂林旅游学院", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/013k5zx16.json b/v1.43/013k5zx16.json new file mode 100644 index 000000000..7e84b4021 --- /dev/null +++ b/v1.43/013k5zx16.json @@ -0,0 +1,73 @@ +{ + "ip_addresses": [], + "aliases": [ + "Ministry for Climate Protection, Agriculture, Rural Areas and the Environment of the State of Mecklenburg-Western Pomerania" + ], + "acronyms": [ + "MKLRU-MV" + ], + "links": [ + "https://www.regierung-mv.de/Landesregierung/lm/" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "Ministerium für Klimaschutz, Landwirtschaft, ländliche Räume und Umwelt des Landes Mecklenburg-Vorpommern", + "wikipedia_url": null, + "addresses": [ + { + "lat": 53.62937, + "lng": 11.41316, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Schwerin", + "geonames_city": { + "id": 2834282, + "city": "Schwerin", + "geonames_admin1": { + "name": "Mecklenburg-Vorpommern", + "ascii_name": "Mecklenburg-Vorpommern", + "id": 2872567, + "code": "DE.12" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.12.00" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/013k5zx16", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/013meh722.json b/v1.43/013meh722.json new file mode 100644 index 000000000..d50a9888d --- /dev/null +++ b/v1.43/013meh722.json @@ -0,0 +1,318 @@ +{ + "id": "https://ror.org/013meh722", + "name": "University of Cambridge", + "email_address": "", + "ip_addresses": [], + "established": 1209, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "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": "UK Web Archive", + "type": "Related", + "id": "https://ror.org/00gnxy738" + }, + { + "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": "Cancer Imaging Centre", + "type": "Child", + "id": "https://ror.org/023a2er20" + } + ], + "addresses": [ + { + "lat": 52.2, + "lng": 0.11667, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 2653941, + "city": "Cambridge", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Cambridgeshire", + "id": 2653940, + "ascii_name": "Cambridgeshire", + "code": "GB.ENG.C3" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.cam.ac.uk/" + ], + "aliases": [ + "Cambridge University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Cambridge", + "labels": [ + { + "label": "Prifysgol Caergrawnt", + "iso639": "cy" + } + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2188 5934" + ] + }, + "FundRef": { + "preferred": "501100000735", + "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" + ] + }, + "HESA": { + "preferred": null, + "all": [ + "0114" + ] + }, + "UCAS": { + "preferred": null, + "all": [ + "C0121" + ] + }, + "UKPRN": { + "preferred": null, + "all": [ + "10007788" + ] + }, + "OrgRef": { + "preferred": "25978572", + "all": [ + "25978572", + "2793352", + "180326", + "327748", + "73199", + "1167853", + "48671", + "201369", + "498109", + "212179", + "151267", + "7317906", + "157283", + "457564", + "31805", + "75963", + "31803", + "498120", + "23747745", + "480151", + "239420", + "26015915" + ] + }, + "Wikidata": { + "preferred": "Q35794", + "all": [ + "Q35794", + "Q181892", + "Q24679079", + "Q10899168" + ] + }, + "GRID": { + "preferred": "grid.5335.0", + "all": "grid.5335.0" + } + } +} \ No newline at end of file diff --git a/v1.43/013tmk464.json b/v1.43/013tmk464.json new file mode 100644 index 000000000..2f3521218 --- /dev/null +++ b/v1.43/013tmk464.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/013tmk464", + "name": "Comprehensive Cancer Center Mainfranken", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "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" + } + ], + "addresses": [ + { + "lat": 49.79391, + "lng": 9.95121, + "state": null, + "state_code": null, + "city": "Würzburg", + "geonames_city": { + "id": 2805615, + "city": "Würzburg", + "geonames_admin1": { + "name": "Bavaria", + "id": 2951839, + "ascii_name": "Bavaria", + "code": "DE.02" + }, + "geonames_admin2": { + "name": "Lower Franconia", + "id": 2819564, + "ascii_name": "Lower Franconia", + "code": "DE.02.096" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.med.uni-wuerzburg.de/ccc/startseite/" + ], + "aliases": [], + "acronyms": [ + "CCCMF" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "preferred": "grid.512555.3", + "all": "grid.512555.3" + } + } +} \ No newline at end of file diff --git a/v1.43/0145w8333.json b/v1.43/0145w8333.json new file mode 100644 index 000000000..c414f0245 --- /dev/null +++ b/v1.43/0145w8333.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/0145w8333", + "name": "Altınbaş University", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.01384, + "lng": 28.94966, + "state": null, + "state_code": null, + "city": "Istanbul", + "geonames_city": { + "id": 745044, + "city": "Istanbul", + "geonames_admin1": { + "name": "Istanbul", + "id": 745042, + "ascii_name": "Istanbul", + "code": "TR.34" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 298795 + } + ], + "links": [ + "https://www.altinbas.edu.tr" + ], + "aliases": [ + "Istanbul Kemerburgaz University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Istanbul_Kemerburgaz_University", + "labels": [ + { + "label": "Altınbaş Üniversitesi", + "iso639": "tr" + } + ], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0399 5023" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "38155052" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2756518" + ] + }, + "GRID": { + "preferred": "grid.449305.f", + "all": "grid.449305.f" + } + } +} \ No newline at end of file diff --git a/v1.43/014fbxn93.json b/v1.43/014fbxn93.json new file mode 100644 index 000000000..2e4e662ff --- /dev/null +++ b/v1.43/014fbxn93.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/014fbxn93", + "name": "Plataforma Internacional para Ciência, Tecnologia e Inovação em Saúde", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Fundação Oswaldo Cruz", + "type": "Related", + "id": "https://ror.org/04jhswv08" + } + ], + "addresses": [ + { + "lat": 40.60188, + "lng": -8.67021, + "state": null, + "state_code": null, + "city": "Ílhavo", + "geonames_city": { + "id": 2738707, + "city": "Ílhavo", + "geonames_admin1": { + "name": "Aveiro", + "id": 2742610, + "ascii_name": "Aveiro", + "code": "PT.02" + }, + "geonames_admin2": { + "name": "Ílhavo Municipality", + "id": 8010422, + "ascii_name": "Ílhavo Municipality", + "code": "PT.02.0110" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2264397 + } + ], + "links": [ + "https://pictis.pt" + ], + "aliases": [ + "International Platform for Science, Technology, and Innovation in Health" + ], + "acronyms": [ + "PICTIS" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q124525831", + "all": [ + "Q124525831" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/014p8mr66.json b/v1.43/014p8mr66.json new file mode 100644 index 000000000..f8a1c0836 --- /dev/null +++ b/v1.43/014p8mr66.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/014p8mr66", + "name": "Institut d'Astrophysique Spatiale", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69981, + "lng": 2.17064, + "state": null, + "state_code": null, + "city": "Bures-sur-Yvette", + "geonames_city": { + "id": 3029522, + "city": "Bures-sur-Yvette", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.ias.u-psud.fr" + ], + "aliases": [], + "acronyms": [ + "IAS" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0614 9404" + ] + }, + "GRID": { + "preferred": "grid.482888.6", + "all": "grid.482888.6" + } + } +} \ No newline at end of file diff --git a/v1.43/014x5gh74.json b/v1.43/014x5gh74.json new file mode 100644 index 000000000..d100023b3 --- /dev/null +++ b/v1.43/014x5gh74.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [ + "Marketing Education Group" + ], + "acronyms": [], + "links": [ + "https://academyofmarketing.org" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Academy of Marketing", + "wikipedia_url": null, + "addresses": [ + { + "lat": 56.00614, + "lng": -4.72648, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Helensburgh", + "geonames_city": { + "id": 2647178, + "city": "Helensburgh", + "geonames_admin1": { + "name": "Scotland", + "ascii_name": "Scotland", + "id": 2638360, + "code": "GB.SCT" + }, + "geonames_admin2": { + "name": "Argyll and Bute", + "id": 6457407, + "ascii_name": "Argyll and Bute", + "code": "GB.SCT.T8" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1087 8640", + "all": [ + "0000 0001 1087 8640" + ] + }, + "FundRef": { + "preferred": "100011405", + "all": [ + "100011405" + ] + } + }, + "established": 1972, + "relationships": [], + "email_address": null, + "id": "https://ror.org/014x5gh74", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/014zrew76.json b/v1.43/014zrew76.json new file mode 100644 index 000000000..45cb8a31f --- /dev/null +++ b/v1.43/014zrew76.json @@ -0,0 +1,245 @@ +{ + "id": "https://ror.org/014zrew76", + "name": "Université d'Orléans", + "email_address": "", + "ip_addresses": [], + "established": 1960, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 47.90289, + "lng": 1.90389, + "state": null, + "state_code": null, + "city": "Orléans", + "geonames_city": { + "id": 2989317, + "city": "Orléans", + "geonames_admin1": { + "name": "Centre-Val de Loire", + "id": 3027939, + "ascii_name": "Centre-Val de Loire", + "code": "FR.24" + }, + "geonames_admin2": { + "name": "Loiret", + "id": 2997857, + "ascii_name": "Loiret", + "code": "FR.24.45" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.univ-orleans.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Orl%C3%A9ans", + "labels": [ + { + "label": "University of Orléans", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0217 6921" + ] + }, + "FundRef": { + "preferred": "501100005696", + "all": [ + "501100005696", + "501100005697" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "6605415" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q13334" + ] + }, + "GRID": { + "preferred": "grid.112485.b", + "all": "grid.112485.b" + } + } +} \ No newline at end of file diff --git a/v1.43/01597g643.json b/v1.43/01597g643.json new file mode 100644 index 000000000..f64a98e5b --- /dev/null +++ b/v1.43/01597g643.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/01597g643", + "name": "State University of New York at Oswego", + "email_address": "", + "ip_addresses": [], + "established": 1861, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.45535, + "lng": -76.5105, + "state": null, + "state_code": null, + "city": "Oswego", + "geonames_city": { + "id": 5130081, + "city": "Oswego", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Oswego", + "id": 5130076, + "ascii_name": "Oswego", + "code": "US.NY.075" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.oswego.edu/" + ], + "aliases": [ + "SUNY Oswego" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/State_University_of_New_York_at_Oswego", + "labels": [ + { + "label": "Universidad Estatal de Nueva York en Oswego", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8999 307X" + ] + }, + "FundRef": { + "preferred": "100010967", + "all": [ + "100010967" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "528002" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7603627" + ] + }, + "GRID": { + "preferred": "grid.264273.6", + "all": "grid.264273.6" + } + } +} \ No newline at end of file diff --git a/v1.43/015pzp858.json b/v1.43/015pzp858.json new file mode 100644 index 000000000..713421370 --- /dev/null +++ b/v1.43/015pzp858.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/015pzp858", + "name": "Government of Ontario", + "email_address": null, + "ip_addresses": [], + "established": 1867, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ontario Science Centre", + "type": "Child", + "id": "https://ror.org/00wnpy880" + }, + { + "label": "Ministry of Education", + "type": "Child", + "id": "https://ror.org/016gy9w96" + } + ], + "addresses": [ + { + "lat": 43.70643, + "lng": -79.39864, + "state": null, + "state_code": null, + "city": "Toronto", + "geonames_city": { + "id": 6167865, + "city": "Toronto", + "geonames_admin1": { + "name": "Ontario", + "id": 6093943, + "ascii_name": "Ontario", + "code": "CA.08" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "https://www.ontario.ca/page/government" + ], + "aliases": [ + "Her Majesty's Government of Ontario" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Gouvernement de l'Ontario", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0404 4473" + ] + }, + "FundRef": { + "preferred": "100013873", + "all": [ + "100013873" + ] + }, + "GRID": { + "preferred": "grid.484190.0", + "all": "grid.484190.0" + } + } +} \ No newline at end of file diff --git a/v1.43/015vt1f29.json b/v1.43/015vt1f29.json new file mode 100644 index 000000000..0782add06 --- /dev/null +++ b/v1.43/015vt1f29.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://www.cegepdrummond.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Cégep de Drummondville", + "wikipedia_url": "https://fr.wikipedia.org/wiki/C%C3%A9gep_de_Drummondville", + "addresses": [ + { + "lat": 45.88336, + "lng": -72.48241, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Drummondville", + "geonames_city": { + "id": 5942845, + "city": "Drummondville", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Centre-du-Québec", + "id": 8449526, + "ascii_name": "Centre-du-Québec", + "code": "CA.10.17" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0746 5060", + "all": [ + "0000 0001 0746 5060" + ] + }, + "Wikidata": { + "preferred": "Q3009995", + "all": [ + "Q3009995" + ] + } + }, + "established": 1968, + "relationships": [], + "email_address": null, + "id": "https://ror.org/015vt1f29", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/016782g02.json b/v1.43/016782g02.json new file mode 100644 index 000000000..94383bcfe --- /dev/null +++ b/v1.43/016782g02.json @@ -0,0 +1,80 @@ +{ + "ip_addresses": [], + "aliases": [ + "ELA ngo", + "ELA vzw" + ], + "acronyms": [ + "ELA" + ], + "links": [ + "https://edulaweu.eu" + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "name": "European Association for Education Law and Policy", + "wikipedia_url": null, + "addresses": [ + { + "lat": 50.93409, + "lng": 4.37213, + "state": null, + "state_code": null, + "country_geonames_id": 2802361, + "city": "Grimbergen", + "geonames_city": { + "id": 2797114, + "city": "Grimbergen", + "geonames_admin1": { + "name": "Flanders", + "ascii_name": "Flanders", + "id": 3337388, + "code": "BE.VLG" + }, + "geonames_admin2": { + "name": "Flemish Brabant Province", + "id": 3333250, + "ascii_name": "Flemish Brabant Province", + "code": "BE.VLG.VBR" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": {}, + "established": 2011, + "relationships": [ + { + "label": "Vrije Universiteit Brussel", + "type": "Related", + "id": "https://ror.org/006e5kg04" + } + ], + "email_address": null, + "id": "https://ror.org/016782g02", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/0168r3w48.json b/v1.43/0168r3w48.json new file mode 100644 index 000000000..9146d0162 --- /dev/null +++ b/v1.43/0168r3w48.json @@ -0,0 +1,193 @@ +{ + "id": "https://ror.org/0168r3w48", + "name": "University of California, San Diego", + "email_address": null, + "ip_addresses": [], + "established": 1960, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "University of California System", + "type": "Parent", + "id": "https://ror.org/00pjdza24" + }, + { + "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": "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": "UCSD-CNRS Joint Research Chemistry Laboratory", + "type": "Child", + "id": "https://ror.org/00t7axd27" + }, + { + "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" + } + ], + "addresses": [ + { + "lat": 32.71571, + "lng": -117.16472, + "state": null, + "state_code": null, + "city": "San Diego", + "geonames_city": { + "id": 5391811, + "city": "San Diego", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "San Diego", + "id": 5391832, + "ascii_name": "San Diego", + "code": "US.CA.073" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://ucsd.edu/" + ], + "aliases": [ + "UC San Diego" + ], + "acronyms": [ + "UCSD" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_California,_San_Diego", + "labels": [ + { + "label": "Universidad de California en San Diego", + "iso639": "es" + }, + { + "label": "Université de Californie à San Diego", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2107 4242" + ] + }, + "FundRef": { + "preferred": "100007911", + "all": [ + "100007911", + "100009507", + "100009508", + "100005918", + "100005548", + "100008673", + "100005594" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "31927" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q622664" + ] + }, + "GRID": { + "preferred": "grid.266100.3", + "all": "grid.266100.3" + } + } +} \ No newline at end of file diff --git a/v1.43/016gb1631.json b/v1.43/016gb1631.json new file mode 100644 index 000000000..bf0c0024b --- /dev/null +++ b/v1.43/016gb1631.json @@ -0,0 +1,131 @@ +{ + "id": "https://ror.org/016gb1631", + "name": "HUN-REN Szegedi Biológiai Kutatóközpont", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 46.253, + "lng": 20.14824, + "state": null, + "state_code": null, + "city": "Szeged", + "geonames_city": { + "id": 715429, + "city": "Szeged", + "geonames_admin1": { + "name": "Csongrád", + "id": 721589, + "ascii_name": "Csongrád", + "code": "HU.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 719819 + } + ], + "links": [ + "https://www.brc.hu" + ], + "aliases": [ + "MTA Szegedi Biológiai Központ", + "Biological Research Centre", + "Szegedi Biológiai Kutatóközpont", + "HUN-REN Biological Research Center" + ], + "acronyms": [ + "BRC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Biological_Research_Centre_(Hungarian_Academy_of_Sciences)", + "labels": [ + { + "label": "Magyar Tudományos Akadémia Szegedi Biológiai Kutatóközpontjának", + "iso639": "hu" + } + ], + "country": { + "country_name": "Hungary", + "country_code": "HU" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2195 9606", + "all": [ + "0000 0001 2195 9606", + "0000 0004 0620 9788" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "30227128" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q4914963" + ] + }, + "GRID": { + "preferred": "grid.418331.c", + "all": "grid.418331.c" + } + } +} \ No newline at end of file diff --git a/v1.43/016gy9w96.json b/v1.43/016gy9w96.json new file mode 100644 index 000000000..c40b52cb2 --- /dev/null +++ b/v1.43/016gy9w96.json @@ -0,0 +1,97 @@ +{ + "ip_addresses": [], + "aliases": [ + "Ministry of Education of New Zealand", + "New Zealand Ministry of Education" + ], + "acronyms": [], + "links": [ + "https://www.education.govt.nz" + ], + "country": { + "country_name": "New Zealand", + "country_code": "NZ" + }, + "name": "Ministry of Education", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Education_%28New_Zealand%29", + "addresses": [ + { + "lat": -41.28664, + "lng": 174.77557, + "state": null, + "state_code": null, + "country_geonames_id": 2186224, + "city": "Wellington", + "geonames_city": { + "id": 2179537, + "city": "Wellington", + "geonames_admin1": { + "name": "Wellington", + "ascii_name": "Wellington", + "id": 2179538, + "code": "NZ.G2" + }, + "geonames_admin2": { + "name": "Wellington City", + "id": 7910072, + "ascii_name": "Wellington City", + "code": "NZ.G2.047" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0727 3536", + "all": [ + "0000 0001 0727 3536" + ] + }, + "Wikidata": { + "preferred": "Q1937182", + "all": [ + "Q1937182" + ] + }, + "FundRef": { + "preferred": "501100009648", + "all": [ + "501100009648" + ] + } + }, + "established": 1989, + "relationships": [ + { + "label": "Government of Ontario", + "type": "Parent", + "id": "https://ror.org/015pzp858" + } + ], + "email_address": null, + "id": "https://ror.org/016gy9w96", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/016k9d838.json b/v1.43/016k9d838.json new file mode 100644 index 000000000..5af78d8e8 --- /dev/null +++ b/v1.43/016k9d838.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/016k9d838", + "name": "Centro Tecnológico de Automoción de Galicia", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.16156, + "lng": -8.6198, + "state": null, + "state_code": null, + "city": "Porriño", + "geonames_city": { + "id": 3113157, + "city": "Porriño", + "geonames_admin1": { + "name": "Galicia", + "id": 3336902, + "ascii_name": "Galicia", + "code": "ES.58" + }, + "geonames_admin2": { + "name": "Pontevedra", + "id": 3113208, + "ascii_name": "Pontevedra", + "code": "ES.58.PO" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://ctag.com" + ], + "aliases": [], + "acronyms": [ + "CTAG" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Automotive Technology Centre of Galicia", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.424847.9", + "all": "grid.424847.9" + } + } +} \ No newline at end of file diff --git a/v1.43/016r2hq43.json b/v1.43/016r2hq43.json new file mode 100644 index 000000000..6a82a2c3e --- /dev/null +++ b/v1.43/016r2hq43.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/016r2hq43", + "name": "Laboratoire de Chimie Physique", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.universite-paris-saclay.fr/institut-de-chimie-physique" + ], + "aliases": [], + "acronyms": [ + "LCP" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0370 3203" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR8000" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30261584" + ] + }, + "GRID": { + "preferred": "grid.462861.f", + "all": "grid.462861.f" + } + } +} \ No newline at end of file diff --git a/v1.43/016rf0n60.json b/v1.43/016rf0n60.json new file mode 100644 index 000000000..dac8e53ff --- /dev/null +++ b/v1.43/016rf0n60.json @@ -0,0 +1,97 @@ +{ + "ip_addresses": [], + "aliases": [ + "Charité Foundation", + "Die Stiftung Charité" + ], + "acronyms": [], + "links": [ + "https://www.stiftung-charite.de" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "Stiftung Charité", + "wikipedia_url": "https://de.wikipedia.org/wiki/Stiftung_Charit%C3%A9", + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "name": "Berlin", + "ascii_name": "Berlin", + "id": 2950157, + "code": "DE.16" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.16.00" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8308 275X", + "all": [ + "0000 0004 8308 275X" + ] + }, + "Wikidata": { + "preferred": "Q21076611", + "all": [ + "Q21076611" + ] + }, + "FundRef": { + "preferred": "501100013865", + "all": [ + "501100013865" + ] + } + }, + "established": 2005, + "relationships": [ + { + "label": "Charité - Universitätsmedizin Berlin", + "type": "Parent", + "id": "https://ror.org/001w7jn25" + } + ], + "email_address": null, + "id": "https://ror.org/016rf0n60", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/016xsfp80.json b/v1.43/016xsfp80.json new file mode 100644 index 000000000..07d09bb0c --- /dev/null +++ b/v1.43/016xsfp80.json @@ -0,0 +1,137 @@ +{ + "id": "https://ror.org/016xsfp80", + "name": "Radboud University Nijmegen", + "email_address": null, + "ip_addresses": [], + "established": 1923, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 51.8425, + "lng": 5.85278, + "state": null, + "state_code": null, + "city": "Nijmegen", + "geonames_city": { + "id": 2750053, + "city": "Nijmegen", + "geonames_admin1": { + "name": "Gelderland", + "id": 2755634, + "ascii_name": "Gelderland", + "code": "NL.03" + }, + "geonames_admin2": { + "name": "Nijmegen Municipality", + "id": 2750052, + "ascii_name": "Nijmegen Municipality", + "code": "NL.03.0268" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2750405 + } + ], + "links": [ + "http://www.ru.nl/english/" + ], + "aliases": [ + "Katholieke Universiteit Nijmegen" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Radboud_University_Nijmegen", + "labels": [ + { + "label": "Radboud Universiteit Nijmegen", + "iso639": "nl" + }, + { + "label": "Université Radboud de Nimègue", + "iso639": "fr" + } + ], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2293 1605" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100001832", + "501100008459" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "956504" + ] + }, + "Wikidata": { + "preferred": "Q632004", + "all": [ + "Q632004", + "Q2525766" + ] + }, + "GRID": { + "preferred": "grid.5590.9", + "all": "grid.5590.9" + } + } +} \ No newline at end of file diff --git a/v1.43/0175hh227.json b/v1.43/0175hh227.json new file mode 100644 index 000000000..75b69f426 --- /dev/null +++ b/v1.43/0175hh227.json @@ -0,0 +1,171 @@ +{ + "id": "https://ror.org/0175hh227", + "name": "Conservatoire National des Arts et Métiers", + "email_address": null, + "ip_addresses": [], + "established": 1794, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.cnam.fr/" + ], + "aliases": [], + "acronyms": [ + "CNAM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Conservatoire_national_des_arts_et_m%C3%A9tiers", + "labels": [ + { + "label": "National Conservatory of Arts and Crafts", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2185 090X" + ] + }, + "FundRef": { + "preferred": "501100013943", + "all": [ + "501100013943" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "434493" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q524289" + ] + }, + "GRID": { + "preferred": "grid.36823.3c", + "all": "grid.36823.3c" + } + } +} \ No newline at end of file diff --git a/v1.43/0177kw895.json b/v1.43/0177kw895.json new file mode 100644 index 000000000..12c755000 --- /dev/null +++ b/v1.43/0177kw895.json @@ -0,0 +1,74 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Beatrice and Samuel A. Seaver Foundation", + "wikipedia_url": null, + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "name": "New York", + "ascii_name": "New York", + "id": 5128638, + "code": "US.NY" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "FundRef": { + "preferred": "100012695", + "all": [ + "100012695" + ] + } + }, + "established": 1986, + "relationships": [], + "email_address": null, + "id": "https://ror.org/0177kw895", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/017d4c820.json b/v1.43/017d4c820.json new file mode 100644 index 000000000..d2d235da9 --- /dev/null +++ b/v1.43/017d4c820.json @@ -0,0 +1,75 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://lundtrust.org.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Lund Trust", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": {}, + "established": null, + "relationships": [ + { + "label": "Arcadia Fund", + "type": "Related", + "id": "https://ror.org/051z6e826" + } + ], + "email_address": null, + "id": "https://ror.org/017d4c820", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/017d8gk22.json b/v1.43/017d8gk22.json new file mode 100644 index 000000000..402bde8c1 --- /dev/null +++ b/v1.43/017d8gk22.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/017d8gk22", + "name": "Morgan State University", + "email_address": null, + "ip_addresses": [], + "established": 1867, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 39.29038, + "lng": -76.61219, + "state": null, + "state_code": null, + "city": "Baltimore", + "geonames_city": { + "id": 4347778, + "city": "Baltimore", + "geonames_admin1": { + "name": "Maryland", + "id": 4361885, + "ascii_name": "Maryland", + "code": "US.MD" + }, + "geonames_admin2": { + "name": "Baltimore", + "id": 4347820, + "ascii_name": "Baltimore", + "code": "US.MD.510" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.morgan.edu/" + ], + "aliases": [], + "acronyms": [ + "MSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Morgan_State_University", + "labels": [ + { + "label": "Universidad Estatal de Morgan", + "iso639": "es" + }, + { + "label": "Université d'État morgan", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2224 4258" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100010065" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "113441" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1054905" + ] + }, + "GRID": { + "preferred": "grid.260238.d", + "all": "grid.260238.d" + } + } +} \ No newline at end of file diff --git a/v1.43/017wrhq72.json b/v1.43/017wrhq72.json new file mode 100644 index 000000000..b90139db0 --- /dev/null +++ b/v1.43/017wrhq72.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/017wrhq72", + "name": "Department of Water", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Department of Water and Environmental Regulation", + "type": "Successor", + "id": "https://ror.org/0508kew31" + } + ], + "addresses": [ + { + "lat": -31.95224, + "lng": 115.8614, + "state": null, + "state_code": null, + "city": "Perth", + "geonames_city": { + "id": 2063523, + "city": "Perth", + "geonames_admin1": { + "name": "Western Australia", + "id": 2058645, + "ascii_name": "Western Australia", + "code": "AU.08" + }, + "geonames_admin2": { + "name": "Perth", + "id": 2063522, + "ascii_name": "Perth", + "code": "AU.08.57080" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "https://www.water.wa.gov.au/" + ], + "aliases": [ + "Department of Water and Environmental Regulation" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "9477251" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5260531" + ] + }, + "GRID": { + "preferred": "grid.1310.3", + "all": "grid.1310.3" + } + } +} \ No newline at end of file diff --git a/v1.43/0187kwz08.json b/v1.43/0187kwz08.json new file mode 100644 index 000000000..94ff7d7ab --- /dev/null +++ b/v1.43/0187kwz08.json @@ -0,0 +1,359 @@ +{ + "id": "https://ror.org/0187kwz08", + "name": "National Institute for Health Research", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.nihr.ac.uk/" + ], + "aliases": [], + "acronyms": [ + "NIHR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/National_Institute_for_Health_Research", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2116 3923" + ] + }, + "FundRef": { + "preferred": "501100000272", + "all": [ + "501100000272", + "501100001921", + "501100000659", + "501100000664", + "501100002001", + "501100001881", + "501100001922", + "501100007602", + "501100009128", + "100018336" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6973576" + ] + }, + "GRID": { + "preferred": "grid.451056.3", + "all": "grid.451056.3" + } + } +} \ No newline at end of file diff --git a/v1.43/018a8yy17.json b/v1.43/018a8yy17.json new file mode 100644 index 000000000..3b6dc498c --- /dev/null +++ b/v1.43/018a8yy17.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/018a8yy17", + "name": "ENN (China)", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "ENN-Tongji Advanced Institute of Clean Energy", + "type": "Child", + "id": "https://ror.org/05pzhab84" + } + ], + "addresses": [ + { + "lat": 39.52079, + "lng": 116.71471, + "state": null, + "state_code": null, + "city": "Langfang", + "geonames_city": { + "id": 1804540, + "city": "Langfang", + "geonames_admin1": { + "name": "Hebei", + "id": 1808773, + "ascii_name": "Hebei", + "code": "CN.10" + }, + "geonames_admin2": { + "name": "Langfang Shi", + "id": 1804539, + "ascii_name": "Langfang Shi", + "code": "CN.10.1310" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "https://www.enn.cn/" + ], + "aliases": [ + "ENN Group Co., Ltd.", + "ENN Group Co.", + "ENN Group" + ], + "acronyms": [ + "ENN" + ], + "status": "active", + "wikipedia_url": "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.", + "labels": [ + { + "label": "新奥集团", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 9291 3447" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q23409786" + ] + }, + "GRID": { + "preferred": "grid.510593.b", + "all": "grid.510593.b" + } + } +} \ No newline at end of file diff --git a/v1.43/018qmvm63.json b/v1.43/018qmvm63.json new file mode 100644 index 000000000..8c2b2612d --- /dev/null +++ b/v1.43/018qmvm63.json @@ -0,0 +1,73 @@ +{ + "ip_addresses": [], + "aliases": [ + "Associação do Instituto Superior Técnico para a Investigação e Desenvolvimento" + ], + "acronyms": [ + "IST-ID" + ], + "links": [ + "https://ist-id.pt" + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "name": "IST-ID - Associação do Instituto Superior Técnico para a Investigação e Desenvolvimento", + "wikipedia_url": null, + "addresses": [ + { + "lat": 38.71667, + "lng": -9.13333, + "state": null, + "state_code": null, + "country_geonames_id": 2264397, + "city": "Lisbon", + "geonames_city": { + "id": 2267057, + "city": "Lisbon", + "geonames_admin1": { + "name": "Lisbon", + "ascii_name": "Lisbon", + "id": 2267056, + "code": "PT.14" + }, + "geonames_admin2": { + "name": "Lisbon", + "id": 6458923, + "ascii_name": "Lisbon", + "code": "PT.14.1106" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/018qmvm63", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/018wp0236.json b/v1.43/018wp0236.json new file mode 100644 index 000000000..92f0908f6 --- /dev/null +++ b/v1.43/018wp0236.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/018wp0236", + "name": "Asahi Kasei (Japan)", + "email_address": null, + "ip_addresses": [], + "established": 1931, + "types": [ + "Company" + ], + "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" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "name": "Tokyo", + "id": 1850144, + "ascii_name": "Tokyo", + "code": "JP.40" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.asahi-kasei.co.jp/asahi/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Asahi_Kasei", + "labels": [ + { + "label": "旭化成", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2225 398X" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100010740" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "4214036" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q720489" + ] + }, + "GRID": { + "preferred": "grid.410859.1", + "all": "grid.410859.1" + } + } +} \ No newline at end of file diff --git a/v1.43/018zj6955.json b/v1.43/018zj6955.json new file mode 100644 index 000000000..5c85c57c4 --- /dev/null +++ b/v1.43/018zj6955.json @@ -0,0 +1,95 @@ +{ + "ip_addresses": [], + "aliases": [ + "Bergen Medical Research Foundation" + ], + "acronyms": [], + "links": [ + "https://mohnfoundation.no" + ], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "name": "Trond Mohn stiftelse", + "wikipedia_url": "https://no.wikipedia.org/wiki/Trond_Mohn_stiftelse", + "addresses": [ + { + "lat": 60.39299, + "lng": 5.32415, + "state": null, + "state_code": null, + "country_geonames_id": 3144096, + "city": "Bergen", + "geonames_city": { + "id": 3161732, + "city": "Bergen", + "geonames_admin1": { + "name": "Vestland", + "ascii_name": "Vestland", + "id": 12110600, + "code": "NO.46" + }, + "geonames_admin2": { + "name": "Bergen", + "id": 3161733, + "ascii_name": "Bergen", + "code": "NO.46.4601" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9225 0401", + "all": [ + "0000 0004 9225 0401" + ] + }, + "Wikidata": { + "preferred": "Q17750234", + "all": [ + "Q17750234" + ] + }, + "FundRef": { + "preferred": "100016190", + "all": [ + "100016190" + ] + } + }, + "established": 2004, + "relationships": [], + "email_address": null, + "id": "https://ror.org/018zj6955", + "labels": [ + { + "label": "Trond Mohn Foundation", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01922h422.json b/v1.43/01922h422.json new file mode 100644 index 000000000..3f5d75a00 --- /dev/null +++ b/v1.43/01922h422.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/01922h422", + "name": "Cégep de Lévis", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 46.80326, + "lng": -71.17793, + "state": null, + "state_code": null, + "city": "Lévis", + "geonames_city": { + "id": 6325521, + "city": "Lévis", + "geonames_admin1": { + "name": "Quebec", + "id": 6115047, + "ascii_name": "Quebec", + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Chaudière-Appalaches", + "id": 6691322, + "ascii_name": "Chaudière-Appalaches", + "code": "CA.10.12" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "https://www.cegeplevis.ca" + ], + "aliases": [ + "Cégep Lévis", + "Cegep Levis Lauzon" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/C%C3%A9gep_de_L%C3%A9vis-Lauzon", + "labels": [ + { + "label": "Collège d'enseignement général et professionnel Levis Lauzon", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8723 7684" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "4487036" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3010001" + ] + }, + "GRID": { + "preferred": "grid.292559.0", + "all": "grid.292559.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..61d12e320 --- /dev/null +++ b/v1.43/0198v2949.json @@ -0,0 +1,124 @@ +{ + "id": "https://ror.org/0198v2949", + "name": "Rio de Janeiro State University", + "email_address": "", + "ip_addresses": [], + "established": 1950, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": -22.90642, + "lng": -43.18223, + "state": null, + "state_code": null, + "city": "Rio de Janeiro", + "geonames_city": { + "id": 3451190, + "city": "Rio de Janeiro", + "geonames_admin1": { + "name": "Rio de Janeiro", + "id": 3451189, + "ascii_name": "Rio de Janeiro", + "code": "BR.21" + }, + "geonames_admin2": { + "name": "Rio de Janeiro", + "id": 6322060, + "ascii_name": "Rio de Janeiro", + "code": "BR.21.3304557" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3469034 + } + ], + "links": [ + "http://www.uerj.br/" + ], + "aliases": [], + "acronyms": [ + "UERJ" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Rio_de_Janeiro_State_University", + "labels": [ + { + "label": "Universidade do Estado do Rio de Janeiro", + "iso639": "pt" + }, + { + "label": "Universidad del Estado del Río de Janeiro", + "iso639": "es" + }, + { + "label": "Université de l'État de rio de janeiro", + "iso639": "fr" + } + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 4687 5267" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100006702" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "11007977" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2840233" + ] + }, + "GRID": { + "preferred": "grid.412211.5", + "all": "grid.412211.5" + } + } +} \ No newline at end of file diff --git a/v1.43/0199hds37.json b/v1.43/0199hds37.json new file mode 100644 index 000000000..505caf70a --- /dev/null +++ b/v1.43/0199hds37.json @@ -0,0 +1,211 @@ +{ + "id": "https://ror.org/0199hds37", + "name": "Université Sorbonne Paris Nord", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.95833, + "lng": 2.34167, + "state": null, + "state_code": null, + "city": "Villetaneuse", + "geonames_city": { + "id": 2968275, + "city": "Villetaneuse", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Seine-Saint-Denis", + "id": 2975246, + "ascii_name": "Seine-Saint-Denis", + "code": "FR.11.93" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.univ-spn.fr" + ], + "aliases": [ + "University of Paris North", + "Paris 13 University", + "University of Sorbonne Paris North", + "Université Paris 13" + ], + "acronyms": [ + "USPN" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Paris_13_University", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2149 6883" + ] + }, + "FundRef": { + "preferred": "501100009506", + "all": [ + "501100009506" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "8892205" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1780212" + ] + }, + "GRID": { + "preferred": "grid.11318.3a", + "all": "grid.11318.3a" + } + } +} \ No newline at end of file diff --git a/v1.43/019g8w217.json b/v1.43/019g8w217.json new file mode 100644 index 000000000..97e47a0f4 --- /dev/null +++ b/v1.43/019g8w217.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [ + "Instituto de Medicina Molecular" + ], + "acronyms": [ + "IMM" + ], + "links": [ + "http://www.imm.fm.ul.pt/web/imm/home" + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "name": "Instituto de Medicina Molecular João Lobo Antunes", + "wikipedia_url": "https://pt.wikipedia.org/wiki/Instituto_de_Medicina_Molecular", + "addresses": [ + { + "lat": 38.71667, + "lng": -9.13333, + "state": null, + "state_code": null, + "country_geonames_id": 2264397, + "city": "Lisbon", + "geonames_city": { + "id": 2267057, + "city": "Lisbon", + "geonames_admin1": { + "name": "Lisbon", + "ascii_name": "Lisbon", + "id": 2267056, + "code": "PT.14" + }, + "geonames_admin2": { + "name": "Lisbon", + "id": 6458923, + "ascii_name": "Lisbon", + "code": "PT.14.1106" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q10302897", + "all": [ + "Q10302897" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "University of Lisbon", + "type": "Parent", + "id": "https://ror.org/01c27hj86" + } + ], + "email_address": null, + "id": "https://ror.org/019g8w217", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/019mh5c80.json b/v1.43/019mh5c80.json new file mode 100644 index 000000000..45b2b19a7 --- /dev/null +++ b/v1.43/019mh5c80.json @@ -0,0 +1,73 @@ +{ + "ip_addresses": [], + "aliases": [ + "Ministry for Science, Energy, Climate Protection and the Environment of the State of Saxony-Anhalt" + ], + "acronyms": [ + "MWU" + ], + "links": [ + "https://mwu.sachsen-anhalt.de" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "Ministerium für Wissenschaft, Energie, Klimaschutz und Umwelt des Landes Sachsen-Anhalt", + "wikipedia_url": null, + "addresses": [ + { + "lat": 52.12773, + "lng": 11.62916, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Magdeburg", + "geonames_city": { + "id": 2874545, + "city": "Magdeburg", + "geonames_admin1": { + "name": "Saxony-Anhalt", + "ascii_name": "Saxony-Anhalt", + "id": 2842565, + "code": "DE.14" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.14.00" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/019mh5c80", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/019rf7x86.json b/v1.43/019rf7x86.json new file mode 100644 index 000000000..15ed87008 --- /dev/null +++ b/v1.43/019rf7x86.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/019rf7x86", + "name": "NIHR Bristol Nutrition Biomedical Research Unit", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 51.45523, + "lng": -2.59665, + "state": null, + "state_code": null, + "city": "Bristol", + "geonames_city": { + "id": 2654675, + "city": "Bristol", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bristol", + "id": 3333134, + "ascii_name": "Bristol", + "code": "GB.ENG.B7" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.uhbristol.nhs.uk/research-innovation/our-research/bristol-nutrition-bru/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "preferred": "grid.454368.8", + "all": "grid.454368.8" + } + } +} \ No newline at end of file diff --git a/v1.43/019tcpt25.json b/v1.43/019tcpt25.json new file mode 100644 index 000000000..f99c5dac6 --- /dev/null +++ b/v1.43/019tcpt25.json @@ -0,0 +1,169 @@ +{ + "id": "https://ror.org/019tcpt25", + "name": "CentraleSupélec", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Mahindra University", + "type": "Related", + "id": "https://ror.org/05751b994" + }, + { + "label": "University of Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + }, + { + "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": "Supélec", + "type": "Predecessor", + "id": "https://ror.org/00n7gwn90" + }, + { + "label": "École Centrale Paris", + "type": "Predecessor", + "id": "https://ror.org/00v0y5771" + }, + { + "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": "Laboratoire de Génie Électrique et Électronique de Paris", + "type": "Child", + "id": "https://ror.org/02xnnng09" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.centralesupelec.fr" + ], + "aliases": [], + "acronyms": [ + "CS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/CentraleSup%C3%A9lec", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 4907 1766" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q19203245" + ] + }, + "GRID": { + "preferred": "grid.494567.d", + "all": "grid.494567.d" + } + } +} \ No newline at end of file diff --git a/v1.43/019vw0b32.json b/v1.43/019vw0b32.json new file mode 100644 index 000000000..4711b0608 --- /dev/null +++ b/v1.43/019vw0b32.json @@ -0,0 +1,76 @@ +{ + "ip_addresses": [], + "aliases": [ + "昌達生化" + ], + "acronyms": [], + "links": [ + "https://www.qps.com" + ], + "country": { + "country_name": "Taiwan", + "country_code": "TW" + }, + "name": "QPS Taiwan (Taiwan)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 25.04776, + "lng": 121.53185, + "state": null, + "state_code": null, + "country_geonames_id": 1668284, + "city": "Taipei", + "geonames_city": { + "id": 1668341, + "city": "Taipei", + "geonames_admin1": { + "name": "Taiwan", + "ascii_name": "Taiwan", + "id": 7280291, + "code": "TW.04" + }, + "geonames_admin2": { + "name": "Taipei City", + "id": 1668338, + "ascii_name": "Taipei City", + "code": "TW.04.TPE" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/019vw0b32", + "labels": [ + { + "label": "QPS Taiwan", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01a2wsa50.json b/v1.43/01a2wsa50.json new file mode 100644 index 000000000..569f9fcee --- /dev/null +++ b/v1.43/01a2wsa50.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/01a2wsa50", + "name": "Biogipuzkoa Health Research Institute", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.31283, + "lng": -1.97499, + "state": null, + "state_code": null, + "city": "Donostia / San Sebastian", + "geonames_city": { + "id": 3110044, + "city": "Donostia / San Sebastian", + "geonames_admin1": { + "name": "Basque Country", + "id": 3336903, + "ascii_name": "Basque Country", + "code": "ES.59" + }, + "geonames_admin2": { + "name": "Gipuzkoa", + "id": 3120935, + "ascii_name": "Gipuzkoa", + "code": "ES.59.SS" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.biodonostia.org" + ], + "aliases": [ + "Biogipuzkoa HRI", + "Biodonostia Health Research Institute", + "Biodonostia" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.432380.e", + "all": "grid.432380.e" + }, + "Wikidata": { + "preferred": "Q12255260", + "all": [ + "Q12255260" + ] + }, + "ISNI": { + "preferred": "0000 0004 6416 6288", + "all": [ + "0000 0004 6416 6288" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/01achz565.json b/v1.43/01achz565.json new file mode 100644 index 000000000..3a8db3788 --- /dev/null +++ b/v1.43/01achz565.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "Windey Energy Technology Group Co., Ltd.", + "Windey Energy Technology Group Co.", + "Windey Energy Technology Group" + ], + "acronyms": [], + "links": [ + "https://windeyenergy.com" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "Windey Energy Technology Group Co., Ltd. (China)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 29.16667, + "lng": 120, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Zhejiang", + "geonames_city": { + "id": 1784764, + "city": "Zhejiang", + "geonames_admin1": { + "name": "Zhejiang", + "ascii_name": "Zhejiang", + "id": 1784764, + "code": "CN.02" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01achz565", + "labels": [ + { + "label": "浙江运达风电股份有限公司", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01an7q238.json b/v1.43/01an7q238.json new file mode 100644 index 000000000..318ea96af --- /dev/null +++ b/v1.43/01an7q238.json @@ -0,0 +1,207 @@ +{ + "id": "https://ror.org/01an7q238", + "name": "University of California, Berkeley", + "email_address": null, + "ip_addresses": [], + "established": 1868, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "University of California System", + "type": "Parent", + "id": "https://ror.org/00pjdza24" + }, + { + "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": "Hubbard Brook Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/00mkh7345" + }, + { + "label": "CZ Biohub", + "type": "Child", + "id": "https://ror.org/00knt4f32" + }, + { + "label": "QB3", + "type": "Child", + "id": "https://ror.org/04n1n3n22" + }, + { + "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" + } + ], + "addresses": [ + { + "lat": 37.87159, + "lng": -122.27275, + "state": null, + "state_code": null, + "city": "Berkeley", + "geonames_city": { + "id": 5327684, + "city": "Berkeley", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Alameda", + "id": 5322745, + "ascii_name": "Alameda", + "code": "US.CA.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.berkeley.edu" + ], + "aliases": [ + "UC Berkeley", + "University of California at Berkeley", + "Cal Berkeley" + ], + "acronyms": [ + "UCB" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_California,_Berkeley", + "labels": [ + { + "label": "Université de Californie à Berkeley", + "iso639": "fr" + }, + { + "label": "Universidad de California en Berkeley", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2181 7878" + ] + }, + "FundRef": { + "preferred": "100006978", + "all": [ + "100006978", + "100010501", + "100009773", + "100009999", + "100009998", + "100007502", + "100009220", + "100008934", + "100009521", + "100009151", + "100011283", + "100010556", + "100007247", + "100011068", + "100010948" + ] + }, + "OrgRef": { + "preferred": "31922", + "all": [ + "31922", + "6009056", + "4683165", + "4342409", + "25714291" + ] + }, + "Wikidata": { + "preferred": "Q168756", + "all": [ + "Q168756" + ] + }, + "GRID": { + "preferred": "grid.47840.3f", + "all": "grid.47840.3f" + } + } +} \ No newline at end of file diff --git a/v1.43/01aqw9j77.json b/v1.43/01aqw9j77.json new file mode 100644 index 000000000..4e077ac7c --- /dev/null +++ b/v1.43/01aqw9j77.json @@ -0,0 +1,80 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Hintze Family Charitable Foundation", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0408 3253", + "all": [ + "0000 0004 0408 3253" + ] + }, + "FundRef": { + "preferred": "100018158", + "all": [ + "100018158" + ] + } + }, + "established": 2003, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01aqw9j77", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01ar0xf40.json b/v1.43/01ar0xf40.json new file mode 100644 index 000000000..0480a669b --- /dev/null +++ b/v1.43/01ar0xf40.json @@ -0,0 +1,76 @@ +{ + "ip_addresses": [], + "aliases": [ + "SINOPEC Research Institute of Safety Engineering Co." + ], + "acronyms": [], + "links": [ + "http://rise.sinopec.com/rise/" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "SINOPEC Research Institute of Safety Engineering Co., Ltd.", + "wikipedia_url": null, + "addresses": [ + { + "lat": 36.06488, + "lng": 120.38042, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Qingdao", + "geonames_city": { + "id": 1797929, + "city": "Qingdao", + "geonames_admin1": { + "name": "Shandong", + "ascii_name": "Shandong", + "id": 1796328, + "code": "CN.25" + }, + "geonames_admin2": { + "name": "Qingdao Shi", + "id": 1797926, + "ascii_name": "Qingdao Shi", + "code": "CN.25.3702" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01ar0xf40", + "labels": [ + { + "label": "中石化安全工程研究院有限公司", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01b5rtm37.json b/v1.43/01b5rtm37.json new file mode 100644 index 000000000..9e4a5b948 --- /dev/null +++ b/v1.43/01b5rtm37.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/01b5rtm37", + "name": "Genome Integrity, RNA and Cancer", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://institut-curie.org/unit/umr3348" + ], + "aliases": [ + "Genotoxic Stress and Cancer", + "Stress génotoxique et cancer" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Intégrité du génome, ARN et cancer", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "CNRS": { + "preferred": null, + "all": [ + "UMR3348" + ] + }, + "GRID": { + "preferred": "grid.493838.d", + "all": "grid.493838.d" + } + } +} \ No newline at end of file diff --git a/v1.43/01bdx3k27.json b/v1.43/01bdx3k27.json new file mode 100644 index 000000000..f43c7c499 --- /dev/null +++ b/v1.43/01bdx3k27.json @@ -0,0 +1,83 @@ +{ + "ip_addresses": [], + "aliases": [ + "Augmanity Nano" + ], + "acronyms": [], + "links": [ + "https://augm.com" + ], + "country": { + "country_name": "Israel", + "country_code": "IL" + }, + "name": "Augmanity Nano Ltd. (Israel)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 31.92933, + "lng": 34.79868, + "state": null, + "state_code": null, + "country_geonames_id": 294640, + "city": "Ness Ziona", + "geonames_city": { + "id": 294074, + "city": "Ness Ziona", + "geonames_admin1": { + "name": "Central District", + "ascii_name": "Central District", + "id": 294904, + "code": "IL.02" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0680 6846", + "all": [ + "0000 0005 0680 6846" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01bdx3k27", + "labels": [ + { + "label": "Augmanity Nano Ltd.", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01bg62x04.json b/v1.43/01bg62x04.json new file mode 100644 index 000000000..75644c58a --- /dev/null +++ b/v1.43/01bg62x04.json @@ -0,0 +1,184 @@ +{ + "id": "https://ror.org/01bg62x04", + "name": "Government of Catalonia", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://catalangovernment.eu" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Generalitat_de_Catalunya", + "labels": [ + { + "label": "Generalidad de Cataluña", + "iso639": "es" + }, + { + "label": "Generalitat de Catalunya", + "iso639": "ca" + }, + { + "label": "Kataluniako Generalitatea", + "iso639": "eu" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2331 7762" + ] + }, + "FundRef": { + "preferred": "501100002809", + "all": [ + "501100002809", + "501100002943" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "294461" + ] + }, + "Wikidata": { + "preferred": "Q8022", + "all": [ + "Q8022", + "Q3112544" + ] + }, + "GRID": { + "preferred": "grid.454735.4", + "all": "grid.454735.4" + } + } +} \ No newline at end of file diff --git a/v1.43/01bj3aw27.json b/v1.43/01bj3aw27.json new file mode 100644 index 000000000..881b61a60 --- /dev/null +++ b/v1.43/01bj3aw27.json @@ -0,0 +1,344 @@ +{ + "id": "https://ror.org/01bj3aw27", + "name": "United States Department of Energy", + "email_address": "", + "ip_addresses": [], + "established": 1977, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "name": "Washington, D.C.", + "id": 4138106, + "ascii_name": "Washington, D.C.", + "code": "US.DC" + }, + "geonames_admin2": { + "name": "Washington", + "id": 4140987, + "ascii_name": "Washington", + "code": "US.DC.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": "38.886944, -77.026111", + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.energy.gov" + ], + "aliases": [ + "U.S. Department of Energy" + ], + "acronyms": [ + "DOE" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/United_States_Department_of_Energy", + "labels": [ + { + "label": "Departamento de Energía de los Estados Unidos", + "iso639": "es" + }, + { + "label": "Département de l'Énergie des États-unis", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2342 3717" + ] + }, + "FundRef": { + "preferred": "100000015", + "all": [ + "100000015", + "100006157" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "62866" + ] + }, + "Wikidata": { + "preferred": "Q217810", + "all": [ + "Q217810", + "Q6422983" + ] + }, + "GRID": { + "preferred": "grid.85084.31", + "all": "grid.85084.31" + } + } +} \ No newline at end of file diff --git a/v1.43/01bkbaq61.json b/v1.43/01bkbaq61.json new file mode 100644 index 000000000..ac53018ca --- /dev/null +++ b/v1.43/01bkbaq61.json @@ -0,0 +1,322 @@ +{ + "id": "https://ror.org/01bkbaq61", + "name": "CERCA Institution", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Centre for Demographic Studies", + "type": "Child", + "id": "https://ror.org/02dm87055" + }, + { + "label": "International Center for Numerical Methods in Engineering", + "type": "Child", + "id": "https://ror.org/03ej8a714" + }, + { + "label": "Center for Research in Agricultural Genomics", + "type": "Child", + "id": "https://ror.org/04tz2h245" + }, + { + "label": "Centre for Research on Ecology and Forestry Applications", + "type": "Child", + "id": "https://ror.org/03abrgd14" + }, + { + "label": "Centre de Recerca en Economia Internacional", + "type": "Child", + "id": "https://ror.org/0241avf06" + }, + { + "label": "Centre for Genomic Regulation", + "type": "Child", + "id": "https://ror.org/03wyzt892" + }, + { + "label": "Centre de Recerca Matemàtica", + "type": "Child", + "id": "https://ror.org/020s51w82" + }, + { + "label": "Centre Tecnològic Forestal de Catalunya", + "type": "Child", + "id": "https://ror.org/02tt2zf29" + }, + { + "label": "Centre Tecnologic de Telecomunicacions de Catalunya", + "type": "Child", + "id": "https://ror.org/001cwea56" + }, + { + "label": "i2CAT", + "type": "Child", + "id": "https://ror.org/02rkks755" + }, + { + "label": "Institute of Research and Innovation Parc Tauli", + "type": "Child", + "id": "https://ror.org/038c0gc18" + }, + { + "label": "Institute for Bioengineering of Catalonia", + "type": "Child", + "id": "https://ror.org/056h71x09" + }, + { + "label": "Institut Barcelona d'Estudis Internacionals", + "type": "Child", + "id": "https://ror.org/05rke5d69" + }, + { + "label": "Institut Català d'Arqueologia Clàssica", + "type": "Child", + "id": "https://ror.org/04nwrc387" + }, + { + "label": "Institute of Photonic Sciences", + "type": "Child", + "id": "https://ror.org/03g5ew477" + }, + { + "label": "Institut Català d'Investigació Química", + "type": "Child", + "id": "https://ror.org/013j2zh96" + }, + { + "label": "Institut Català de Nanociència i Nanotecnologia", + "type": "Child", + "id": "https://ror.org/00k1qja49" + }, + { + "label": "Institut Català de Paleontologia Miquel Crusafont", + "type": "Child", + "id": "https://ror.org/04qeh2h86" + }, + { + "label": "Catalan Institute for Water Research", + "type": "Child", + "id": "https://ror.org/04zfaj906" + }, + { + "label": "Consorci Institut D'Investigacions Biomediques August Pi I Sunyer", + "type": "Child", + "id": "https://ror.org/054vayn55" + }, + { + "label": "Institut d'Investigació Biomédica de Bellvitge", + "type": "Child", + "id": "https://ror.org/0008xqs48" + }, + { + "label": "Institut d'Investigació Biomèdica de Girona", + "type": "Child", + "id": "https://ror.org/020yb3m85" + }, + { + "label": "Institut d'Estudis Espacials de Catalunya", + "type": "Child", + "id": "https://ror.org/00k6njn28" + }, + { + "label": "Institute for High Energy Physics", + "type": "Child", + "id": "https://ror.org/01sdrjx85" + }, + { + "label": "Institut d'Investigació en Ciències de la Salut Germans Trias i Pujol", + "type": "Child", + "id": "https://ror.org/03bzdww12" + }, + { + "label": "Institut d'Investigació Sanitària Pere Virgili", + "type": "Child", + "id": "https://ror.org/01av3a615" + }, + { + "label": "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" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://cerca.cat" + ], + "aliases": [ + "Institución CERCA" + ], + "acronyms": [ + "CERCA", + "I-CERCA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/CERCA_Institute", + "labels": [ + { + "label": "Institució CERCA - Centres de Recerca de Catalunya", + "iso639": "ca" + }, + { + "label": "Fundació Institució dels Centres de Recerca de Catalunya", + "iso639": "ca" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "FundRef": { + "preferred": "100015439", + "all": [ + "100015439" + ] + }, + "Wikidata": { + "preferred": "Q30100395", + "all": [ + "Q30100395" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/01bpa4157.json b/v1.43/01bpa4157.json new file mode 100644 index 000000000..69f4b7c0f --- /dev/null +++ b/v1.43/01bpa4157.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/01bpa4157", + "name": "Institut Català de Ciències del Clima", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.ic3.cat/" + ], + "aliases": [], + "acronyms": [ + "IC3" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "Catalan Institute of Climate Sciences", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1763 0121" + ] + }, + "GRID": { + "preferred": "grid.424730.6", + "all": "grid.424730.6" + } + } +} \ No newline at end of file diff --git a/v1.43/01bvxzn29.json b/v1.43/01bvxzn29.json new file mode 100644 index 000000000..5a72cc7f7 --- /dev/null +++ b/v1.43/01bvxzn29.json @@ -0,0 +1,121 @@ +{ + "id": "https://ror.org/01bvxzn29", + "name": "Ministry of Defence", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Government of the United Kingdom", + "type": "Parent", + "id": "https://ror.org/05wnh3t63" + }, + { + "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": "Defence and Security Accelerator", + "type": "Child", + "id": "https://ror.org/05wnp0977" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.gov.uk/government/organisations/ministry-of-defence" + ], + "aliases": [], + "acronyms": [ + "MoD" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Ministry_of_Defence_(United_Kingdom)", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "preferred": "100009941", + "all": [ + "100009941" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "203793" + ] + }, + "Wikidata": { + "preferred": "Q1143261", + "all": [ + "Q1143261", + "Q5471272" + ] + }, + "GRID": { + "preferred": "grid.48862.30", + "all": "grid.48862.30" + } + } +} \ No newline at end of file diff --git a/v1.43/01c27hj86.json b/v1.43/01c27hj86.json new file mode 100644 index 000000000..c8cca4f47 --- /dev/null +++ b/v1.43/01c27hj86.json @@ -0,0 +1,163 @@ +{ + "id": "https://ror.org/01c27hj86", + "name": "University of Lisbon", + "email_address": "", + "ip_addresses": [], + "established": 1911, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "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": "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" + } + ], + "addresses": [ + { + "lat": 38.71667, + "lng": -9.13333, + "state": null, + "state_code": null, + "city": "Lisbon", + "geonames_city": { + "id": 2267057, + "city": "Lisbon", + "geonames_admin1": { + "name": "Lisbon", + "id": 2267056, + "ascii_name": "Lisbon", + "code": "PT.14" + }, + "geonames_admin2": { + "name": "Lisbon", + "id": 6458923, + "ascii_name": "Lisbon", + "code": "PT.14.1106" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2264397 + } + ], + "links": [ + "http://www.ulisboa.pt/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Lisbon", + "labels": [ + { + "label": "Universidade de Lisboa", + "iso639": "pt" + } + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2181 4263" + ] + }, + "FundRef": { + "preferred": "501100005765", + "all": [ + "501100005765", + "501100007225", + "501100006097", + "501100006201" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "585749" + ] + }, + "Wikidata": { + "preferred": "Q1122926", + "all": [ + "Q1122926", + "Q1636837" + ] + }, + "GRID": { + "preferred": "grid.9983.b", + "all": "grid.9983.b" + } + } +} \ No newline at end of file diff --git a/v1.43/01c3rrh15.json b/v1.43/01c3rrh15.json new file mode 100644 index 000000000..c77cb9ee7 --- /dev/null +++ b/v1.43/01c3rrh15.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/01c3rrh15", + "name": "Elettra-Sincrotrone Trieste S.C.p.A.", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 45.64953, + "lng": 13.77678, + "state": null, + "state_code": null, + "city": "Trieste", + "geonames_city": { + "id": 3165185, + "city": "Trieste", + "geonames_admin1": { + "name": "Friuli Venezia Giulia", + "id": 3176525, + "ascii_name": "Friuli Venezia Giulia", + "code": "IT.06" + }, + "geonames_admin2": { + "name": "Trieste", + "id": 3165184, + "ascii_name": "Trieste", + "code": "IT.06.TS" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "https://www.elettra.eu" + ], + "aliases": [ + "Elettra", + "Elettra Sincrotrone Trieste" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ELETTRA", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1759 508X" + ] + }, + "FundRef": { + "preferred": "100014806", + "all": [ + "100014806" + ] + }, + "Wikidata": { + "preferred": "Q3717376", + "all": [ + "Q3717376", + "Q47517188" + ] + }, + "GRID": { + "preferred": "grid.5942.a", + "all": "grid.5942.a" + } + } +} \ No newline at end of file diff --git a/v1.43/01cdrde68.json b/v1.43/01cdrde68.json new file mode 100644 index 000000000..96624a630 --- /dev/null +++ b/v1.43/01cdrde68.json @@ -0,0 +1,183 @@ +{ + "id": "https://ror.org/01cdrde68", + "name": "United Nations University", + "email_address": "", + "ip_addresses": [], + "established": 1973, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "name": "Tokyo", + "id": 1850144, + "ascii_name": "Tokyo", + "code": "JP.40" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://unu.edu/" + ], + "aliases": [ + "Kokusairengōdaigaku" + ], + "acronyms": [ + "UNU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/United_Nations_University", + "labels": [ + { + "label": "国際連合大学", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1931 1704" + ] + }, + "FundRef": { + "preferred": "100012119", + "all": [ + "100012119" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "31904" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q492442" + ] + }, + "GRID": { + "preferred": "grid.410557.2", + "all": "grid.410557.2" + } + } +} \ No newline at end of file diff --git a/v1.43/01cjash87.json b/v1.43/01cjash87.json new file mode 100644 index 000000000..daa9c7dbe --- /dev/null +++ b/v1.43/01cjash87.json @@ -0,0 +1,147 @@ +{ + "id": "https://ror.org/01cjash87", + "name": "Astellas Pharma (Japan)", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Company" + ], + "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" + } + ], + "addresses": [ + { + "lat": 35.6895, + "lng": 139.69171, + "state": null, + "state_code": null, + "city": "Tokyo", + "geonames_city": { + "id": 1850147, + "city": "Tokyo", + "geonames_admin1": { + "name": "Tokyo", + "id": 1850144, + "ascii_name": "Tokyo", + "code": "JP.40" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "http://www.astellas.com/en/index.html" + ], + "aliases": [ + "Asuterasu Seiyaku Kabushiki-gaisha" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Astellas_Pharma", + "labels": [ + { + "label": "アステラス製薬株式会社", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 1758 8699", + "all": [ + "0000 0004 1758 8699" + ] + }, + "FundRef": { + "preferred": "501100004948", + "all": [ + "501100004948", + "501100007263" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "4513339" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q528842" + ] + }, + "GRID": { + "preferred": "grid.418042.b", + "all": "grid.418042.b" + } + } +} \ No newline at end of file diff --git a/v1.43/01cjqyj20.json b/v1.43/01cjqyj20.json new file mode 100644 index 000000000..ba7a16b74 --- /dev/null +++ b/v1.43/01cjqyj20.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/01cjqyj20", + "name": "Institut Agama Islam Negeri Curup", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -3.4703, + "lng": 102.5207, + "state": null, + "state_code": null, + "city": "Curup", + "geonames_city": { + "id": 1645875, + "city": "Curup", + "geonames_admin1": { + "name": "Bengkulu", + "id": 1649147, + "ascii_name": "Bengkulu", + "code": "ID.03" + }, + "geonames_admin2": { + "name": "Rejang Lebong Regency", + "id": 1629764, + "ascii_name": "Rejang Lebong Regency", + "code": "ID.03.1702" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1643084 + } + ], + "links": [ + "https://iaincurup.ac.id" + ], + "aliases": [ + "IAIN Curup", + "Curup State Islamic Religious Institute" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q109912911", + "all": [ + "Q109912911" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/01cmdgj85.json b/v1.43/01cmdgj85.json new file mode 100644 index 000000000..2c7bc7cc2 --- /dev/null +++ b/v1.43/01cmdgj85.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01cmdgj85", + "name": "SADAPT Science Action Développement - Activités Produits Territoires", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "AgroParisTech", + "type": "Parent", + "id": "https://ror.org/02kbmgc12" + }, + { + "label": "University of Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www6.versailles-grignon.inrae.fr/sadapt" + ], + "aliases": [ + "Sciences pour l'Action et le Développement : Activités, Produits, Territoires" + ], + "acronyms": [ + "SAD-APT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q51780480", + "all": [ + "Q51780480" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/01df3an44.json b/v1.43/01df3an44.json new file mode 100644 index 000000000..9b05cdbfb --- /dev/null +++ b/v1.43/01df3an44.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/01df3an44", + "name": "Genertec Shenyang Machine Tool Co., Ltd. (China)", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.79222, + "lng": 123.43278, + "state": null, + "state_code": null, + "city": "Shenyang", + "geonames_city": { + "id": 2034937, + "city": "Shenyang", + "geonames_admin1": { + "name": "Liaoning", + "id": 2036115, + "ascii_name": "Liaoning", + "code": "CN.19" + }, + "geonames_admin2": { + "name": "Shenyang Shi", + "id": 2034935, + "ascii_name": "Shenyang Shi", + "code": "CN.19.2101" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "http://www.smtcl.com/" + ], + "aliases": [ + "Genertec Shenyang Machine Tool Co., Ltd.", + "Shenyang Machine Tool Co., Ltd.", + "Genertec Shenyang Machine Tool Co.", + "Shenyang Machine Tool Co.", + "沈阳机床股份有限公司保" + ], + "acronyms": [ + "SMTCL" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "通用技术沈阳机床股份有限公司官网", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "GRID": { + "preferred": "grid.495835.6", + "all": "grid.495835.6" + }, + "Wikidata": { + "preferred": "Q11138978", + "all": [ + "Q11138978" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/01dpyn972.json b/v1.43/01dpyn972.json new file mode 100644 index 000000000..a65a98e9a --- /dev/null +++ b/v1.43/01dpyn972.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/01dpyn972", + "name": "Institute of Oncology Research", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Università della Svizzera italiana", + "type": "Parent", + "id": "https://ror.org/03c4atk17" + } + ], + "addresses": [ + { + "lat": 46.19278, + "lng": 9.01703, + "state": null, + "state_code": null, + "city": "Bellinzona", + "geonames_city": { + "id": 2661567, + "city": "Bellinzona", + "geonames_admin1": { + "name": "Ticino", + "id": 2658370, + "ascii_name": "Ticino", + "code": "CH.TI" + }, + "geonames_admin2": { + "name": "Bellinzona", + "id": 6458870, + "ascii_name": "Bellinzona", + "code": "CH.TI.2101" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "http://ior.iosi.ch/site/" + ], + "aliases": [], + "acronyms": [ + "IOR" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "GRID": { + "preferred": "grid.419922.5", + "all": "grid.419922.5" + } + } +} \ No newline at end of file diff --git a/v1.43/01ed4t417.json b/v1.43/01ed4t417.json new file mode 100644 index 000000000..1f2516fbf --- /dev/null +++ b/v1.43/01ed4t417.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/01ed4t417", + "name": "Centre de recherche en Epidémiologie et Santé des Populations", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.7939, + "lng": 2.35992, + "state": null, + "state_code": null, + "city": "Villejuif", + "geonames_city": { + "id": 2968705, + "city": "Villejuif", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Val-de-Marne", + "id": 2971090, + "ascii_name": "Val-de-Marne", + "code": "FR.11.94" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://cesp.inserm.fr" + ], + "aliases": [], + "acronyms": [ + "CESP" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Centre for Epidemiology and Population Health", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0638 6872" + ] + }, + "Wikidata": { + "preferred": "Q30262232", + "all": [ + "Q30262232" + ] + }, + "GRID": { + "preferred": "grid.463845.8", + "all": "grid.463845.8" + } + } +} \ No newline at end of file diff --git a/v1.43/01eef7f80.json b/v1.43/01eef7f80.json new file mode 100644 index 000000000..3b85e0b21 --- /dev/null +++ b/v1.43/01eef7f80.json @@ -0,0 +1,80 @@ +{ + "ip_addresses": [], + "aliases": [ + "Scapa Group", + "Scapa Group Ltd.", + "Scapa Group Limited" + ], + "acronyms": [], + "links": [ + "https://www.scapa.com" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Scapa Group (United Kingdom)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 53.48876, + "lng": -2.0989, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Ashton-under-Lyne", + "geonames_city": { + "id": 2656915, + "city": "Ashton-under-Lyne", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Tameside", + "id": 3333208, + "ascii_name": "Tameside", + "code": "GB.ENG.O1" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7473 3848", + "all": [ + "0000 0004 7473 3848" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01eef7f80", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01et6g203.json b/v1.43/01et6g203.json new file mode 100644 index 000000000..b811965fd --- /dev/null +++ b/v1.43/01et6g203.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/01et6g203", + "name": "Hypertension pulmonaire : physiopathologie et innovation thérapeutique", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.78889, + "lng": 2.27078, + "state": null, + "state_code": null, + "city": "Le Plessis-Robinson", + "geonames_city": { + "id": 3002650, + "city": "Le Plessis-Robinson", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Hauts-de-Seine", + "id": 3013657, + "ascii_name": "Hauts-de-Seine", + "code": "FR.11.92" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.u999.universite-paris-saclay.fr" + ], + "aliases": [ + "Pathophysiology and Novel Therapies", + "Physiopathologie et Innovation Thérapeutique" + ], + "acronyms": [ + "PAH" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Pulmonary Hypertension: Pathophysiology and Novel Therapies", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "preferred": "grid.462435.2", + "all": "grid.462435.2" + } + } +} \ No newline at end of file diff --git a/v1.43/01f7a6m90.json b/v1.43/01f7a6m90.json new file mode 100644 index 000000000..8a52e1c77 --- /dev/null +++ b/v1.43/01f7a6m90.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/01f7a6m90", + "name": "Instituto Tecnológico Agrario de Castilla y León", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.60003, + "lng": -5.57032, + "state": null, + "state_code": null, + "city": "León", + "geonames_city": { + "id": 3118532, + "city": "León", + "geonames_admin1": { + "name": "Castille and León", + "id": 3336900, + "ascii_name": "Castille and León", + "code": "ES.55" + }, + "geonames_admin2": { + "name": "Leon", + "id": 3118528, + "ascii_name": "Leon", + "code": "ES.55.LE" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.itacyl.es" + ], + "aliases": [], + "acronyms": [ + "ITACyL" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0639 4661" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30284835" + ] + }, + "GRID": { + "preferred": "grid.425226.5", + "all": "grid.425226.5" + } + } +} \ No newline at end of file diff --git a/v1.43/01f7saf07.json b/v1.43/01f7saf07.json new file mode 100644 index 000000000..469684bd8 --- /dev/null +++ b/v1.43/01f7saf07.json @@ -0,0 +1,90 @@ +{ + "ip_addresses": [], + "aliases": [ + "Medtronic Communities Foundation" + ], + "acronyms": [], + "links": [ + "https://foundation.medtronic.com" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Medtronic Foundation", + "wikipedia_url": null, + "addresses": [ + { + "lat": 44.97997, + "lng": -93.26384, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Minneapolis", + "geonames_city": { + "id": 5037649, + "city": "Minneapolis", + "geonames_admin1": { + "name": "Minnesota", + "ascii_name": "Minnesota", + "id": 5037779, + "code": "US.MN" + }, + "geonames_admin2": { + "name": "Hennepin", + "id": 5029877, + "ascii_name": "Hennepin", + "code": "US.MN.053" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 1260 4722", + "all": [ + "0000 0005 1260 4722" + ] + }, + "FundRef": { + "preferred": "100016303", + "all": [ + "100016303" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Medtronic (United States)", + "type": "Parent", + "id": "https://ror.org/00grd1h17" + } + ], + "email_address": null, + "id": "https://ror.org/01f7saf07", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01f80g185.json b/v1.43/01f80g185.json new file mode 100644 index 000000000..2f4e71496 --- /dev/null +++ b/v1.43/01f80g185.json @@ -0,0 +1,159 @@ +{ + "id": "https://ror.org/01f80g185", + "name": "World Health Organization", + "email_address": "", + "ip_addresses": [], + "established": 1948, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Unitaid", + "type": "Related", + "id": "https://ror.org/05t99je22" + }, + { + "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": "Special Programme for Research and Training in Tropical Diseases", + "type": "Child", + "id": "https://ror.org/046j7pv84" + } + ], + "addresses": [ + { + "lat": 46.20222, + "lng": 6.14569, + "state": null, + "state_code": null, + "city": "Geneva", + "geonames_city": { + "id": 2660646, + "city": "Geneva", + "geonames_admin1": { + "name": "Geneva", + "id": 2660645, + "ascii_name": "Geneva", + "code": "CH.GE" + }, + "geonames_admin2": { + "name": "Geneva", + "id": 6458783, + "ascii_name": "Geneva", + "code": "CH.GE.2500" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "http://www.who.int/" + ], + "aliases": [], + "acronyms": [ + "WHO" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/World_Health_Organization", + "labels": [ + { + "label": "Organizzazione Mondiale della Sanità", + "iso639": "it" + }, + { + "label": "Weltgesundheitsorganisation", + "iso639": "de" + }, + { + "label": "Organisation Mondiale de la Santé", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2163 3745" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100004423" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "33583" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7817" + ] + }, + "GRID": { + "preferred": "grid.3575.4", + "all": "grid.3575.4" + } + } +} \ No newline at end of file diff --git a/v1.43/01fftxe08.json b/v1.43/01fftxe08.json new file mode 100644 index 000000000..8f4e06c46 --- /dev/null +++ b/v1.43/01fftxe08.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/01fftxe08", + "name": "Institute of Integrative Biology of the Cell", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.i2bc.paris-saclay.fr" + ], + "aliases": [ + "I2BC Institute" + ], + "acronyms": [ + "I2BC" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Institut de Biologie Intégrative de la Cellule", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 7474 7238" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR9198" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30261453" + ] + }, + "GRID": { + "preferred": "grid.462411.4", + "all": "grid.462411.4" + } + } +} \ No newline at end of file diff --git a/v1.43/01fgmnw14.json b/v1.43/01fgmnw14.json new file mode 100644 index 000000000..4735b1d82 --- /dev/null +++ b/v1.43/01fgmnw14.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/01fgmnw14", + "name": "Berufsgenossenschaftliche Unfallklinik Murnau", + "email_address": null, + "ip_addresses": [], + "established": 1953, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Technical University of Munich", + "type": "Related", + "id": "https://ror.org/02kkvpp62" + } + ], + "addresses": [ + { + "lat": 47.68085, + "lng": 11.20125, + "state": null, + "state_code": null, + "city": "Murnau am Staffelsee", + "geonames_city": { + "id": 2867445, + "city": "Murnau am Staffelsee", + "geonames_admin1": { + "name": "Bavaria", + "id": 2951839, + "ascii_name": "Bavaria", + "code": "DE.02" + }, + "geonames_admin2": { + "name": "Upper Bavaria", + "id": 2861322, + "ascii_name": "Upper Bavaria", + "code": "DE.02.091" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "http://www.bgu-murnau.de/en/" + ], + "aliases": [ + "BG Hospital Murnau", + "Trauma Center Murnau", + "Trauma Centre Murnau" + ], + "acronyms": [ + "BGU Murnau" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9109 6845" + ] + }, + "GRID": { + "preferred": "grid.469896.c", + "all": "grid.469896.c" + } + } +} \ No newline at end of file diff --git a/v1.43/01fq24p11.json b/v1.43/01fq24p11.json new file mode 100644 index 000000000..c47f91393 --- /dev/null +++ b/v1.43/01fq24p11.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/01fq24p11", + "name": "Elisava Barcelona School of Design and Engineering", + "email_address": null, + "ip_addresses": [], + "established": 1961, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.elisava.net/" + ], + "aliases": [ + "Escuela Superior de Diseño e Ingeniería de Barcelona", + "Escuela Universitaria de Diseño e Ingeniería de Barcelona", + "Escola Universitària de Disseny i Enginyeria de Barcelona" + ], + "acronyms": [ + "ELISAVA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ELISAVA", + "labels": [ + { + "label": "Elisava, Facultat de Disseny i Enginyeria de Barcelona", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0387 7342" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q15089062" + ] + }, + "GRID": { + "preferred": "grid.509256.d", + "all": "grid.509256.d" + } + } +} \ No newline at end of file diff --git a/v1.43/01g0jwx42.json b/v1.43/01g0jwx42.json new file mode 100644 index 000000000..489ef1464 --- /dev/null +++ b/v1.43/01g0jwx42.json @@ -0,0 +1,83 @@ +{ + "ip_addresses": [], + "aliases": [ + "Instituto Politécnico da Universidade do Estado do Rio de Janeiro", + "UERJ - Instituto Politécnico", + "Polytechnic Institute of Rio de Janeiro", + "Polytechnic Institute of the State University of Rio de Janeiro" + ], + "acronyms": [ + "IPRJ", + "UERJ" + ], + "links": [ + "http://www.iprj.uerj.br" + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "name": "Instituto Politécnico do Rio de Janeiro", + "wikipedia_url": null, + "addresses": [ + { + "lat": -22.28194, + "lng": -42.53111, + "state": null, + "state_code": null, + "country_geonames_id": 3469034, + "city": "Nova Friburgo", + "geonames_city": { + "id": 3456166, + "city": "Nova Friburgo", + "geonames_admin1": { + "name": "Rio de Janeiro", + "ascii_name": "Rio de Janeiro", + "id": 3451189, + "code": "BR.21" + }, + "geonames_admin2": { + "name": "Nova Friburgo", + "id": 6322042, + "ascii_name": "Nova Friburgo", + "code": "BR.21.3303401" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": {}, + "established": 1989, + "relationships": [ + { + "label": "Rio de Janeiro State University", + "type": "Parent", + "id": "https://ror.org/0198v2949" + } + ], + "email_address": null, + "id": "https://ror.org/01g0jwx42", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01g94x362.json b/v1.43/01g94x362.json new file mode 100644 index 000000000..def00c398 --- /dev/null +++ b/v1.43/01g94x362.json @@ -0,0 +1,104 @@ +{ + "ip_addresses": [], + "aliases": [ + "Departement Economie, Wetenschap en Innovatie", + "Department of Economy, Sciency and Innovation" + ], + "acronyms": [ + "DEWI" + ], + "links": [ + "https://www.ewi-vlaanderen.be" + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "name": "Departement Economie, Wetenschap & Innovatie", + "wikipedia_url": null, + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "country_geonames_id": 2802361, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "name": "Brussels Capital", + "ascii_name": "Brussels Capital", + "id": 2800867, + "code": "BE.BRU" + }, + "geonames_admin2": { + "name": "Bruxelles-Capitale", + "id": 6693370, + "ascii_name": "Bruxelles-Capitale", + "code": "BE.BRU.BRU" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0550 8872", + "all": [ + "0000 0001 0550 8872" + ] + }, + "Wikidata": { + "preferred": "Q108367206", + "all": [ + "Q108367206" + ] + }, + "FundRef": { + "preferred": "501100012285", + "all": [ + "501100012285" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Flemish Government", + "type": "Parent", + "id": "https://ror.org/04qxsrb28" + } + ], + "email_address": null, + "id": "https://ror.org/01g94x362", + "labels": [ + { + "label": "Department of Economy, Sciency & Innovation", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01gghaa40.json b/v1.43/01gghaa40.json new file mode 100644 index 000000000..f878aa942 --- /dev/null +++ b/v1.43/01gghaa40.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "SIDB" + ], + "links": [ + "https://sidb.org.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Simons Initiative for the Developing Brain", + "wikipedia_url": null, + "addresses": [ + { + "lat": 55.95206, + "lng": -3.19648, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Edinburgh", + "geonames_city": { + "id": 2650225, + "city": "Edinburgh", + "geonames_admin1": { + "name": "Scotland", + "ascii_name": "Scotland", + "id": 2638360, + "code": "GB.SCT" + }, + "geonames_admin2": { + "name": "Edinburgh", + "id": 3333229, + "ascii_name": "Edinburgh", + "code": "GB.SCT.U8" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9225 965X", + "all": [ + "0000 0004 9225 965X" + ] + }, + "FundRef": { + "preferred": "501100015504", + "all": [ + "501100015504" + ] + } + }, + "established": 2017, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01gghaa40", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01gm5f004.json b/v1.43/01gm5f004.json new file mode 100644 index 000000000..f3f4dc5b1 --- /dev/null +++ b/v1.43/01gm5f004.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/01gm5f004", + "name": "Biomedical Research Networking Center in Bioengineering, Biomaterials and Nanomedicine", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.65606, + "lng": -0.87734, + "state": null, + "state_code": null, + "city": "Zaragoza", + "geonames_city": { + "id": 3104324, + "city": "Zaragoza", + "geonames_admin1": { + "name": "Aragon", + "id": 3336899, + "ascii_name": "Aragon", + "code": "ES.52" + }, + "geonames_admin2": { + "name": "Saragossa", + "id": 3104323, + "ascii_name": "Saragossa", + "code": "ES.52.Z" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.ciber-bbn.es" + ], + "aliases": [], + "acronyms": [ + "CIBER-BBN" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Centro de Investigación Biomédica en Red en Bioingeniería, Biomateriales y Nanomedicina", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1763 291X" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100005053" + ] + }, + "GRID": { + "preferred": "grid.429738.3", + "all": "grid.429738.3" + } + } +} \ No newline at end of file diff --git a/v1.43/01h6dtw92.json b/v1.43/01h6dtw92.json new file mode 100644 index 000000000..0ce9c6393 --- /dev/null +++ b/v1.43/01h6dtw92.json @@ -0,0 +1,90 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "TAV" + ], + "links": [ + "https://www.tav.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "TAV College", + "wikipedia_url": null, + "addresses": [ + { + "lat": 52.28333, + "lng": -117.469, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Alberta", + "geonames_city": { + "id": 5883102, + "city": "Alberta", + "geonames_admin1": { + "name": "Alberta", + "ascii_name": "Alberta", + "id": 5883102, + "code": "CA.01" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0262 6338", + "all": [ + "0000 0005 0262 6338" + ] + }, + "Wikidata": { + "preferred": "Q28233223", + "all": [ + "Q28233223" + ] + }, + "FundRef": { + "preferred": "100011787", + "all": [ + "100011787" + ] + } + }, + "established": 1965, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01h6dtw92", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01h6pze39.json b/v1.43/01h6pze39.json new file mode 100644 index 000000000..154432434 --- /dev/null +++ b/v1.43/01h6pze39.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/01h6pze39", + "name": "University of Saint Francis", + "email_address": null, + "ip_addresses": [], + "established": 1890, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 41.1306, + "lng": -85.12886, + "state": null, + "state_code": null, + "city": "Fort Wayne", + "geonames_city": { + "id": 4920423, + "city": "Fort Wayne", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Allen", + "id": 4917555, + "ascii_name": "Allen", + "code": "US.IN.003" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.sf.edu/" + ], + "aliases": [], + "acronyms": [ + "USF" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Saint_Francis_(Indiana)", + "labels": [ + { + "label": "Universidad de Saint Francis", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0401 9796" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2605483" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1276602" + ] + }, + "GRID": { + "preferred": "grid.412770.7", + "all": "grid.412770.7" + } + } +} \ No newline at end of file diff --git a/v1.43/01hn2pk88.json b/v1.43/01hn2pk88.json new file mode 100644 index 000000000..c9c38a37e --- /dev/null +++ b/v1.43/01hn2pk88.json @@ -0,0 +1,92 @@ +{ + "ip_addresses": [], + "aliases": [ + "Panskura Banamali Autonomous College" + ], + "acronyms": [ + "PBC" + ], + "links": [ + "https://www.panskurabanamalicollege.org" + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "name": "Panskura Banamali College", + "wikipedia_url": "https://en.wikipedia.org/wiki/Panskura_Banamali_College", + "addresses": [ + { + "lat": 22.40418, + "lng": 87.71746, + "state": null, + "state_code": null, + "country_geonames_id": 1269750, + "city": "Pānskura", + "geonames_city": { + "id": 1260445, + "city": "Pānskura", + "geonames_admin1": { + "name": "West Bengal", + "ascii_name": "West Bengal", + "id": 1252881, + "code": "IN.28" + }, + "geonames_admin2": { + "name": "East Midnapore", + "id": 8335139, + "ascii_name": "East Midnapore", + "code": "IN.28.345" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9225 0073", + "all": [ + "0000 0004 9225 0073" + ] + }, + "Wikidata": { + "preferred": "Q7131589", + "all": [ + "Q7131589" + ] + } + }, + "established": 1960, + "relationships": [ + { + "label": "Vidyasagar University", + "type": "Related", + "id": "https://ror.org/027jsza11" + } + ], + "email_address": null, + "id": "https://ror.org/01hn2pk88", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01hx2yw16.json b/v1.43/01hx2yw16.json new file mode 100644 index 000000000..a3fac709d --- /dev/null +++ b/v1.43/01hx2yw16.json @@ -0,0 +1,77 @@ +{ + "ip_addresses": [], + "aliases": [ + "NIPD Genetics", + "NIPD Genetics Public Company Limited" + ], + "acronyms": [], + "links": [ + "https://medicover-genetics.com" + ], + "country": { + "country_name": "Cyprus", + "country_code": "CY" + }, + "name": "Medicover Genetics (Cyprus)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 35.17531, + "lng": 33.3642, + "state": null, + "state_code": null, + "country_geonames_id": 146669, + "city": "Nicosia", + "geonames_city": { + "id": 146268, + "city": "Nicosia", + "geonames_admin1": { + "name": "Nicosia", + "ascii_name": "Nicosia", + "id": 146267, + "code": "CY.04" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01hx2yw16", + "labels": [ + { + "label": "Medicover Genetics", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01j98sy69.json b/v1.43/01j98sy69.json new file mode 100644 index 000000000..b53d491a6 --- /dev/null +++ b/v1.43/01j98sy69.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/01j98sy69", + "name": "Asociación Española de Industriales de Plásticos", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.anaip.es" + ], + "aliases": [], + "acronyms": [ + "ANAIP" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.432414.4", + "all": "grid.432414.4" + } + } +} \ No newline at end of file diff --git a/v1.43/01js2sh04.json b/v1.43/01js2sh04.json new file mode 100644 index 000000000..b54adeaac --- /dev/null +++ b/v1.43/01js2sh04.json @@ -0,0 +1,135 @@ +{ + "id": "https://ror.org/01js2sh04", + "name": "Deutsches Elektronen-Synchrotron DESY", + "email_address": "", + "ip_addresses": [], + "established": 1959, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Helmholtz Association of German Research Centres", + "type": "Parent", + "id": "https://ror.org/0281dp749" + }, + { + "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": "LEAPS", + "type": "Related", + "id": "https://ror.org/04wcn4e27" + } + ], + "addresses": [ + { + "lat": 53.55073, + "lng": 9.99302, + "state": null, + "state_code": null, + "city": "Hamburg", + "geonames_city": { + "id": 2911298, + "city": "Hamburg", + "geonames_admin1": { + "name": "Hamburg", + "id": 2911297, + "ascii_name": "Hamburg", + "code": "DE.04" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.04.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "http://www.desy.de/index_eng.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/DESY", + "labels": [ + { + "label": "DESY", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0492 0453" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100001647" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "53297" + ] + }, + "Wikidata": { + "preferred": "Q311801", + "all": [ + "Q311801", + "Q39901428" + ] + }, + "GRID": { + "preferred": "grid.7683.a", + "all": "grid.7683.a" + } + } +} \ No newline at end of file diff --git a/v1.43/01jty7g66.json b/v1.43/01jty7g66.json new file mode 100644 index 000000000..d07d2aaa9 --- /dev/null +++ b/v1.43/01jty7g66.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/01jty7g66", + "name": "German Centre for Integrative Biodiversity Research", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.33962, + "lng": 12.37129, + "state": null, + "state_code": null, + "city": "Leipzig", + "geonames_city": { + "id": 2879139, + "city": "Leipzig", + "geonames_admin1": { + "name": "Saxony", + "id": 2842566, + "ascii_name": "Saxony", + "code": "DE.13" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.13.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.idiv.de" + ], + "aliases": [ + "German Center for Integrative Biodiversity Research" + ], + "acronyms": [ + "iDiv" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/German_Centre_for_Integrative_Biodiversity_Research_(iDiv)", + "labels": [ + { + "label": "Deutsches Zentrum für integrative Biodiversitätsforschung", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 7470 3956" + ] + }, + "FundRef": { + "preferred": "501100020056", + "all": [ + "501100020056" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1206134" + ] + }, + "GRID": { + "preferred": "grid.421064.5", + "all": "grid.421064.5" + } + } +} \ No newline at end of file diff --git a/v1.43/01kdbb633.json b/v1.43/01kdbb633.json new file mode 100644 index 000000000..ae5502ae9 --- /dev/null +++ b/v1.43/01kdbb633.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/01kdbb633", + "name": "University College Stockholm", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 59.34, + "lng": 17.94, + "state": null, + "state_code": null, + "city": "Bromma", + "geonames_city": { + "id": 2719111, + "city": "Bromma", + "geonames_admin1": { + "name": "Stockholm", + "id": 2673722, + "ascii_name": "Stockholm", + "code": "SE.26" + }, + "geonames_admin2": { + "name": "Stockholm Municipality", + "id": 2673723, + "ascii_name": "Stockholm Municipality", + "code": "SE.26.0180" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2661886 + } + ], + "links": [ + "https://ehs.se" + ], + "aliases": [ + "Stockholm School of Theology", + "Teologiska högskolan Stockholm" + ], + "acronyms": [ + "THS", + "EHS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Stockholm_School_of_Theology", + "labels": [ + { + "label": "Enskilda Högskolan Stockholm", + "iso639": "sv" + } + ], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0618 2159" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "3740824" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3652398" + ] + }, + "GRID": { + "preferred": "grid.462882.2", + "all": "grid.462882.2" + } + } +} \ No newline at end of file diff --git a/v1.43/01kde4v59.json b/v1.43/01kde4v59.json new file mode 100644 index 000000000..4029c4b51 --- /dev/null +++ b/v1.43/01kde4v59.json @@ -0,0 +1,98 @@ +{ + "ip_addresses": [], + "aliases": [ + "EIT Food iVZW", + "European Institute of Innovation & Technology Food", + "Food4Future" + ], + "acronyms": [], + "links": [ + "https://www.eitfood.eu" + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "name": "EIT Food", + "wikipedia_url": null, + "addresses": [ + { + "lat": 50.87959, + "lng": 4.70093, + "state": null, + "state_code": null, + "country_geonames_id": 2802361, + "city": "Leuven", + "geonames_city": { + "id": 2792482, + "city": "Leuven", + "geonames_admin1": { + "name": "Flanders", + "ascii_name": "Flanders", + "id": 3337388, + "code": "BE.VLG" + }, + "geonames_admin2": { + "name": "Flemish Brabant Province", + "id": 3333250, + "ascii_name": "Flemish Brabant Province", + "code": "BE.VLG.VBR" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9225 9756", + "all": [ + "0000 0004 9225 9756" + ] + }, + "Wikidata": { + "preferred": "Q112085345", + "all": [ + "Q112085345" + ] + }, + "FundRef": { + "preferred": "100016326", + "all": [ + "100016326" + ] + } + }, + "established": 2018, + "relationships": [ + { + "label": "European Institute of Innovation and Technology", + "type": "Parent", + "id": "https://ror.org/036dxts37" + } + ], + "email_address": null, + "id": "https://ror.org/01kde4v59", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01kj2bm70.json b/v1.43/01kj2bm70.json new file mode 100644 index 000000000..2e41835e1 --- /dev/null +++ b/v1.43/01kj2bm70.json @@ -0,0 +1,181 @@ +{ + "id": "https://ror.org/01kj2bm70", + "name": "Newcastle University", + "email_address": null, + "ip_addresses": [], + "established": 1834, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "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": "National Centre for Energy Systems Integration", + "type": "Child", + "id": "https://ror.org/02r4fqa76" + } + ], + "addresses": [ + { + "lat": 54.97328, + "lng": -1.61396, + "state": null, + "state_code": null, + "city": "Newcastle upon Tyne", + "geonames_city": { + "id": 2641673, + "city": "Newcastle upon Tyne", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Newcastle upon Tyne", + "id": 3333174, + "ascii_name": "Newcastle upon Tyne", + "code": "GB.ENG.I7" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.ncl.ac.uk/" + ], + "aliases": [ + "University of Newcastle upon Tyne" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Newcastle_University", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0462 7212" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100008406", + "501100000774" + ] + }, + "HESA": { + "preferred": null, + "all": [ + "0154" + ] + }, + "UCAS": { + "preferred": null, + "all": [ + "N21" + ] + }, + "UKPRN": { + "preferred": null, + "all": [ + "10007799" + ] + }, + "OrgRef": { + "preferred": "203338", + "all": [ + "203338", + "4329975" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q837164" + ] + }, + "GRID": { + "preferred": "grid.1006.7", + "all": "grid.1006.7" + } + } +} \ No newline at end of file diff --git a/v1.43/01kk86953.json b/v1.43/01kk86953.json new file mode 100644 index 000000000..3acb7d5ce --- /dev/null +++ b/v1.43/01kk86953.json @@ -0,0 +1,75 @@ +{ + "ip_addresses": [], + "aliases": [ + "Climate Resource", + "Climate Resource Pty Ltd", + "Climate Resource Ltd" + ], + "acronyms": [ + "CR" + ], + "links": [ + "https://www.climate-resource.com" + ], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "name": "Climate Resource (Australia)", + "wikipedia_url": null, + "addresses": [ + { + "lat": -37.814, + "lng": 144.96332, + "state": null, + "state_code": null, + "country_geonames_id": 2077456, + "city": "Melbourne", + "geonames_city": { + "id": 2158177, + "city": "Melbourne", + "geonames_admin1": { + "name": "Victoria", + "ascii_name": "Victoria", + "id": 2145234, + "code": "AU.07" + }, + "geonames_admin2": { + "name": "Melbourne", + "id": 7839805, + "ascii_name": "Melbourne", + "code": "AU.07.24600" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": 2020, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01kk86953", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01kn3j525.json b/v1.43/01kn3j525.json new file mode 100644 index 000000000..27cc43ecb --- /dev/null +++ b/v1.43/01kn3j525.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [ + "Delaware IDeA Network of Biomedical Research Excellence" + ], + "acronyms": [], + "links": [ + "https://de-inbre.org" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Delaware INBRE", + "wikipedia_url": null, + "addresses": [ + { + "lat": 39.68372, + "lng": -75.74966, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Newark", + "geonames_city": { + "id": 4143861, + "city": "Newark", + "geonames_admin1": { + "name": "Delaware", + "ascii_name": "Delaware", + "id": 4142224, + "code": "US.DE" + }, + "geonames_admin2": { + "name": "New Castle", + "id": 4143835, + "ascii_name": "New Castle", + "code": "US.DE.003" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7863 322X", + "all": [ + "0000 0004 7863 322X" + ] + }, + "FundRef": { + "preferred": "100013429", + "all": [ + "100013429" + ] + } + }, + "established": 2011, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01kn3j525", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01mhxe537.json b/v1.43/01mhxe537.json new file mode 100644 index 000000000..42fdc33d3 --- /dev/null +++ b/v1.43/01mhxe537.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/01mhxe537", + "name": "Geolica Innovations (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.46712, + "lng": -2.44541, + "state": null, + "state_code": null, + "city": "Logroño", + "geonames_city": { + "id": 6359078, + "city": "Logroño", + "geonames_admin1": { + "name": "La Rioja", + "id": 3336897, + "ascii_name": "La Rioja", + "code": "ES.27" + }, + "geonames_admin2": { + "name": "La Rioja", + "id": 6355232, + "ascii_name": "La Rioja", + "code": "ES.27.LO" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.geolica.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30256933" + ] + }, + "GRID": { + "preferred": "grid.434800.b", + "all": "grid.434800.b" + } + } +} \ No newline at end of file diff --git a/v1.43/01n6r0e97.json b/v1.43/01n6r0e97.json new file mode 100644 index 000000000..a89856e94 --- /dev/null +++ b/v1.43/01n6r0e97.json @@ -0,0 +1,598 @@ +{ + "id": "https://ror.org/01n6r0e97", + "name": "Leibniz Association", + "email_address": "", + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "name": "Berlin", + "id": 2950157, + "ascii_name": "Berlin", + "code": "DE.16" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.16.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "http://www.leibniz-gemeinschaft.de/en/home/" + ], + "aliases": [ + "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz" + ], + "acronyms": [ + "LG" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Leibniz_Association", + "labels": [ + { + "label": "Leibniz-Gemeinschaft", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2224 3060" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100001664" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2443230" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q680090" + ] + }, + "GRID": { + "preferred": "grid.413453.4", + "all": "grid.413453.4" + } + } +} \ No newline at end of file diff --git a/v1.43/01nrxwf90.json b/v1.43/01nrxwf90.json new file mode 100644 index 000000000..501b1497c --- /dev/null +++ b/v1.43/01nrxwf90.json @@ -0,0 +1,229 @@ +{ + "id": "https://ror.org/01nrxwf90", + "name": "University of Edinburgh", + "email_address": "", + "ip_addresses": [], + "established": 1582, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "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": "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" + } + ], + "addresses": [ + { + "lat": 55.95206, + "lng": -3.19648, + "state": null, + "state_code": null, + "city": "Edinburgh", + "geonames_city": { + "id": 2650225, + "city": "Edinburgh", + "geonames_admin1": { + "name": "Scotland", + "id": 2638360, + "ascii_name": "Scotland", + "code": "GB.SCT" + }, + "geonames_admin2": { + "name": "Edinburgh", + "id": 3333229, + "ascii_name": "Edinburgh", + "code": "GB.SCT.U8" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.ed.ac.uk/home" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Edinburgh", + "labels": [ + { + "label": "Oilthigh Dhùn Èideann", + "iso639": "gd" + } + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1936 7988" + ] + }, + "FundRef": { + "preferred": "501100000848", + "all": [ + "501100000848", + "501100000635", + "501100005698", + "501100002754" + ] + }, + "HESA": { + "preferred": null, + "all": [ + "0167" + ] + }, + "UCAS": { + "preferred": null, + "all": [ + "E56" + ] + }, + "UKPRN": { + "preferred": null, + "all": [ + "10007790" + ] + }, + "OrgRef": { + "preferred": "23592200", + "all": [ + "23592200", + "1228887", + "6495461", + "1665922", + "47000436" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q160302" + ] + }, + "GRID": { + "preferred": "grid.4305.2", + "all": "grid.4305.2" + } + } +} \ No newline at end of file diff --git a/v1.43/01nry9c15.json b/v1.43/01nry9c15.json new file mode 100644 index 000000000..52f61a7b8 --- /dev/null +++ b/v1.43/01nry9c15.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/01nry9c15", + "name": "Pasqual Maragall Foundation", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Barcelonaβeta Brain Research Center", + "type": "Child", + "id": "https://ror.org/03k4wdb90" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://fpmaragall.org/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Pasqual_Maragall_Foundation", + "labels": [ + { + "label": "Fundació Pasqual Maragall", + "iso639": "ca" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q4886787" + ] + }, + "GRID": { + "preferred": "grid.430077.7", + "all": "grid.430077.7" + } + } +} \ No newline at end of file diff --git a/v1.43/01nv2xf68.json b/v1.43/01nv2xf68.json new file mode 100644 index 000000000..540871438 --- /dev/null +++ b/v1.43/01nv2xf68.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/01nv2xf68", + "name": "Ajuntament de L’Hospitalet", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Institut d'Investigació Biomédica de Bellvitge", + "type": "Child", + "id": "https://ror.org/0008xqs48" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.l-h.cat/" + ], + "aliases": [ + "Ayuntamiento de Hospitalet de Llobregat" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/L%27Hospitalet_de_Llobregat", + "labels": [ + { + "label": "Hospitalet de Llobregat City Council", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q15470" + ] + }, + "GRID": { + "preferred": "grid.417656.7", + "all": "grid.417656.7" + } + } +} \ No newline at end of file diff --git a/v1.43/01nxm2y98.json b/v1.43/01nxm2y98.json new file mode 100644 index 000000000..0ad6923c3 --- /dev/null +++ b/v1.43/01nxm2y98.json @@ -0,0 +1,90 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "GET" + ], + "links": [ + "http://www.gilchristgrants.org.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Gilchrist Educational Trust", + "wikipedia_url": "https://en.wikipedia.org/wiki/Gilchrist_Educational_Trust", + "addresses": [ + { + "lat": 50.95753, + "lng": -0.5128, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Pulborough", + "geonames_city": { + "id": 2639864, + "city": "Pulborough", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "West Sussex", + "id": 2634258, + "ascii_name": "West Sussex", + "code": "GB.ENG.P6" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9224 0406", + "all": [ + "0000 0004 9224 0406" + ] + }, + "Wikidata": { + "preferred": "Q5561481", + "all": [ + "Q5561481" + ] + }, + "FundRef": { + "preferred": "100015651", + "all": [ + "100015651" + ] + } + }, + "established": 1841, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01nxm2y98", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01p07y544.json b/v1.43/01p07y544.json new file mode 100644 index 000000000..0353ad3b0 --- /dev/null +++ b/v1.43/01p07y544.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/01p07y544", + "name": "Hryhorii Skovoroda University in Pereiaslav", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.45466, + "lng": 30.5238, + "state": null, + "state_code": null, + "city": "Kyiv", + "geonames_city": { + "id": 703448, + "city": "Kyiv", + "geonames_admin1": { + "name": "Kyiv City", + "id": 703447, + "ascii_name": "Kyiv City", + "code": "UA.12" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 690791 + } + ], + "links": [ + "https://uhsp.edu.ua" + ], + "aliases": [ + "Переяслав-Хмельницький державний педагогічний університет імені Григорія Сковороди" + ], + "acronyms": [ + "PCDPU" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Університет Григорія Сковороди в Переяславі", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q12139846" + ] + }, + "GRID": { + "preferred": "grid.446267.5", + "all": "grid.446267.5" + } + } +} \ No newline at end of file diff --git a/v1.43/01pd2sz18.json b/v1.43/01pd2sz18.json new file mode 100644 index 000000000..0eaa1e4b6 --- /dev/null +++ b/v1.43/01pd2sz18.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/01pd2sz18", + "name": "Mathématiques, Informatique et Statistique pour l'Environnement et l'Agronomie", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www6.montpellier.inra.fr/mistea_eng/" + ], + "aliases": [], + "acronyms": [ + "MISTEA" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0458 7507" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q51778778" + ] + }, + "GRID": { + "preferred": "grid.503406.4", + "all": "grid.503406.4" + } + } +} \ No newline at end of file diff --git a/v1.43/01q4vax14.json b/v1.43/01q4vax14.json new file mode 100644 index 000000000..9d8257404 --- /dev/null +++ b/v1.43/01q4vax14.json @@ -0,0 +1,85 @@ +{ + "ip_addresses": [], + "aliases": [ + "State Government of Virginia", + "Government of Virginia" + ], + "acronyms": [], + "links": [ + "https://www.virginia.gov" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Commonwealth of Virginia", + "wikipedia_url": "https://en.wikipedia.org/wiki/Government_of_Virginia", + "addresses": [ + { + "lat": 37.55376, + "lng": -77.46026, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Richmond", + "geonames_city": { + "id": 4781708, + "city": "Richmond", + "geonames_admin1": { + "name": "Virginia", + "ascii_name": "Virginia", + "id": 6254928, + "code": "US.VA" + }, + "geonames_admin2": { + "name": "City of Richmond", + "id": 4781756, + "ascii_name": "City of Richmond", + "code": "US.VA.760" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q5589334", + "all": [ + "Q5589334" + ] + }, + "FundRef": { + "preferred": "100006822", + "all": [ + "100006822" + ] + } + }, + "established": 1788, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01q4vax14", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01q6sg345.json b/v1.43/01q6sg345.json new file mode 100644 index 000000000..4b07d0956 --- /dev/null +++ b/v1.43/01q6sg345.json @@ -0,0 +1,87 @@ +{ + "ip_addresses": [], + "aliases": [ + "Indonesian International Islamic University" + ], + "acronyms": [ + "UIII", + "IIIU" + ], + "links": [ + "https://uiii.ac.id" + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "name": "Universitas Islam Internasional Indonesia", + "wikipedia_url": "https://id.wikipedia.org/wiki/Universitas_Islam_Internasional_Indonesia", + "addresses": [ + { + "lat": -6.4, + "lng": 106.81861, + "state": null, + "state_code": null, + "country_geonames_id": 1643084, + "city": "Depok", + "geonames_city": { + "id": 1645524, + "city": "Depok", + "geonames_admin1": { + "name": "West Java", + "ascii_name": "West Java", + "id": 1642672, + "code": "ID.30" + }, + "geonames_admin2": { + "name": "Kota Depok", + "id": 6751097, + "ascii_name": "Kota Depok", + "code": "ID.30.3276" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0599 5729", + "all": [ + "0000 0005 0599 5729" + ] + }, + "Wikidata": { + "preferred": "Q28723622", + "all": [ + "Q28723622" + ] + } + }, + "established": 2019, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01q6sg345", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01q76b368.json b/v1.43/01q76b368.json new file mode 100644 index 000000000..1c84049bf --- /dev/null +++ b/v1.43/01q76b368.json @@ -0,0 +1,350 @@ +{ + "id": "https://ror.org/01q76b368", + "name": "Institut Écologie et Environnement", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.cnrs.fr/inee/" + ], + "aliases": [], + "acronyms": [ + "INEE" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0253 7563" + ] + }, + "FundRef": { + "preferred": "501100017216", + "all": [ + "501100017216" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q24935880" + ] + }, + "GRID": { + "preferred": "grid.457013.4", + "all": "grid.457013.4" + } + } +} \ No newline at end of file diff --git a/v1.43/01q7cq281.json b/v1.43/01q7cq281.json new file mode 100644 index 000000000..d1678d23d --- /dev/null +++ b/v1.43/01q7cq281.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/01q7cq281", + "name": "Wikimedia España", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.65518, + "lng": -4.72372, + "state": null, + "state_code": null, + "city": "Valladolid", + "geonames_city": { + "id": 3106672, + "city": "Valladolid", + "geonames_admin1": { + "name": "Castille and León", + "id": 3336900, + "ascii_name": "Castille and León", + "code": "ES.55" + }, + "geonames_admin2": { + "name": "Valladolid", + "id": 3106671, + "ascii_name": "Valladolid", + "code": "ES.55.VA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://wikimedia.es" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q14866877" + ] + }, + "GRID": { + "preferred": "grid.472213.1", + "all": "grid.472213.1" + } + } +} \ No newline at end of file diff --git a/v1.43/01qew8q20.json b/v1.43/01qew8q20.json new file mode 100644 index 000000000..ec0b063a7 --- /dev/null +++ b/v1.43/01qew8q20.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "FIMA" + ], + "links": [ + "https://cima.cun.es" + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "name": "Fundación para la Investigación Médica Aplicada", + "wikipedia_url": null, + "addresses": [ + { + "lat": 42.81687, + "lng": -1.64323, + "state": null, + "state_code": null, + "country_geonames_id": 2510769, + "city": "Pamplona", + "geonames_city": { + "id": 3114472, + "city": "Pamplona", + "geonames_admin1": { + "name": "Navarre", + "ascii_name": "Navarre", + "id": 3115609, + "code": "ES.32" + }, + "geonames_admin2": { + "name": "Navarre", + "id": 6355235, + "ascii_name": "Navarre", + "code": "ES.32.NA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 1273 0083", + "all": [ + "0000 0005 1273 0083" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Universidad de Navarra", + "type": "Related", + "id": "https://ror.org/02rxc7m23" + } + ], + "email_address": null, + "id": "https://ror.org/01qew8q20", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01qgecw57.json b/v1.43/01qgecw57.json new file mode 100644 index 000000000..8ae738f0d --- /dev/null +++ b/v1.43/01qgecw57.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/01qgecw57", + "name": "Bristol Royal Hospital for Children", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "Related", + "id": "https://ror.org/0524sp257" + } + ], + "addresses": [ + { + "lat": 51.45523, + "lng": -2.59665, + "state": null, + "state_code": null, + "city": "Bristol", + "geonames_city": { + "id": 2654675, + "city": "Bristol", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bristol", + "id": 3333134, + "ascii_name": "Bristol", + "code": "GB.ENG.B7" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/bristol-royal-hospital-for-children/" + ], + "aliases": [ + "Bristol Children's Hospital", + "Bristol Royal Hospital for Sick Children" + ], + "acronyms": [ + "BRHC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bristol_Royal_Hospital_for_Children", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0399 4960" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "12989623" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q4969002" + ] + }, + "GRID": { + "preferred": "grid.415172.4", + "all": "grid.415172.4" + } + } +} \ No newline at end of file diff --git a/v1.43/01qgn1839.json b/v1.43/01qgn1839.json new file mode 100644 index 000000000..271869a42 --- /dev/null +++ b/v1.43/01qgn1839.json @@ -0,0 +1,92 @@ +{ + "ip_addresses": [], + "aliases": [ + "PenARC", + "National Institute for Health Research Applied Research Collaboration South West Peninsula", + "NIHR ARC South West Peninsula" + ], + "acronyms": [], + "links": [ + "https://arc-swp.nihr.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "NIHR Applied Research Collaboration South West Peninsula", + "wikipedia_url": null, + "addresses": [ + { + "lat": 50.7236, + "lng": -3.52751, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Exeter", + "geonames_city": { + "id": 2649808, + "city": "Exeter", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Devon", + "id": 2651292, + "ascii_name": "Devon", + "code": "GB.ENG.D4" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9129 3549", + "all": [ + "0000 0004 9129 3549" + ] + }, + "FundRef": { + "preferred": "501100019219", + "all": [ + "501100019219" + ] + } + }, + "established": 2014, + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "Parent", + "id": "https://ror.org/0187kwz08" + } + ], + "email_address": null, + "id": "https://ror.org/01qgn1839", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01qh08519.json b/v1.43/01qh08519.json new file mode 100644 index 000000000..3923e9463 --- /dev/null +++ b/v1.43/01qh08519.json @@ -0,0 +1,88 @@ +{ + "ip_addresses": [], + "aliases": [ + "Ministerio para la Transformación Digital y de la Función Pública de España", + "Spanish Ministry of Digital Transformation", + "Ministry of Digital Transformation, Spain" + ], + "acronyms": [ + "MTDFP" + ], + "links": [ + "https://portal.mineco.gob.es" + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "name": "Ministerio para la Transformación Digital y de la Función Pública", + "wikipedia_url": "https://es.wikipedia.org/wiki/Ministerio_de_Transformaci%C3%B3n_Digital", + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "country_geonames_id": 2510769, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "ascii_name": "Madrid", + "id": 3117732, + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q123492521", + "all": [ + "Q123492521" + ] + } + }, + "established": 2023, + "relationships": [ + { + "label": "Ministerio de Asuntos Económicos y Transformación Digital", + "type": "Predecessor", + "id": "https://ror.org/03sv46s19" + } + ], + "email_address": null, + "id": "https://ror.org/01qh08519", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01qv3ez98.json b/v1.43/01qv3ez98.json new file mode 100644 index 000000000..375610a3f --- /dev/null +++ b/v1.43/01qv3ez98.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/01qv3ez98", + "name": "Australian National Algae Culture Collection", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Commonwealth Scientific and Industrial Research Organisation", + "type": "Parent", + "id": "https://ror.org/03qn8fb07" + } + ], + "addresses": [ + { + "lat": -42.87936, + "lng": 147.32941, + "state": null, + "state_code": null, + "city": "Hobart", + "geonames_city": { + "id": 2163355, + "city": "Hobart", + "geonames_admin1": { + "name": "Tasmania", + "id": 2147291, + "ascii_name": "Tasmania", + "code": "AU.06" + }, + "geonames_admin2": { + "name": "Hobart", + "id": 7839672, + "ascii_name": "Hobart", + "code": "AU.06.62810" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "https://www.csiro.au/en/about/facilities-collections/Collections/ANACC" + ], + "aliases": [], + "acronyms": [ + "ANACC" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q64085930" + ] + }, + "GRID": { + "preferred": "grid.510152.2", + "all": "grid.510152.2" + } + } +} \ No newline at end of file diff --git a/v1.43/01r7awg59.json b/v1.43/01r7awg59.json new file mode 100644 index 000000000..d4917cb69 --- /dev/null +++ b/v1.43/01r7awg59.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/01r7awg59", + "name": "University of Guelph", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.54594, + "lng": -80.25599, + "state": null, + "state_code": null, + "city": "Guelph", + "geonames_city": { + "id": 5967629, + "city": "Guelph", + "geonames_admin1": { + "name": "Ontario", + "id": 6093943, + "ascii_name": "Ontario", + "code": "CA.08" + }, + "geonames_admin2": { + "name": "Wellington County", + "id": 6177913, + "ascii_name": "Wellington County", + "code": "CA.08.3523" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://www.uoguelph.ca/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Guelph", + "labels": [ + { + "label": "Université de guelph", + "iso639": "fr" + } + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1936 8198" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100008986" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "9181362" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q795988" + ] + }, + "GRID": { + "preferred": "grid.34429.38", + "all": "grid.34429.38" + } + } +} \ No newline at end of file diff --git a/v1.43/01r9z8p25.json b/v1.43/01r9z8p25.json new file mode 100644 index 000000000..c7ae8599a --- /dev/null +++ b/v1.43/01r9z8p25.json @@ -0,0 +1,127 @@ +{ + "id": "https://ror.org/01r9z8p25", + "name": "Universidad de La Laguna", + "email_address": null, + "ip_addresses": [], + "established": 1927, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 28.4853, + "lng": -16.32014, + "state": null, + "state_code": null, + "country_geonames_id": 2510769, + "city": "San Cristóbal de La Laguna", + "geonames_city": { + "id": 2511401, + "city": "San Cristóbal de La Laguna", + "geonames_admin1": { + "name": "Canary Islands", + "ascii_name": "Canary Islands", + "id": 2593110, + "code": "ES.53" + }, + "geonames_admin2": { + "name": "Santa Cruz de Tenerife", + "id": 2511173, + "ascii_name": "Santa Cruz de Tenerife", + "code": "ES.53.TF" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "links": [ + "https://www.ull.es" + ], + "aliases": [ + "University of San Fernando de La Laguna" + ], + "acronyms": [ + "ULL" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_La_Laguna", + "labels": [ + { + "label": "Universidade de La Laguna", + "iso639": "gl" + }, + { + "label": "University of La Laguna", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2106 0879" + ] + }, + "FundRef": { + "preferred": "100015528", + "all": [ + "100015528" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2990873" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q539881" + ] + }, + "GRID": { + "preferred": "grid.10041.34", + "all": "grid.10041.34" + } + } +} \ No newline at end of file diff --git a/v1.43/01sqena74.json b/v1.43/01sqena74.json new file mode 100644 index 000000000..00469f935 --- /dev/null +++ b/v1.43/01sqena74.json @@ -0,0 +1,79 @@ +{ + "ip_addresses": [], + "aliases": [ + "SSN Trust", + "Sri Sivasubramaniya Nadar Trust" + ], + "acronyms": [], + "links": [ + "https://www.ssn.edu.in" + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "name": "SSN Educational and Charitable Trust", + "wikipedia_url": null, + "addresses": [ + { + "lat": 13.08784, + "lng": 80.27847, + "state": null, + "state_code": null, + "country_geonames_id": 1269750, + "city": "Chennai", + "geonames_city": { + "id": 1264527, + "city": "Chennai", + "geonames_admin1": { + "name": "Tamil Nadu", + "ascii_name": "Tamil Nadu", + "id": 1255053, + "code": "IN.25" + }, + "geonames_admin2": { + "name": "Chennai district", + "id": 7646145, + "ascii_name": "Chennai district", + "code": "IN.25.603" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "FundRef": { + "preferred": "501100013419", + "all": [ + "501100013419" + ] + } + }, + "established": 2001, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01sqena74", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01swzsf04.json b/v1.43/01swzsf04.json new file mode 100644 index 000000000..23a6ace12 --- /dev/null +++ b/v1.43/01swzsf04.json @@ -0,0 +1,144 @@ +{ + "id": "https://ror.org/01swzsf04", + "name": "University of Geneva", + "email_address": null, + "ip_addresses": [], + "established": 1559, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Idiap Research Institute", + "type": "Related", + "id": "https://ror.org/05932h694" + }, + { + "label": "University Hospital of Geneva", + "type": "Related", + "id": "https://ror.org/01m1pv723" + }, + { + "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": "Swiss Centre for Applied Human Toxicology", + "type": "Related", + "id": "https://ror.org/03wma5x57" + }, + { + "label": "NCCR SwissMAP", + "type": "Child", + "id": "https://ror.org/00xzacp61" + } + ], + "addresses": [ + { + "lat": 46.20222, + "lng": 6.14569, + "state": null, + "state_code": null, + "city": "Geneva", + "geonames_city": { + "id": 2660646, + "city": "Geneva", + "geonames_admin1": { + "name": "Geneva", + "id": 2660645, + "ascii_name": "Geneva", + "code": "CH.GE" + }, + "geonames_admin2": { + "name": "Geneva", + "id": 6458783, + "ascii_name": "Geneva", + "code": "CH.GE.2500" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.unige.ch/" + ], + "aliases": [ + "Schola Genevensis" + ], + "acronyms": [ + "UNIGE" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Geneva", + "labels": [ + { + "label": "Université de Genève", + "iso639": "fr" + }, + { + "label": "Università di Ginevra", + "iso639": "it" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2175 2154", + "all": [ + "0000 0001 2322 4988", + "0000 0001 2175 2154" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100006389" + ] + }, + "OrgRef": { + "preferred": "342348", + "all": [ + "342348", + "47003041" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q503473" + ] + }, + "GRID": { + "preferred": "grid.8591.5", + "all": "grid.8591.5" + } + } +} \ No newline at end of file diff --git a/v1.43/01tm9b530.json b/v1.43/01tm9b530.json new file mode 100644 index 000000000..8dfda3859 --- /dev/null +++ b/v1.43/01tm9b530.json @@ -0,0 +1,92 @@ +{ + "ip_addresses": [], + "aliases": [ + "Stanley Center for Psychiatric Research at Broad Institute", + "Stanley Center", + "Stanley Center for Psychiatric Research at the Broad Institute" + ], + "acronyms": [], + "links": [ + "https://www.broadinstitute.org/stanley-center-for-psychiatric-research" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Stanley Center for Psychiatric Research", + "wikipedia_url": "https://en.wikipedia.org/wiki/Stanley_Center_for_Psychiatric_Research_at_Broad_Institute", + "addresses": [ + { + "lat": 42.3751, + "lng": -71.10561, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Cambridge", + "geonames_city": { + "id": 4931972, + "city": "Cambridge", + "geonames_admin1": { + "name": "Massachusetts", + "ascii_name": "Massachusetts", + "id": 6254926, + "code": "US.MA" + }, + "geonames_admin2": { + "name": "Middlesex", + "id": 4943909, + "ascii_name": "Middlesex", + "code": "US.MA.017" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q22073896", + "all": [ + "Q22073896" + ] + }, + "FundRef": { + "preferred": "100013113", + "all": [ + "100013113" + ] + } + }, + "established": 2007, + "relationships": [ + { + "label": "Broad Institute", + "type": "Parent", + "id": "https://ror.org/05a0ya142" + } + ], + "email_address": null, + "id": "https://ror.org/01tm9b530", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01v2rax29.json b/v1.43/01v2rax29.json new file mode 100644 index 000000000..bea8820b0 --- /dev/null +++ b/v1.43/01v2rax29.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/01v2rax29", + "name": "Design for All Foundation", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://designforall.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.502774.3", + "all": "grid.502774.3" + } + } +} \ No newline at end of file diff --git a/v1.43/01v376g59.json b/v1.43/01v376g59.json new file mode 100644 index 000000000..f84508f6a --- /dev/null +++ b/v1.43/01v376g59.json @@ -0,0 +1,143 @@ +{ + "id": "https://ror.org/01v376g59", + "name": "Fresenius (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 1912, + "types": [ + "Company" + ], + "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" + } + ], + "addresses": [ + { + "lat": 50.22683, + "lng": 8.61816, + "state": null, + "state_code": null, + "city": "Bad Homburg", + "geonames_city": { + "id": 2953436, + "city": "Bad Homburg", + "geonames_admin1": { + "name": "Hesse", + "id": 2905330, + "ascii_name": "Hesse", + "code": "DE.05" + }, + "geonames_admin2": { + "name": "Regierungsbezirk Darmstadt", + "id": 2938912, + "ascii_name": "Regierungsbezirk Darmstadt", + "code": "DE.05.064" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.fresenius.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Fresenius_(company)", + "labels": [ + { + "label": "Fresenius SE & Co. KGaA", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0451 3831" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2092057" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q705361" + ] + }, + "GRID": { + "preferred": "grid.462236.7", + "all": "grid.462236.7" + } + } +} \ No newline at end of file diff --git a/v1.43/01v5xwf23.json b/v1.43/01v5xwf23.json new file mode 100644 index 000000000..8c2a6812f --- /dev/null +++ b/v1.43/01v5xwf23.json @@ -0,0 +1,157 @@ +{ + "id": "https://ror.org/01v5xwf23", + "name": "Nestlé (Switzerland)", + "email_address": null, + "ip_addresses": [], + "established": 1866, + "types": [ + "Company" + ], + "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" + } + ], + "addresses": [ + { + "lat": 46.46299, + "lng": 6.84345, + "state": null, + "state_code": null, + "city": "Vevey", + "geonames_city": { + "id": 2658145, + "city": "Vevey", + "geonames_admin1": { + "name": "Vaud", + "id": 2658182, + "ascii_name": "Vaud", + "code": "CH.VD" + }, + "geonames_admin2": { + "name": "Riviera-Pays-d'Enhaut District", + "id": 7285009, + "ascii_name": "Riviera-Pays-d'Enhaut District", + "code": "CH.VD.2230" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "http://www.nestle.ch/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Nestl%C3%A9", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0066 4948" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q160746" + ] + }, + "GRID": { + "preferred": "grid.419905.0", + "all": "grid.419905.0" + } + } +} \ No newline at end of file diff --git a/v1.43/01v7jrq42.json b/v1.43/01v7jrq42.json new file mode 100644 index 000000000..a7e628a4e --- /dev/null +++ b/v1.43/01v7jrq42.json @@ -0,0 +1,122 @@ +{ + "id": "https://ror.org/01v7jrq42", + "name": "Vodafone (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Company" + ], + "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" + } + ], + "addresses": [ + { + "lat": 51.40148, + "lng": -1.32471, + "state": null, + "state_code": null, + "city": "Newbury", + "geonames_city": { + "id": 2641689, + "city": "Newbury", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "West Berkshire", + "id": 3333217, + "ascii_name": "West Berkshire", + "code": "GB.ENG.P4" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.vodafone.com/content/index.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Vodafone", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0681 5145" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q122141" + ] + }, + "GRID": { + "preferred": "grid.422445.1", + "all": "grid.422445.1" + } + } +} \ No newline at end of file diff --git a/v1.43/01v9qfq10.json b/v1.43/01v9qfq10.json new file mode 100644 index 000000000..75a9c13ce --- /dev/null +++ b/v1.43/01v9qfq10.json @@ -0,0 +1,76 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "HILEM" + ], + "links": [ + "http://www.hilem.cn" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "Harbin Institute of Large Electric Machinery", + "wikipedia_url": null, + "addresses": [ + { + "lat": 45.75, + "lng": 126.65, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Harbin", + "geonames_city": { + "id": 2037013, + "city": "Harbin", + "geonames_admin1": { + "name": "Heilongjiang", + "ascii_name": "Heilongjiang", + "id": 2036965, + "code": "CN.08" + }, + "geonames_admin2": { + "name": "Harbin Shi", + "id": 2037012, + "ascii_name": "Harbin Shi", + "code": "CN.08.2301" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01v9qfq10", + "labels": [ + { + "label": "哈尔滨大电机研究所", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01vbgty78.json b/v1.43/01vbgty78.json new file mode 100644 index 000000000..502055813 --- /dev/null +++ b/v1.43/01vbgty78.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/01vbgty78", + "name": "Institute of Space Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Consejo Superior de Investigaciones Científicas", + "type": "Parent", + "id": "https://ror.org/02gfc7t72" + } + ], + "addresses": [ + { + "lat": 41.49109, + "lng": 2.14079, + "state": null, + "state_code": null, + "city": "Cerdanyola del Vallès", + "geonames_city": { + "id": 3109402, + "city": "Cerdanyola del Vallès", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.ice.csic.es" + ], + "aliases": [], + "acronyms": [ + "ICE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_de_Ci%C3%A8ncies_de_l'Espai", + "labels": [ + { + "label": "Institut de Ciències de l'Espai", + "iso639": "ca" + }, + { + "label": "Instituto de Ciencias del Espacio", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1793 4897" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5918072" + ] + }, + "GRID": { + "preferred": "grid.450286.d", + "all": "grid.450286.d" + } + } +} \ No newline at end of file diff --git a/v1.43/01vt9w950.json b/v1.43/01vt9w950.json new file mode 100644 index 000000000..ada12d880 --- /dev/null +++ b/v1.43/01vt9w950.json @@ -0,0 +1,99 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "INCT-TM" + ], + "links": [], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "name": "Instituto Nacional de Ciência e Tecnologia Translacional em Medicina", + "wikipedia_url": "https://pt.wikipedia.org/wiki/Instituto_Nacional_de_Ci%C3%AAncia_e_Tecnologia_Translacional_em_Medicina", + "addresses": [ + { + "lat": -30.03283, + "lng": -51.23019, + "state": null, + "state_code": null, + "country_geonames_id": 3469034, + "city": "Porto Alegre", + "geonames_city": { + "id": 3452925, + "city": "Porto Alegre", + "geonames_admin1": { + "name": "Rio Grande do Sul", + "ascii_name": "Rio Grande do Sul", + "id": 3451133, + "code": "BR.23" + }, + "geonames_admin2": { + "name": "Porto Alegre", + "id": 6323571, + "ascii_name": "Porto Alegre", + "code": "BR.23.4314902" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6088 6907", + "all": [ + "0000 0004 6088 6907" + ] + }, + "Wikidata": { + "preferred": "Q10302596", + "all": [ + "Q10302596" + ] + }, + "FundRef": { + "preferred": "501100007762", + "all": [ + "501100007762" + ] + } + }, + "established": 2013, + "relationships": [ + { + "label": "Universidade Federal do Rio Grande do Sul", + "type": "Parent", + "id": "https://ror.org/041yk2d64" + } + ], + "email_address": null, + "id": "https://ror.org/01vt9w950", + "labels": [ + { + "label": "National Science and Technology Institute for Translational Medicine", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01vw4c203.json b/v1.43/01vw4c203.json new file mode 100644 index 000000000..29e18549a --- /dev/null +++ b/v1.43/01vw4c203.json @@ -0,0 +1,104 @@ +{ + "ip_addresses": [], + "aliases": [ + "Medical Research Council Centre for Environment and Health", + "MRC-PHE Centre for Environment & Health" + ], + "acronyms": [ + "MRC CE&H" + ], + "links": [ + "https://environment-health.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "MRC Centre for Environment and Health", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0369 2217", + "all": [ + "0000 0004 0369 2217" + ] + }, + "Wikidata": { + "preferred": "Q102872417", + "all": [ + "Q102872417" + ] + }, + "FundRef": { + "preferred": "501100018814", + "all": [ + "501100018814" + ] + } + }, + "established": 2009, + "relationships": [ + { + "label": "Imperial College London", + "type": "Parent", + "id": "https://ror.org/041kmwe10" + }, + { + "label": "Medical Research Council", + "type": "Parent", + "id": "https://ror.org/03x94j517" + } + ], + "email_address": null, + "id": "https://ror.org/01vw4c203", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01w151e64.json b/v1.43/01w151e64.json new file mode 100644 index 000000000..8185a6a83 --- /dev/null +++ b/v1.43/01w151e64.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/01w151e64", + "name": "Bristol Eye Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1808, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "Related", + "id": "https://ror.org/0524sp257" + } + ], + "addresses": [ + { + "lat": 51.45523, + "lng": -2.59665, + "state": null, + "state_code": null, + "city": "Bristol", + "geonames_city": { + "id": 2654675, + "city": "Bristol", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bristol", + "id": 3333134, + "ascii_name": "Bristol", + "code": "GB.ENG.B7" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/bristol-eye-hospital/" + ], + "aliases": [], + "acronyms": [ + "BEH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bristol_Eye_Hospital", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0399 4581" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q22000442" + ] + }, + "GRID": { + "preferred": "grid.415175.3", + "all": "grid.415175.3" + } + } +} \ No newline at end of file diff --git a/v1.43/01wjyqy10.json b/v1.43/01wjyqy10.json new file mode 100644 index 000000000..0aad3b332 --- /dev/null +++ b/v1.43/01wjyqy10.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [ + "Jubilee Tribute" + ], + "acronyms": [], + "links": [ + "https://www.jubileetribute.org" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Queen Elizabeth Diamond Jubilee Trust", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q116776100", + "all": [ + "Q116776100" + ] + }, + "FundRef": { + "preferred": "100017151", + "all": [ + "100017151" + ] + } + }, + "established": 2012, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01wjyqy10", + "labels": [], + "status": "inactive" +} \ No newline at end of file diff --git a/v1.43/01wp2jz98.json b/v1.43/01wp2jz98.json new file mode 100644 index 000000000..722af2595 --- /dev/null +++ b/v1.43/01wp2jz98.json @@ -0,0 +1,170 @@ +{ + "id": "https://ror.org/01wp2jz98", + "name": "European X-Ray Free-Electron Laser", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 54.05, + "lng": 9.48333, + "state": null, + "state_code": null, + "city": "Schenefeld", + "geonames_city": { + "id": 2839763, + "city": "Schenefeld", + "geonames_admin1": { + "name": "Schleswig-Holstein", + "id": 2838632, + "ascii_name": "Schleswig-Holstein", + "code": "DE.10" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.10.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.xfel.eu" + ], + "aliases": [ + "European XFEL" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/European_x-ray_free_electron_laser", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0590 2900" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "47000103" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q462592" + ] + }, + "GRID": { + "preferred": "grid.434729.f", + "all": "grid.434729.f" + } + } +} \ No newline at end of file diff --git a/v1.43/01xc6bj88.json b/v1.43/01xc6bj88.json new file mode 100644 index 000000000..5fadb2ac9 --- /dev/null +++ b/v1.43/01xc6bj88.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/01xc6bj88", + "name": "Leibniz-Institut für Werkstofforientierte Technologien - IWT", + "email_address": null, + "ip_addresses": [], + "established": 1950, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "Parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "addresses": [ + { + "lat": 53.07582, + "lng": 8.80717, + "state": null, + "state_code": null, + "city": "Bremen", + "geonames_city": { + "id": 2944388, + "city": "Bremen", + "geonames_admin1": { + "name": "Bremen", + "id": 2944387, + "ascii_name": "Bremen", + "code": "DE.03" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.03.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.iwt-bremen.de" + ], + "aliases": [ + "Leibniz Institute for Materials Engineering" + ], + "acronyms": [ + "IWT" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Leibniz-Institut für Werkstofforientierte Technologien", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9457 1808" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1665037" + ] + }, + "GRID": { + "preferred": "grid.425971.c", + "all": "grid.425971.c" + } + } +} \ No newline at end of file diff --git a/v1.43/01y64my43.json b/v1.43/01y64my43.json new file mode 100644 index 000000000..9da76f1a9 --- /dev/null +++ b/v1.43/01y64my43.json @@ -0,0 +1,175 @@ +{ + "id": "https://ror.org/01y64my43", + "name": "University at Buffalo, State University of New York", + "email_address": null, + "ip_addresses": [], + "established": 1846, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Advanced Cyberinfrastructure Coordination Ecosystem: Services & Support", + "type": "Child", + "id": "https://ror.org/01v6d0b34" + }, + { + "label": "Great Lakes Research Consortium", + "type": "Related", + "id": "https://ror.org/05cshtm26" + } + ], + "addresses": [ + { + "lat": 42.88645, + "lng": -78.87837, + "state": null, + "state_code": null, + "city": "Buffalo", + "geonames_city": { + "id": 5110629, + "city": "Buffalo", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Erie", + "id": 5116642, + "ascii_name": "Erie", + "code": "US.NY.029" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.buffalo.edu/" + ], + "aliases": [ + "SUNY Buffalo", + "University of Buffalo" + ], + "acronyms": [ + "UB" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_at_Buffalo", + "labels": [ + { + "label": "Universidad de Búfalo", + "iso639": "es" + }, + { + "label": "Université d'État de new york à buffalo", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1936 9887" + ] + }, + "FundRef": { + "preferred": "100008209", + "all": [ + "100008209", + "100008210", + "100007509" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "465598" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q681025" + ] + }, + "GRID": { + "preferred": "grid.273335.3", + "all": "grid.273335.3" + } + } +} \ No newline at end of file diff --git a/v1.43/01y8j9r24.json b/v1.43/01y8j9r24.json new file mode 100644 index 000000000..4518aba5c --- /dev/null +++ b/v1.43/01y8j9r24.json @@ -0,0 +1,133 @@ +{ + "id": "https://ror.org/01y8j9r24", + "name": "Délégation Ile-de-France Sud", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.dr4.cnrs.fr/" + ], + "aliases": [ + "DR04" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "CNRS": { + "preferred": null, + "all": [ + "MOY400" + ] + }, + "GRID": { + "preferred": "grid.457079.8", + "all": "grid.457079.8" + } + } +} \ No newline at end of file diff --git a/v1.43/01yc7t268.json b/v1.43/01yc7t268.json new file mode 100644 index 000000000..9c4d705f7 --- /dev/null +++ b/v1.43/01yc7t268.json @@ -0,0 +1,151 @@ +{ + "id": "https://ror.org/01yc7t268", + "name": "Washington University in St. Louis", + "email_address": "", + "ip_addresses": [], + "established": 1853, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "Children’s Discovery Institute", + "type": "Child", + "id": "https://ror.org/02swjdp46" + }, + { + "label": "Washington University Physicians", + "type": "Child", + "id": "https://ror.org/03qn8ky51" + }, + { + "label": "Taylor Family Institute for Innovative Psychiatric Research", + "type": "Child", + "id": "https://ror.org/03x3g5467" + } + ], + "addresses": [ + { + "lat": 38.62727, + "lng": -90.19789, + "state": null, + "state_code": null, + "city": "St Louis", + "geonames_city": { + "id": 4407066, + "city": "St Louis", + "geonames_admin1": { + "name": "Missouri", + "id": 4398678, + "ascii_name": "Missouri", + "code": "US.MO" + }, + "geonames_admin2": { + "name": "St. Louis", + "id": 4407084, + "ascii_name": "St. Louis", + "code": "US.MO.510" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://wustl.edu/" + ], + "aliases": [], + "acronyms": [ + "WUSTL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Washington_University_in_St._Louis", + "labels": [ + { + "label": "Université Washington à Saint-louis", + "iso639": "fr" + }, + { + "label": "Universidad Washington en San Luis", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2355 7002" + ] + }, + "FundRef": { + "preferred": "100007268", + "all": [ + "100007268", + "100007930", + "100009607", + "100006586", + "100011912" + ] + }, + "OrgRef": { + "preferred": "58920", + "all": [ + "58920", + "6091448", + "3016402" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q777403" + ] + }, + "GRID": { + "preferred": "grid.4367.6", + "all": "grid.4367.6" + } + } +} \ No newline at end of file diff --git a/v1.43/01ydb3330.json b/v1.43/01ydb3330.json new file mode 100644 index 000000000..d320f2100 --- /dev/null +++ b/v1.43/01ydb3330.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/01ydb3330", + "name": "Soleil Synchrotron", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.synchrotron-soleil.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/SOLEIL", + "labels": [ + { + "label": "Synchrotron soleil", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "2925061" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q112513" + ] + }, + "GRID": { + "preferred": "grid.426328.9", + "all": "grid.426328.9" + } + } +} \ No newline at end of file diff --git a/v1.43/01yg1g961.json b/v1.43/01yg1g961.json new file mode 100644 index 000000000..870a5b75a --- /dev/null +++ b/v1.43/01yg1g961.json @@ -0,0 +1,75 @@ +{ + "ip_addresses": [], + "aliases": [ + "National University Of Education", + "Universidad Nacional De Educación, Ecuador", + "Universidad Nacional de Educación del Ecuador" + ], + "acronyms": [ + "UNAE" + ], + "links": [ + "https://unae.edu.ec" + ], + "country": { + "country_name": "Ecuador", + "country_code": "EC" + }, + "name": "Universidad Nacional de Educación", + "wikipedia_url": "https://es.wikipedia.org/wiki/Universidad_Nacional_de_Educaci%C3%B3n_(UNAE)", + "addresses": [ + { + "lat": -2.73969, + "lng": -78.8486, + "state": null, + "state_code": null, + "country_geonames_id": 3658394, + "city": "Azogues", + "geonames_city": { + "id": 3660434, + "city": "Azogues", + "geonames_admin1": { + "name": "Cañar", + "ascii_name": "Cañar", + "id": 3659849, + "code": "EC.04" + }, + "geonames_admin2": { + "name": "Cantón Azogues", + "id": 3660433, + "ascii_name": "Cantón Azogues", + "code": "EC.04.0301" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": {}, + "established": 2014, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01yg1g961", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01yh3na84.json b/v1.43/01yh3na84.json new file mode 100644 index 000000000..bfcb989dd --- /dev/null +++ b/v1.43/01yh3na84.json @@ -0,0 +1,80 @@ +{ + "ip_addresses": [], + "aliases": [ + "IDPublishing" + ], + "acronyms": [], + "links": [ + "https://idpublishing.org" + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "name": "Indonesian Journal Publisher (Indonesia)", + "wikipedia_url": null, + "addresses": [ + { + "lat": -7.80139, + "lng": 110.36472, + "state": null, + "state_code": null, + "country_geonames_id": 1643084, + "city": "Yogyakarta", + "geonames_city": { + "id": 1621177, + "city": "Yogyakarta", + "geonames_admin1": { + "name": "Yogyakarta", + "ascii_name": "Yogyakarta", + "id": 1621176, + "code": "ID.10" + }, + "geonames_admin2": { + "name": "Kota Yogyakarta", + "id": 1621175, + "ascii_name": "Kota Yogyakarta", + "code": "ID.10.3471" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": 2020, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01yh3na84", + "labels": [ + { + "label": "Indonesian Journal Publisher", + "iso639": "en" + }, + { + "label": "Penerbit Jurnal Indonesia", + "iso639": "id" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01ym3w380.json b/v1.43/01ym3w380.json new file mode 100644 index 000000000..8665b73da --- /dev/null +++ b/v1.43/01ym3w380.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/01ym3w380", + "name": "Globus et Locus", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Fondazione Giannino Bassetti", + "type": "Related", + "id": "https://ror.org/027620g33" + } + ], + "addresses": [ + { + "lat": 45.46427, + "lng": 9.18951, + "state": null, + "state_code": null, + "city": "Milan", + "geonames_city": { + "id": 3173435, + "city": "Milan", + "geonames_admin1": { + "name": "Lombardy", + "id": 3174618, + "ascii_name": "Lombardy", + "code": "IT.09" + }, + "geonames_admin2": { + "name": "Milan", + "id": 3173434, + "ascii_name": "Milan", + "code": "IT.09.MI" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "https://www.globusetlocus.org" + ], + "aliases": [ + "Association Globus et Locus" + ], + "acronyms": [ + "GL" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.43/01ythxj32.json b/v1.43/01ythxj32.json new file mode 100644 index 000000000..85fdf3eab --- /dev/null +++ b/v1.43/01ythxj32.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/01ythxj32", + "name": "Oakland University", + "email_address": "", + "ip_addresses": [], + "established": 1957, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Beaumont Hospital, Royal Oak", + "type": "Related", + "id": "https://ror.org/03artm726" + }, + { + "label": "Beaumont Hospital, Troy", + "type": "Related", + "id": "https://ror.org/05x9ffc66" + } + ], + "addresses": [ + { + "lat": 42.68059, + "lng": -83.13382, + "state": null, + "state_code": null, + "city": "Rochester", + "geonames_city": { + "id": 5007400, + "city": "Rochester", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Oakland", + "id": 5004223, + "ascii_name": "Oakland", + "code": "US.MI.125" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://wwwp.oakland.edu/" + ], + "aliases": [], + "acronyms": [ + "OU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Oakland_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2219 916X" + ] + }, + "FundRef": { + "preferred": "100017115", + "all": [ + "100017115" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "486279" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q782116" + ] + }, + "GRID": { + "preferred": "grid.261277.7", + "all": "grid.261277.7" + } + } +} \ No newline at end of file diff --git a/v1.43/01z6fgx85.json b/v1.43/01z6fgx85.json new file mode 100644 index 000000000..fd2d21478 --- /dev/null +++ b/v1.43/01z6fgx85.json @@ -0,0 +1,92 @@ +{ + "ip_addresses": [], + "aliases": [ + "CHN Energy", + "CHN ENERGY Investment Group Co., Ltd.", + "CHN ENERGY Investment Group Co.", + "CHN ENERGY Investment Group" + ], + "acronyms": [], + "links": [ + "http://www.ceic.com/gjnyjtwwEn/" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "CHN Energy (China)", + "wikipedia_url": "https://en.wikipedia.org/wiki/China_Energy_Investment", + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "name": "Beijing", + "ascii_name": "Beijing", + "id": 2038349, + "code": "CN.22" + }, + "geonames_admin2": { + "name": "Beijing", + "id": 11876380, + "ascii_name": "Beijing", + "code": "CN.22.11876380" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9291 8328", + "all": [ + "0000 0004 9291 8328" + ] + }, + "Wikidata": { + "preferred": "Q38180956", + "all": [ + "Q38180956" + ] + } + }, + "established": 2017, + "relationships": [], + "email_address": null, + "id": "https://ror.org/01z6fgx85", + "labels": [ + { + "label": "国家能源投资集团", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/01zvsh948.json b/v1.43/01zvsh948.json new file mode 100644 index 000000000..4738096f6 --- /dev/null +++ b/v1.43/01zvsh948.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/01zvsh948", + "name": "European Agency for Safety and Health at Work", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "European Union", + "type": "Parent", + "id": "https://ror.org/019w4f821" + } + ], + "addresses": [ + { + "lat": 43.26271, + "lng": -2.92528, + "state": null, + "state_code": null, + "city": "Bilbao", + "geonames_city": { + "id": 3128026, + "city": "Bilbao", + "geonames_admin1": { + "name": "Basque Country", + "id": 3336903, + "ascii_name": "Basque Country", + "code": "ES.59" + }, + "geonames_admin2": { + "name": "Biscay", + "id": 3104469, + "ascii_name": "Biscay", + "code": "ES.59.BI" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://osha.europa.eu" + ], + "aliases": [], + "acronyms": [ + "EU-OSHA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/European_Agency_for_Safety_and_Health_at_Work", + "labels": [ + { + "label": "Agencia Europea para la Seguridad y la Salud en el Trabajo", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1793 9217" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q571118" + ] + }, + "GRID": { + "preferred": "grid.482032.f", + "all": "grid.482032.f" + } + } +} \ No newline at end of file diff --git a/v1.43/01zy2cs03.json b/v1.43/01zy2cs03.json new file mode 100644 index 000000000..95fc41680 --- /dev/null +++ b/v1.43/01zy2cs03.json @@ -0,0 +1,126 @@ +{ + "id": "https://ror.org/01zy2cs03", + "name": "Helmholtz-Zentrum Dresden-Rossendorf", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Helmholtz Association of German Research Centres", + "type": "Parent", + "id": "https://ror.org/0281dp749" + }, + { + "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": "LEAPS", + "type": "Related", + "id": "https://ror.org/04wcn4e27" + } + ], + "addresses": [ + { + "lat": 51.05089, + "lng": 13.73832, + "state": null, + "state_code": null, + "city": "Dresden", + "geonames_city": { + "id": 2935022, + "city": "Dresden", + "geonames_admin1": { + "name": "Saxony", + "id": 2842566, + "ascii_name": "Saxony", + "code": "DE.13" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.13.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.hzdr.de" + ], + "aliases": [], + "acronyms": [ + "HZDR" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Helmholtz-Zentrum_Dresden-Rossendorf", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2158 0612" + ] + }, + "FundRef": { + "preferred": "501100014754", + "all": [ + "501100014754" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "25972348" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q883545" + ] + }, + "GRID": { + "preferred": "grid.40602.30", + "all": "grid.40602.30" + } + } +} \ No newline at end of file diff --git a/v1.43/020g0rw41.json b/v1.43/020g0rw41.json new file mode 100644 index 000000000..bc15ec789 --- /dev/null +++ b/v1.43/020g0rw41.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/020g0rw41", + "name": "Gestion de l'Eau, Acteurs, Usages", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.g-eau.fr/index.php/fr/" + ], + "aliases": [], + "acronyms": [ + "G-EAU" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0506 8418" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30262248" + ] + }, + "GRID": { + "preferred": "grid.463866.9", + "all": "grid.463866.9" + } + } +} \ No newline at end of file diff --git a/v1.43/020q9r015.json b/v1.43/020q9r015.json new file mode 100644 index 000000000..81e867df0 --- /dev/null +++ b/v1.43/020q9r015.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/020q9r015", + "name": "China Building Materials Academy Co., Ltd.", + "email_address": null, + "ip_addresses": [], + "established": 1950, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "name": "Beijing", + "id": 2038349, + "ascii_name": "Beijing", + "code": "CN.22" + }, + "geonames_admin2": { + "name": "Beijing", + "id": 11876380, + "ascii_name": "Beijing", + "code": "CN.22.11876380" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "https://www.cbma.com.cn" + ], + "aliases": [ + "China Building Materials Academy" + ], + "acronyms": [ + "CBMA" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "中国建筑材料科学研究", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "FundRef": { + "preferred": "100018939", + "all": [ + "100018939" + ] + }, + "GRID": { + "preferred": "grid.466622.2", + "all": "grid.466622.2" + }, + "Wikidata": { + "preferred": "Q30263765", + "all": [ + "Q30263765" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/020qm1538.json b/v1.43/020qm1538.json new file mode 100644 index 000000000..773bb0545 --- /dev/null +++ b/v1.43/020qm1538.json @@ -0,0 +1,243 @@ +{ + "id": "https://ror.org/020qm1538", + "name": "California State University System", + "email_address": "", + "ip_addresses": [], + "established": 1857, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 33.76696, + "lng": -118.18923, + "state": null, + "state_code": null, + "city": "Long Beach", + "geonames_city": { + "id": 5367929, + "city": "Long Beach", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Los Angeles", + "id": 5368381, + "ascii_name": "Los Angeles", + "code": "US.CA.037" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.calstate.edu/" + ], + "aliases": [ + "Cal State" + ], + "acronyms": [ + "CSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/California_State_University", + "labels": [ + { + "label": "Universidad Estatal de California", + "iso639": "es" + }, + { + "label": "Université d'État de californie", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2219 4764" + ] + }, + "FundRef": { + "preferred": "100008134", + "all": [ + "100008134", + "100019336" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "56704" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q815352" + ] + }, + "GRID": { + "preferred": "grid.253552.6", + "all": "grid.253552.6" + } + } +} \ No newline at end of file diff --git a/v1.43/020rfvw83.json b/v1.43/020rfvw83.json new file mode 100644 index 000000000..51a56e571 --- /dev/null +++ b/v1.43/020rfvw83.json @@ -0,0 +1,88 @@ +{ + "ip_addresses": [], + "aliases": [ + "Instituto de Ciências Sociais da Universidade de Lisboa", + "Institute of Social Sciences", + "University of Lisbon Institute of Social Sciences" + ], + "acronyms": [ + "ICS" + ], + "links": [ + "https://www.ics.ulisboa.pt" + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "name": "Instituto de Ciências Sociais", + "wikipedia_url": "https://pt.wikipedia.org/wiki/Instituto_de_Ci%C3%AAncias_Sociais_da_Universidade_de_Lisboa", + "addresses": [ + { + "lat": 38.71667, + "lng": -9.13333, + "state": null, + "state_code": null, + "country_geonames_id": 2264397, + "city": "Lisbon", + "geonames_city": { + "id": 2267057, + "city": "Lisbon", + "geonames_admin1": { + "name": "Lisbon", + "ascii_name": "Lisbon", + "id": 2267056, + "code": "PT.14" + }, + "geonames_admin2": { + "name": "Lisbon", + "id": 6458923, + "ascii_name": "Lisbon", + "code": "PT.14.1106" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q10302791", + "all": [ + "Q10302791" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "University of Lisbon", + "type": "Parent", + "id": "https://ror.org/01c27hj86" + } + ], + "email_address": null, + "id": "https://ror.org/020rfvw83", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/0211r2z47.json b/v1.43/0211r2z47.json new file mode 100644 index 000000000..523e0f588 --- /dev/null +++ b/v1.43/0211r2z47.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/0211r2z47", + "name": "Institut des Sciences Moléculaires d'Orsay", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.ismo.universite-paris-saclay.fr" + ], + "aliases": [ + "Institute of Molecular Sciences of Orsay" + ], + "acronyms": [ + "ISMO" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "CNRS": { + "preferred": null, + "all": [ + "UMR8214" + ] + }, + "GRID": { + "preferred": "grid.469497.1", + "all": "grid.469497.1" + }, + "Wikidata": { + "preferred": "Q30264842", + "all": [ + "Q30264842" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/021354321.json b/v1.43/021354321.json new file mode 100644 index 000000000..e758d1271 --- /dev/null +++ b/v1.43/021354321.json @@ -0,0 +1,96 @@ +{ + "ip_addresses": [], + "aliases": [ + "Fondation Saint Luc", + "Saint Luc Foundation" + ], + "acronyms": [], + "links": [ + "https://www.fondationsaintluc.be" + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "name": "Fondation Saint-Luc", + "wikipedia_url": null, + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "country_geonames_id": 2802361, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "name": "Brussels Capital", + "ascii_name": "Brussels Capital", + "id": 2800867, + "code": "BE.BRU" + }, + "geonames_admin2": { + "name": "Bruxelles-Capitale", + "id": 6693370, + "ascii_name": "Bruxelles-Capitale", + "code": "BE.BRU.BRU" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6819 7604", + "all": [ + "0000 0004 6819 7604" + ] + }, + "FundRef": { + "preferred": "501100011068", + "all": [ + "501100011068" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Cliniques Universitaires Saint-Luc", + "type": "Parent", + "id": "https://ror.org/03s4khd80" + } + ], + "email_address": null, + "id": "https://ror.org/021354321", + "labels": [ + { + "label": "Saint-Luc Foundation", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/021954z67.json b/v1.43/021954z67.json new file mode 100644 index 000000000..2bad0fd2f --- /dev/null +++ b/v1.43/021954z67.json @@ -0,0 +1,96 @@ +{ + "ip_addresses": [], + "aliases": [ + "National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care Greater Manchester", + "NIHR CLAHRC Greater Manchester", + "NIHR Collaborations for Leadership in Applied Health Research and Care" + ], + "acronyms": [ + "ARC-GM", + "CLAHRC GM", + "NIHR CLAHRC GM" + ], + "links": [ + "https://arc-gm.nihr.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "NIHR Applied Research Collaboration Greater Manchester", + "wikipedia_url": null, + "addresses": [ + { + "lat": 53.45, + "lng": -2.23333, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Greater Manchester", + "geonames_city": { + "id": 2648108, + "city": "Greater Manchester", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 1089 7795", + "all": [ + "0000 0005 1089 7795" + ] + }, + "FundRef": { + "preferred": "501100012358", + "all": [ + "501100012358" + ] + } + }, + "established": 2019, + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "Parent", + "id": "https://ror.org/0187kwz08" + } + ], + "email_address": null, + "id": "https://ror.org/021954z67", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/021xexe56.json b/v1.43/021xexe56.json new file mode 100644 index 000000000..361123af4 --- /dev/null +++ b/v1.43/021xexe56.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/021xexe56", + "name": "Laboratoire Aimé Cotton", + "email_address": null, + "ip_addresses": [], + "established": 1927, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.lac.universite-paris-saclay.fr" + ], + "aliases": [ + "Aimé Cotton Laboratory" + ], + "acronyms": [ + "LAC" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0623 5425" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR9188" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "47001084" + ] + }, + "GRID": { + "preferred": "grid.462747.4", + "all": "grid.462747.4" + } + } +} \ No newline at end of file diff --git a/v1.43/022dvs210.json b/v1.43/022dvs210.json new file mode 100644 index 000000000..fa4121a29 --- /dev/null +++ b/v1.43/022dvs210.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/022dvs210", + "name": "Institute of Biochemistry", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "HUN-REN Szegedi Biológiai Kutatóközpont", + "type": "Parent", + "id": "https://ror.org/016gb1631" + } + ], + "addresses": [ + { + "lat": 46.253, + "lng": 20.14824, + "state": null, + "state_code": null, + "city": "Szeged", + "geonames_city": { + "id": 715429, + "city": "Szeged", + "geonames_admin1": { + "name": "Csongrád", + "id": 721589, + "ascii_name": "Csongrád", + "code": "HU.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 719819 + } + ], + "links": [ + "http://www.brc.hu/biochemistry.php?change_lang=en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Biokémiai Intézet Szegedi Biológiai Kutatóközpont Magyar Tudományos Akadémia", + "iso639": "hu" + } + ], + "country": { + "country_name": "Hungary", + "country_code": "HU" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0479 9817" + ] + }, + "GRID": { + "preferred": "grid.481814.0", + "all": "grid.481814.0" + } + } +} \ No newline at end of file diff --git a/v1.43/022fjwc94.json b/v1.43/022fjwc94.json new file mode 100644 index 000000000..40b3a1f6c --- /dev/null +++ b/v1.43/022fjwc94.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/022fjwc94", + "name": "Concordia Theological Seminary", + "email_address": null, + "ip_addresses": [], + "established": 1846, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 41.1306, + "lng": -85.12886, + "state": null, + "state_code": null, + "city": "Fort Wayne", + "geonames_city": { + "id": 4920423, + "city": "Fort Wayne", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Allen", + "id": 4917555, + "ascii_name": "Allen", + "code": "US.IN.003" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.ctsfw.edu/" + ], + "aliases": [], + "acronyms": [ + "CTSFW" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Concordia_Theological_Seminary", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2294 2152" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "430405" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1800537" + ] + }, + "GRID": { + "preferred": "grid.431714.4", + "all": "grid.431714.4" + } + } +} \ No newline at end of file diff --git a/v1.43/022pakb16.json b/v1.43/022pakb16.json new file mode 100644 index 000000000..27e401099 --- /dev/null +++ b/v1.43/022pakb16.json @@ -0,0 +1,74 @@ +{ + "ip_addresses": [], + "aliases": [ + "Consorzio Di Ricerca Per L'Energia E Le Applicazioni Technologiche Dell'Elettromagnetismo", + "Consortium for Energy Research and Technological Applications of Electromagnetism" + ], + "acronyms": [ + "CREATE" + ], + "links": [ + "https://www.create.unina.it" + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "name": "C.R.E.A.T.E. Consorzio Di Ricerca Per L'Energia E Le Applicazioni Technologiche Dell'Elettromagnetismo", + "wikipedia_url": null, + "addresses": [ + { + "lat": 40.85216, + "lng": 14.26811, + "state": null, + "state_code": null, + "country_geonames_id": 3175395, + "city": "Naples", + "geonames_city": { + "id": 3172394, + "city": "Naples", + "geonames_admin1": { + "name": "Campania", + "ascii_name": "Campania", + "id": 3181042, + "code": "IT.04" + }, + "geonames_admin2": { + "name": "Naples", + "id": 3172391, + "ascii_name": "Naples", + "code": "IT.04.NA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/022pakb16", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/022rydv31.json b/v1.43/022rydv31.json new file mode 100644 index 000000000..df81ab778 --- /dev/null +++ b/v1.43/022rydv31.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/022rydv31", + "name": "Inland Fisheries Ireland", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.33306, + "lng": -6.24889, + "state": null, + "state_code": null, + "city": "Dublin", + "geonames_city": { + "id": 2964574, + "city": "Dublin", + "geonames_admin1": { + "name": "Leinster", + "id": 7521314, + "ascii_name": "Leinster", + "code": "IE.L" + }, + "geonames_admin2": { + "name": "Dublin City", + "id": 7778677, + "ascii_name": "Dublin City", + "code": "IE.L.33" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2963597 + } + ], + "links": [ + "https://www.fisheriesireland.ie" + ], + "aliases": [ + "Fishing in Ireland", + "Angling Ireland" + ], + "acronyms": [ + "IFI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Inland_Fisheries_Ireland", + "labels": [ + { + "label": "Iascach Intíre Éireann", + "iso639": "ga" + } + ], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0510 4503", + "all": [ + "0000 0004 0510 4503" + ] + }, + "FundRef": { + "preferred": "501100012354", + "all": [ + "501100012354" + ] + }, + "Wikidata": { + "preferred": "Q56278286", + "all": [ + "Q56278286" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/023a2er20.json b/v1.43/023a2er20.json new file mode 100644 index 000000000..b7c06a859 --- /dev/null +++ b/v1.43/023a2er20.json @@ -0,0 +1,89 @@ +{ + "ip_addresses": [], + "aliases": [ + "CRUK and EPSRC Cancer Imaging Centre in Cambridge and Manchester" + ], + "acronyms": [], + "links": [ + "https://www.cruk.cam.ac.uk/research-groups/brindle-group/cancer-imaging-centre/" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Cancer Imaging Centre", + "wikipedia_url": null, + "addresses": [ + { + "lat": 52.2, + "lng": 0.11667, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Cambridge", + "geonames_city": { + "id": 2653941, + "city": "Cambridge", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Cambridgeshire", + "id": 2653940, + "ascii_name": "Cambridgeshire", + "code": "GB.ENG.C3" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "501100014679", + "all": [ + "501100014679" + ] + } + }, + "established": 2013, + "relationships": [ + { + "label": "University of Cambridge", + "type": "Parent", + "id": "https://ror.org/013meh722" + }, + { + "label": "University of Manchester", + "type": "Parent", + "id": "https://ror.org/027m9bs27" + } + ], + "email_address": null, + "id": "https://ror.org/023a2er20", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/023hj4e57.json b/v1.43/023hj4e57.json new file mode 100644 index 000000000..95c3f7205 --- /dev/null +++ b/v1.43/023hj4e57.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/023hj4e57", + "name": "Barcelonaβeta Brain Research Center", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Barcelonaβeta Brain Research Center", + "type": "Successor", + "id": "https://ror.org/03k4wdb90" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.barcelonabeta.org" + ], + "aliases": [ + "Barcelonabeta Brain Research Center" + ], + "acronyms": [ + "BBRC" + ], + "status": "withdrawn", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7677 6809", + "all": [ + "0000 0004 7677 6809" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/023kaz366.json b/v1.43/023kaz366.json new file mode 100644 index 000000000..89e6edd29 --- /dev/null +++ b/v1.43/023kaz366.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/023kaz366", + "name": "Provita", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 10.48801, + "lng": -66.87919, + "state": null, + "state_code": null, + "city": "Caracas", + "geonames_city": { + "id": 3646738, + "city": "Caracas", + "geonames_admin1": { + "name": "Distrito Federal", + "id": 3640847, + "ascii_name": "Distrito Federal", + "code": "VE.25" + }, + "geonames_admin2": { + "name": "Libertador Municipality", + "id": 8129256, + "ascii_name": "Libertador Municipality", + "code": "VE.25.0101" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3625428 + } + ], + "links": [ + "https://www.provita.org.ve" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Venezuela", + "country_code": "VE" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 5901 7747", + "all": [ + "0000 0004 5901 7747" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004246" + ] + }, + "GRID": { + "preferred": "grid.469370.f", + "all": "grid.469370.f" + }, + "Wikidata": { + "preferred": "Q29052472", + "all": [ + "Q29052472" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/02495e989.json b/v1.43/02495e989.json new file mode 100644 index 000000000..2a3eda21d --- /dev/null +++ b/v1.43/02495e989.json @@ -0,0 +1,128 @@ +{ + "id": "https://ror.org/02495e989", + "name": "UCLouvain", + "email_address": "", + "ip_addresses": [], + "established": 1425, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 50.66829, + "lng": 4.61443, + "state": null, + "state_code": null, + "city": "Louvain-la-Neuve", + "geonames_city": { + "id": 2792073, + "city": "Louvain-la-Neuve", + "geonames_admin1": { + "name": "Wallonia", + "id": 3337387, + "ascii_name": "Wallonia", + "code": "BE.WAL" + }, + "geonames_admin2": { + "name": "Walloon Brabant Province", + "id": 3333251, + "ascii_name": "Walloon Brabant Province", + "code": "BE.WAL.WBR" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2802361 + } + ], + "links": [ + "https://uclouvain.be" + ], + "aliases": [ + "Université catholique de Belgique", + "Université catholique de Louvain" + ], + "acronyms": [ + "UCL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Universit%C3%A9_catholique_de_Louvain", + "labels": [ + { + "label": "Catholic University of Louvain", + "iso639": "en" + } + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2294 713X" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100007355", + "100007370", + "501100005041", + "501100008135", + "501100005043" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "398478" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q378134" + ] + }, + "GRID": { + "preferred": "grid.7942.8", + "all": "grid.7942.8" + } + } +} \ No newline at end of file diff --git a/v1.43/024mrxd33.json b/v1.43/024mrxd33.json new file mode 100644 index 000000000..1a41a5925 --- /dev/null +++ b/v1.43/024mrxd33.json @@ -0,0 +1,171 @@ +{ + "id": "https://ror.org/024mrxd33", + "name": "University of Leeds", + "email_address": "", + "ip_addresses": [], + "established": 1904, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "Centre for the Observation and Modelling of Earthquakes, Volcanoes and Tectonics", + "type": "Child", + "id": "https://ror.org/047d2d387" + }, + { + "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" + } + ], + "addresses": [ + { + "lat": 53.79648, + "lng": -1.54785, + "state": null, + "state_code": null, + "city": "Leeds", + "geonames_city": { + "id": 2644688, + "city": "Leeds", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Leeds", + "id": 3333164, + "ascii_name": "Leeds", + "code": "GB.ENG.H3" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.leeds.ac.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Leeds", + "labels": [ + { + "label": "Prifysgol Leeds", + "iso639": "cy" + } + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1936 8403" + ] + }, + "FundRef": { + "preferred": "501100000777", + "all": [ + "501100000777", + "501100003466", + "501100004294" + ] + }, + "HESA": { + "preferred": null, + "all": [ + "0124" + ] + }, + "UCAS": { + "preferred": null, + "all": [ + "L23" + ] + }, + "UKPRN": { + "preferred": null, + "all": [ + "10007795" + ] + }, + "OrgRef": { + "preferred": "196911", + "all": [ + "196911", + "14077682" + ] + }, + "Wikidata": { + "preferred": "Q503424", + "all": [ + "Q503424", + "Q26226240" + ] + }, + "GRID": { + "preferred": "grid.9909.9", + "all": "grid.9909.9" + } + } +} \ No newline at end of file diff --git a/v1.43/024nr0776.json b/v1.43/024nr0776.json new file mode 100644 index 000000000..c6271de18 --- /dev/null +++ b/v1.43/024nr0776.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/024nr0776", + "name": "Catholic University of Applied Sciences of North Rhine – Westphalia", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Deutsche Institut für angewandte Pflegeforschung e.V.", + "type": "Related", + "id": "https://ror.org/02bjrmf75" + } + ], + "addresses": [ + { + "lat": 50.93333, + "lng": 6.95, + "state": null, + "state_code": null, + "city": "Cologne", + "geonames_city": { + "id": 2886242, + "city": "Cologne", + "geonames_admin1": { + "name": "North Rhine-Westphalia", + "id": 2861876, + "ascii_name": "North Rhine-Westphalia", + "code": "DE.07" + }, + "geonames_admin2": { + "name": "Cologne District", + "id": 2886241, + "ascii_name": "Cologne District", + "code": "DE.07.053" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "http://www.katho-nrw.de/en/katho-nrw/" + ], + "aliases": [], + "acronyms": [ + "KatHO NRW" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Katholische Hochschule Nordrhein-Westfalen", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1010 8830" + ] + }, + "GRID": { + "preferred": "grid.466086.a", + "all": "grid.466086.a" + } + } +} \ No newline at end of file diff --git a/v1.43/024pk8k39.json b/v1.43/024pk8k39.json new file mode 100644 index 000000000..f020e9d1d --- /dev/null +++ b/v1.43/024pk8k39.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/024pk8k39", + "name": "Amalia Kinderziekenhuis", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Radboud University Medical Center", + "type": "Parent", + "id": "https://ror.org/05wg1m734" + } + ], + "addresses": [ + { + "lat": 51.8425, + "lng": 5.85278, + "state": null, + "state_code": null, + "city": "Nijmegen", + "geonames_city": { + "id": 2750053, + "city": "Nijmegen", + "geonames_admin1": { + "name": "Gelderland", + "id": 2755634, + "ascii_name": "Gelderland", + "code": "NL.03" + }, + "geonames_admin2": { + "name": "Nijmegen Municipality", + "id": 2750052, + "ascii_name": "Nijmegen Municipality", + "code": "NL.03.0268" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2750405 + } + ], + "links": [ + "http://www.amaliakinderziekenhuis.nl/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30261221" + ] + }, + "GRID": { + "preferred": "grid.461578.9", + "all": "grid.461578.9" + } + } +} \ No newline at end of file diff --git a/v1.43/024z2rq82.json b/v1.43/024z2rq82.json new file mode 100644 index 000000000..f5aacc805 --- /dev/null +++ b/v1.43/024z2rq82.json @@ -0,0 +1,127 @@ +{ + "id": "https://ror.org/024z2rq82", + "name": "Heinrich Heine University Düsseldorf", + "email_address": "", + "ip_addresses": [], + "established": 1965, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 51.22172, + "lng": 6.77616, + "state": null, + "state_code": null, + "city": "Düsseldorf", + "geonames_city": { + "id": 2934246, + "city": "Düsseldorf", + "geonames_admin1": { + "name": "North Rhine-Westphalia", + "id": 2861876, + "ascii_name": "North Rhine-Westphalia", + "code": "DE.07" + }, + "geonames_admin2": { + "name": "Düsseldorf District", + "id": 2934245, + "ascii_name": "Düsseldorf District", + "code": "DE.07.051" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "http://www.uni-duesseldorf.de/home/en/home.html" + ], + "aliases": [], + "acronyms": [ + "HHU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_D%C3%BCsseldorf", + "labels": [ + { + "label": "Heinrich-Heine-Universität Düsseldorf", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2176 9917" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100003484" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "1020838" + ] + }, + "Wikidata": { + "preferred": "Q317032", + "all": [ + "Q317032", + "Q2496254" + ] + }, + "GRID": { + "preferred": "grid.411327.2", + "all": "grid.411327.2" + } + } +} \ No newline at end of file diff --git a/v1.43/02525b202.json b/v1.43/02525b202.json new file mode 100644 index 000000000..40f575d63 --- /dev/null +++ b/v1.43/02525b202.json @@ -0,0 +1,79 @@ +{ + "ip_addresses": [], + "aliases": [ + "Beijing Renchuang Technology Group Co., Ltd.", + "Beijing Renchuang Technology Group Co.", + "Beijing Renchuang Technology Group", + "Beijing Renchuang Technology Group Company Limited" + ], + "acronyms": [], + "links": [ + "https://www.rechsand.com" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "Beijing Renchuang Technology Group Co., Ltd. (China)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "name": "Beijing", + "ascii_name": "Beijing", + "id": 2038349, + "code": "CN.22" + }, + "geonames_admin2": { + "name": "Beijing", + "id": 11876380, + "ascii_name": "Beijing", + "code": "CN.22.11876380" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02525b202", + "labels": [ + { + "label": "北京仁创科技集团有限公司", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/0259fwx54.json b/v1.43/0259fwx54.json new file mode 100644 index 000000000..22c6ef7cf --- /dev/null +++ b/v1.43/0259fwx54.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/0259fwx54", + "name": "ZB MED - Information Centre for Life Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.93333, + "lng": 6.95, + "state": null, + "state_code": null, + "city": "Cologne", + "geonames_city": { + "id": 2886242, + "city": "Cologne", + "geonames_admin1": { + "name": "North Rhine-Westphalia", + "id": 2861876, + "ascii_name": "North Rhine-Westphalia", + "code": "DE.07" + }, + "geonames_admin2": { + "name": "Cologne District", + "id": 2886241, + "ascii_name": "Cologne District", + "code": "DE.07.053" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.zbmed.de" + ], + "aliases": [ + "German National Library of Medicine (ZB MED) - Information Centre for Life Sciences", + "Deutsche Zentralbibliothek für Medizin (ZB MED) - Informationszentrum Lebenswissenschaften", + "German National Library of Medicine", + "Deutsche Zentralbibliothek für Medizin" + ], + "acronyms": [ + "ZB MED" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/German_National_Library_of_Medicine", + "labels": [ + { + "label": "ZBMED - Informationszentrum Lebenswissenschaften", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2167 4053" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1204536" + ] + }, + "GRID": { + "preferred": "grid.461646.7", + "all": "grid.461646.7" + } + } +} \ No newline at end of file diff --git a/v1.43/025dmzr60.json b/v1.43/025dmzr60.json new file mode 100644 index 000000000..4c0d97edf --- /dev/null +++ b/v1.43/025dmzr60.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "AGA" + ], + "links": [ + "https://www.theaga.org" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "American Genetic Association", + "wikipedia_url": "https://en.wikipedia.org/wiki/American_Genetic_Association", + "addresses": [ + { + "lat": 26.71534, + "lng": -80.05337, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "West Palm Beach", + "geonames_city": { + "id": 4177887, + "city": "West Palm Beach", + "geonames_admin1": { + "name": "Florida", + "ascii_name": "Florida", + "id": 4155751, + "code": "US.FL" + }, + "geonames_admin2": { + "name": "Palm Beach", + "id": 4167510, + "ascii_name": "Palm Beach", + "code": "US.FL.099" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0508 0660", + "all": [ + "0000 0004 0508 0660" + ] + }, + "Wikidata": { + "preferred": "Q4743883", + "all": [ + "Q4743883" + ] + } + }, + "established": 1903, + "relationships": [], + "email_address": null, + "id": "https://ror.org/025dmzr60", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/025ecp212.json b/v1.43/025ecp212.json new file mode 100644 index 000000000..b70c84e8b --- /dev/null +++ b/v1.43/025ecp212.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/025ecp212", + "name": "United Kingdom Clinical Research Collaboration", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Communicating Diet and Activity Research", + "type": "Related", + "id": "https://ror.org/05tamah23" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.ukcrc.org/" + ], + "aliases": [ + "UK Clinical Research Collaboration" + ], + "acronyms": [ + "UKCRC" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "preferred": "100011417", + "all": [ + "100011417" + ] + }, + "GRID": { + "preferred": "grid.451398.2", + "all": "grid.451398.2" + } + } +} \ No newline at end of file diff --git a/v1.43/025r5qe02.json b/v1.43/025r5qe02.json new file mode 100644 index 000000000..2700d60c2 --- /dev/null +++ b/v1.43/025r5qe02.json @@ -0,0 +1,133 @@ +{ + "id": "https://ror.org/025r5qe02", + "name": "Syracuse University", + "email_address": null, + "ip_addresses": [], + "established": 1870, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Syracuse VA Medical Center", + "type": "Related", + "id": "https://ror.org/0332k3m42" + }, + { + "label": "Qualitative Data Repository", + "type": "Child", + "id": "https://ror.org/014trz974" + }, + { + "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" + } + ], + "addresses": [ + { + "lat": 43.04812, + "lng": -76.14742, + "state": null, + "state_code": null, + "city": "Syracuse", + "geonames_city": { + "id": 5140405, + "city": "Syracuse", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Onondaga", + "id": 5129867, + "ascii_name": "Onondaga", + "code": "US.NY.067" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.syr.edu/" + ], + "aliases": [], + "acronyms": [ + "SU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Syracuse_University", + "labels": [ + { + "label": "Universidad de Siracusa", + "iso639": "es" + }, + { + "label": "Université de syracuse", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2189 1568" + ] + }, + "FundRef": { + "preferred": "100007126", + "all": [ + "100007126", + "100008568" + ] + }, + "OrgRef": { + "preferred": "29353", + "all": [ + "29353", + "719684", + "3154365" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q617433" + ] + }, + "GRID": { + "preferred": "grid.264484.8", + "all": "grid.264484.8" + } + } +} \ No newline at end of file diff --git a/v1.43/0262br971.json b/v1.43/0262br971.json new file mode 100644 index 000000000..870230dcb --- /dev/null +++ b/v1.43/0262br971.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/0262br971", + "name": "Innovation and Development in Agriculture and Food", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://umr-innovation.cirad.fr/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0455 2011" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30261417" + ] + }, + "GRID": { + "preferred": "grid.462283.9", + "all": "grid.462283.9" + } + } +} \ No newline at end of file diff --git a/v1.43/026z37f85.json b/v1.43/026z37f85.json new file mode 100644 index 000000000..a73508f1c --- /dev/null +++ b/v1.43/026z37f85.json @@ -0,0 +1,92 @@ +{ + "ip_addresses": [], + "aliases": [ + "Sistema Nacional de Salud de España", + "Spanish National Health System", + "National Health System of Spain" + ], + "acronyms": [], + "links": [ + "https://www.sanidad.gob.es/organizacion/sns/home.htm" + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "name": "Sistema Nacional de Salud", + "wikipedia_url": "https://en.wikipedia.org/wiki/Spanish_National_Health_System", + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "country_geonames_id": 2510769, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "ascii_name": "Madrid", + "id": 3117732, + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government", + "Healthcare" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q9077957", + "all": [ + "Q9077957" + ] + } + }, + "established": 1986, + "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" + } + ], + "email_address": null, + "id": "https://ror.org/026z37f85", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/027620g33.json b/v1.43/027620g33.json new file mode 100644 index 000000000..626fc580e --- /dev/null +++ b/v1.43/027620g33.json @@ -0,0 +1,77 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "FGB" + ], + "links": [ + "https://www.fondazionebassetti.org" + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "name": "Fondazione Giannino Bassetti", + "wikipedia_url": null, + "addresses": [ + { + "lat": 45.46427, + "lng": 9.18951, + "state": null, + "state_code": null, + "country_geonames_id": 3175395, + "city": "Milan", + "geonames_city": { + "id": 3173435, + "city": "Milan", + "geonames_admin1": { + "name": "Lombardy", + "ascii_name": "Lombardy", + "id": 3174618, + "code": "IT.09" + }, + "geonames_admin2": { + "name": "Milan", + "id": 3173434, + "ascii_name": "Milan", + "code": "IT.09.MI" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": {}, + "established": 1994, + "relationships": [ + { + "label": "Globus et Locus", + "type": "Related", + "id": "https://ror.org/01ym3w380" + } + ], + "email_address": null, + "id": "https://ror.org/027620g33", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/027a33v57.json b/v1.43/027a33v57.json new file mode 100644 index 000000000..2a209617c --- /dev/null +++ b/v1.43/027a33v57.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/027a33v57", + "name": "University Of Bristol Dental Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1906, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "Related", + "id": "https://ror.org/0524sp257" + } + ], + "addresses": [ + { + "lat": 51.45523, + "lng": -2.59665, + "state": null, + "state_code": null, + "city": "Bristol", + "geonames_city": { + "id": 2654675, + "city": "Bristol", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bristol", + "id": 3333134, + "ascii_name": "Bristol", + "code": "GB.ENG.B7" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/university-of-bristol-dental-hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Bristol_Dental_Hospital", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0399 5138" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q22909562" + ] + }, + "GRID": { + "preferred": "grid.415174.2", + "all": "grid.415174.2" + } + } +} \ No newline at end of file diff --git a/v1.43/027jsza11.json b/v1.43/027jsza11.json new file mode 100644 index 000000000..bc8dbf3a5 --- /dev/null +++ b/v1.43/027jsza11.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/027jsza11", + "name": "Vidyasagar University", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Panskura Banamali College", + "type": "Related", + "id": "https://ror.org/01hn2pk88" + } + ], + "addresses": [ + { + "lat": 22.42114, + "lng": 87.32257, + "state": null, + "state_code": null, + "city": "Medinīpur", + "geonames_city": { + "id": 1263220, + "city": "Medinīpur", + "geonames_admin1": { + "name": "West Bengal", + "id": 1252881, + "ascii_name": "West Bengal", + "code": "IN.28" + }, + "geonames_admin2": { + "name": "West Midnapore", + "id": 8335137, + "ascii_name": "West Midnapore", + "code": "IN.28.344" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1269750 + } + ], + "links": [ + "http://www.vidyasagar.ac.in/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Vidyasagar_University", + "labels": [ + { + "label": "বিদ্যাসাগর বিশ্ববিদ্যালয়", + "iso639": "bn" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9152 1805" + ] + }, + "FundRef": { + "preferred": "100018263", + "all": [ + "100018263" + ] + }, + "OrgRef": { + "preferred": "3301021", + "all": [ + "3301021", + "34481565", + "34482230", + "5957123" + ] + }, + "Wikidata": { + "preferred": "Q7928229", + "all": [ + "Q7928229", + "Q6734116", + "Q30633403" + ] + }, + "GRID": { + "preferred": "grid.412834.8", + "all": "grid.412834.8" + } + } +} \ No newline at end of file diff --git a/v1.43/027m9bs27.json b/v1.43/027m9bs27.json new file mode 100644 index 000000000..00c9252b2 --- /dev/null +++ b/v1.43/027m9bs27.json @@ -0,0 +1,206 @@ +{ + "id": "https://ror.org/027m9bs27", + "name": "University of Manchester", + "email_address": "", + "ip_addresses": [], + "established": 1824, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "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": "Cancer Research UK Manchester Centre", + "type": "Child", + "id": "https://ror.org/033svsm10" + }, + { + "label": "Cancer Imaging Centre", + "type": "Child", + "id": "https://ror.org/023a2er20" + } + ], + "addresses": [ + { + "lat": 53.48095, + "lng": -2.23743, + "state": null, + "state_code": null, + "city": "Manchester", + "geonames_city": { + "id": 2643123, + "city": "Manchester", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Manchester", + "id": 3333169, + "ascii_name": "Manchester", + "code": "GB.ENG.I2" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.manchester.ac.uk/" + ], + "aliases": [ + "Manchester University", + "University of Manchester Institute of Science and Technology", + "Victoria University of Manchester" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Manchester", + "labels": [ + { + "label": "Prifysgol Manceinion", + "iso639": "cy" + } + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2166 2407" + ] + }, + "FundRef": { + "preferred": "501100000770", + "all": [ + "501100000770", + "100007545", + "100007546", + "501100000584", + "501100006628", + "100012371" + ] + }, + "HESA": { + "preferred": null, + "all": [ + "0204" + ] + }, + "UCAS": { + "preferred": null, + "all": [ + "M20", + "M25" + ] + }, + "UKPRN": { + "preferred": null, + "all": [ + "10007798" + ] + }, + "OrgRef": { + "preferred": "83266", + "all": [ + "83266", + "9935213", + "2610980", + "2677253", + "47002233" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q230899" + ] + }, + "GRID": { + "preferred": "grid.5379.8", + "all": "grid.5379.8" + } + } +} \ No newline at end of file diff --git a/v1.43/027t90e82.json b/v1.43/027t90e82.json new file mode 100644 index 000000000..2915a33d5 --- /dev/null +++ b/v1.43/027t90e82.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/027t90e82", + "name": "Vitebsk State Academy of Veterinary Medicine", + "email_address": null, + "ip_addresses": [], + "established": 1924, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 55.1904, + "lng": 30.2049, + "state": null, + "state_code": null, + "city": "Vitebsk", + "geonames_city": { + "id": 620127, + "city": "Vitebsk", + "geonames_admin1": { + "name": "Vitebsk", + "id": 620134, + "ascii_name": "Vitebsk", + "code": "BY.07" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 630336 + } + ], + "links": [ + "https://www.vsavm.by" + ], + "aliases": [], + "acronyms": [ + "VGAVM" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Віцебская дзяржаўная акадэмія ветэрынарнай медыцыны", + "iso639": "be" + } + ], + "country": { + "country_name": "Belarus", + "country_code": "BY" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 5928 8379" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q4112332" + ] + }, + "GRID": { + "preferred": "grid.445309.f", + "all": "grid.445309.f" + } + } +} \ No newline at end of file diff --git a/v1.43/027yspv17.json b/v1.43/027yspv17.json new file mode 100644 index 000000000..c4a710f38 --- /dev/null +++ b/v1.43/027yspv17.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/027yspv17", + "name": "Tinamenor (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.46472, + "lng": -3.80444, + "state": null, + "state_code": null, + "city": "Santander", + "geonames_city": { + "id": 3109718, + "city": "Santander", + "geonames_admin1": { + "name": "Cantabria", + "id": 3336898, + "ascii_name": "Cantabria", + "code": "ES.39" + }, + "geonames_admin2": { + "name": "Cantabria", + "id": 3109716, + "ascii_name": "Cantabria", + "code": "ES.39.S" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.tinamenor.es/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30292337" + ] + }, + "GRID": { + "preferred": "grid.438705.d", + "all": "grid.438705.d" + } + } +} \ No newline at end of file diff --git a/v1.43/02805zw73.json b/v1.43/02805zw73.json new file mode 100644 index 000000000..f52672124 --- /dev/null +++ b/v1.43/02805zw73.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/02805zw73", + "name": "Hôpital d'Youville de Sherbrooke", + "email_address": null, + "ip_addresses": [], + "established": 1875, + "types": [ + "Healthcare" + ], + "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" + } + ], + "addresses": [ + { + "lat": 45.40008, + "lng": -71.89908, + "state": null, + "state_code": null, + "city": "Sherbrooke", + "geonames_city": { + "id": 6146143, + "city": "Sherbrooke", + "geonames_admin1": { + "name": "Quebec", + "id": 6115047, + "ascii_name": "Quebec", + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Estrie", + "id": 5949621, + "ascii_name": "Estrie", + "code": "CA.10.05" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://www.csss-iugs.ca/details-article-hitorique/detail/2008-11-24/d-youville-le-premier-hopital-de-sherbrooke" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "GRID": { + "preferred": "grid.459275.8", + "all": "grid.459275.8" + } + } +} \ No newline at end of file diff --git a/v1.43/028696h48.json b/v1.43/028696h48.json new file mode 100644 index 000000000..fe963f580 --- /dev/null +++ b/v1.43/028696h48.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/028696h48", + "name": "Austrian BioImaging/CMI", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "name": "Vienna", + "id": 2761367, + "ascii_name": "Vienna", + "code": "AT.09" + }, + "geonames_admin2": { + "name": "Vienna", + "id": 2761333, + "ascii_name": "Vienna", + "code": "AT.09.900" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2782113 + } + ], + "links": [ + "https://www.bioimaging-austria.at" + ], + "aliases": [ + "Austrian BioImaging Correlated Multimodal Imaging (CMI)" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.43/0289cxp23.json b/v1.43/0289cxp23.json new file mode 100644 index 000000000..b450c22b6 --- /dev/null +++ b/v1.43/0289cxp23.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/0289cxp23", + "name": "Hospital Virgen de la Salud", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Healthcare" + ], + "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" + } + ], + "addresses": [ + { + "lat": 39.8581, + "lng": -4.02263, + "state": null, + "state_code": null, + "city": "Toledo", + "geonames_city": { + "id": 2510409, + "city": "Toledo", + "geonames_admin1": { + "name": "Castille-La Mancha", + "id": 2593111, + "ascii_name": "Castille-La Mancha", + "code": "ES.54" + }, + "geonames_admin2": { + "name": "Toledo", + "id": 2510407, + "ascii_name": "Toledo", + "code": "ES.54.TO" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.cht.es/cht/cm/cht/tkContent?pgseed=1493207263184&idContent=6060&locale=es_ES&textOnly=false" + ], + "aliases": [], + "acronyms": [ + "CHT" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1795 0563" + ] + }, + "GRID": { + "preferred": "grid.413514.6", + "all": "grid.413514.6" + } + } +} \ No newline at end of file diff --git a/v1.43/028rypz17.json b/v1.43/028rypz17.json new file mode 100644 index 000000000..3f3b30abc --- /dev/null +++ b/v1.43/028rypz17.json @@ -0,0 +1,140 @@ +{ + "id": "https://ror.org/028rypz17", + "name": "University of Paris-Sud", + "email_address": null, + "ip_addresses": [], + "established": 1971, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.u-psud.fr/en/index.html" + ], + "aliases": [ + "University of Paris XI" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Paris-Sud", + "labels": [ + { + "label": "Université Paris-Sud", + "iso639": "fr" + }, + { + "label": "Universitat de París Sud", + "iso639": "ca" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2171 2558" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100007486" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "30874583" + ] + }, + "Wikidata": { + "preferred": "Q1480643", + "all": [ + "Q1480643" + ] + }, + "GRID": { + "preferred": "grid.5842.b", + "all": "grid.5842.b" + } + } +} \ No newline at end of file diff --git a/v1.43/028vrr082.json b/v1.43/028vrr082.json new file mode 100644 index 000000000..c79f3c3a2 --- /dev/null +++ b/v1.43/028vrr082.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/028vrr082", + "name": "Mars (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1911, + "types": [ + "Company" + ], + "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" + } + ], + "addresses": [ + { + "lat": 38.93428, + "lng": -77.17748, + "state": null, + "state_code": null, + "city": "McLean", + "geonames_city": { + "id": 4772354, + "city": "McLean", + "geonames_admin1": { + "name": "Virginia", + "id": 6254928, + "ascii_name": "Virginia", + "code": "US.VA" + }, + "geonames_admin2": { + "name": "Fairfax", + "id": 4758041, + "ascii_name": "Fairfax", + "code": "US.VA.059" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.mars.com/global/index.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Mars,_Incorporated", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "preferred": "100007246", + "all": [ + "100007246", + "100009870", + "100005150" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q695087" + ] + }, + "GRID": { + "preferred": "grid.467419.9", + "all": "grid.467419.9" + } + } +} \ No newline at end of file diff --git a/v1.43/029gxzx35.json b/v1.43/029gxzx35.json new file mode 100644 index 000000000..57a29af4c --- /dev/null +++ b/v1.43/029gxzx35.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/029gxzx35", + "name": "Centre Chirurgical Marie Lannelongue", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.78889, + "lng": 2.27078, + "state": null, + "state_code": null, + "city": "Le Plessis-Robinson", + "geonames_city": { + "id": 3002650, + "city": "Le Plessis-Robinson", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Hauts-de-Seine", + "id": 3013657, + "ascii_name": "Hauts-de-Seine", + "code": "FR.11.92" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.ccml.fr/en/index_en.php" + ], + "aliases": [], + "acronyms": [ + "CCML" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0266 7990" + ] + }, + "GRID": { + "preferred": "grid.417823.b", + "all": "grid.417823.b" + } + } +} \ No newline at end of file diff --git a/v1.43/02a2pkk25.json b/v1.43/02a2pkk25.json new file mode 100644 index 000000000..547298782 --- /dev/null +++ b/v1.43/02a2pkk25.json @@ -0,0 +1,72 @@ +{ + "ip_addresses": [], + "aliases": [ + "Forum transregionale Studien", + "Forum for Transregional Studies" + ], + "acronyms": [], + "links": [ + "https://www.forum-transregionale-studien.de" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "Forum transregionale Studien e.V.", + "wikipedia_url": null, + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "name": "Berlin", + "ascii_name": "Berlin", + "id": 2950157, + "code": "DE.16" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.16.00" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02a2pkk25", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02a37a132.json b/v1.43/02a37a132.json new file mode 100644 index 000000000..571c9c02a --- /dev/null +++ b/v1.43/02a37a132.json @@ -0,0 +1,74 @@ +{ + "ip_addresses": [], + "aliases": [ + "International College of Business & Technology", + "ICBT Campus" + ], + "acronyms": [ + "ICBT" + ], + "links": [ + "https://icbt.lk" + ], + "country": { + "country_name": "Sri Lanka", + "country_code": "LK" + }, + "name": "International College of Business and Technology", + "wikipedia_url": null, + "addresses": [ + { + "lat": 6.93548, + "lng": 79.84868, + "state": null, + "state_code": null, + "country_geonames_id": 1227603, + "city": "Colombo", + "geonames_city": { + "id": 1248991, + "city": "Colombo", + "geonames_admin1": { + "name": "Western", + "ascii_name": "Western", + "id": 1223421, + "code": "LK.36" + }, + "geonames_admin2": { + "name": "Colombo District", + "id": 1248990, + "ascii_name": "Colombo District", + "code": "LK.36.11" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": {}, + "established": 2000, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02a37a132", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02ackr434.json b/v1.43/02ackr434.json new file mode 100644 index 000000000..696a87feb --- /dev/null +++ b/v1.43/02ackr434.json @@ -0,0 +1,99 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://www.foundationmedicine.com" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Foundation Medicine (United States)", + "wikipedia_url": "https://en.wikipedia.org/wiki/Foundation_Medicine", + "addresses": [ + { + "lat": 42.3751, + "lng": -71.10561, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Cambridge", + "geonames_city": { + "id": 4931972, + "city": "Cambridge", + "geonames_admin1": { + "name": "Massachusetts", + "ascii_name": "Massachusetts", + "id": 6254926, + "code": "US.MA" + }, + "geonames_admin2": { + "name": "Middlesex", + "id": 4943909, + "ascii_name": "Middlesex", + "code": "US.MA.017" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0599 7276", + "all": [ + "0000 0004 0599 7276" + ] + }, + "Wikidata": { + "preferred": "Q19604401", + "all": [ + "Q19604401" + ] + }, + "FundRef": { + "preferred": "100019714", + "all": [ + "100019714" + ] + } + }, + "established": 2009, + "relationships": [ + { + "label": "Roche (Switzerland)", + "type": "Parent", + "id": "https://ror.org/00by1q217" + } + ], + "email_address": null, + "id": "https://ror.org/02ackr434", + "labels": [ + { + "label": "Foundation Medicine", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02ag0aq56.json b/v1.43/02ag0aq56.json new file mode 100644 index 000000000..abd015864 --- /dev/null +++ b/v1.43/02ag0aq56.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02ag0aq56", + "name": "Centro Tecnológico del Mueble y la Madera de la Región de Murcia", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.61365, + "lng": -1.11468, + "state": null, + "state_code": null, + "city": "Yecla", + "geonames_city": { + "id": 2509402, + "city": "Yecla", + "geonames_admin1": { + "name": "Murcia", + "id": 2513413, + "ascii_name": "Murcia", + "code": "ES.31" + }, + "geonames_admin2": { + "name": "Murcia", + "id": 6355234, + "ascii_name": "Murcia", + "code": "ES.31.MU" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://cetem.es" + ], + "aliases": [], + "acronyms": [ + "CETEM" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Technological Centre of Furniture and Wood of the Region of Murcia", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8337 666X", + "all": [ + "0000 0004 8337 666X" + ] + }, + "GRID": { + "preferred": "grid.432405.4", + "all": "grid.432405.4" + } + } +} \ No newline at end of file diff --git a/v1.43/02ahxdd04.json b/v1.43/02ahxdd04.json new file mode 100644 index 000000000..d87d8055b --- /dev/null +++ b/v1.43/02ahxdd04.json @@ -0,0 +1,125 @@ +{ + "id": "https://ror.org/02ahxdd04", + "name": "Spectrum Health", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Healthcare" + ], + "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" + } + ], + "addresses": [ + { + "lat": 42.96336, + "lng": -85.66809, + "state": null, + "state_code": null, + "city": "Grand Rapids", + "geonames_city": { + "id": 4994358, + "city": "Grand Rapids", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Kent", + "id": 4998005, + "ascii_name": "Kent", + "code": "US.MI.081" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.spectrumhealth.org/" + ], + "aliases": [ + "Spectrum Health System" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Spectrum_Health", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0406 3236" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100001347" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7575297" + ] + }, + "GRID": { + "preferred": "grid.416230.2", + "all": "grid.416230.2" + } + } +} \ No newline at end of file diff --git a/v1.43/02aj13c28.json b/v1.43/02aj13c28.json new file mode 100644 index 000000000..206304071 --- /dev/null +++ b/v1.43/02aj13c28.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/02aj13c28", + "name": "Helmholtz-Zentrum Berlin für Materialien und Energie", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Helmholtz Association of German Research Centres", + "type": "Parent", + "id": "https://ror.org/0281dp749" + }, + { + "label": "LEAPS", + "type": "Related", + "id": "https://ror.org/04wcn4e27" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "name": "Berlin", + "id": 2950157, + "ascii_name": "Berlin", + "code": "DE.16" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.16.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.helmholtz-berlin.de/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Helmholtz-Zentrum_Berlin", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1090 3682" + ] + }, + "FundRef": { + "preferred": "100013110", + "all": [ + "100013110" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "47000124" + ] + }, + "Wikidata": { + "preferred": "Q314578", + "all": [ + "Q314578", + "Q316122" + ] + }, + "GRID": { + "preferred": "grid.424048.e", + "all": "grid.424048.e" + } + } +} \ No newline at end of file diff --git a/v1.43/02am8se85.json b/v1.43/02am8se85.json new file mode 100644 index 000000000..3a0d3a2b2 --- /dev/null +++ b/v1.43/02am8se85.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/02am8se85", + "name": "Klinik für Schweine", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Zentrum für Klinische Tiermedizin", + "type": "Parent", + "id": "https://ror.org/02qqvpd39" + } + ], + "addresses": [ + { + "lat": 48.25, + "lng": 11.56667, + "state": null, + "state_code": null, + "city": "Oberschleißheim", + "geonames_city": { + "id": 2859147, + "city": "Oberschleißheim", + "geonames_admin1": { + "name": "Bavaria", + "id": 2951839, + "ascii_name": "Bavaria", + "code": "DE.02" + }, + "geonames_admin2": { + "name": "Upper Bavaria", + "id": 2861322, + "ascii_name": "Upper Bavaria", + "code": "DE.02.091" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.schweine.vetmed.uni-muenchen.de/index.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "preferred": "grid.506439.d", + "all": "grid.506439.d" + } + } +} \ No newline at end of file diff --git a/v1.43/02aqatz67.json b/v1.43/02aqatz67.json new file mode 100644 index 000000000..383b63677 --- /dev/null +++ b/v1.43/02aqatz67.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/02aqatz67", + "name": "Xiangtan Electric Manufacturing Group (China)", + "email_address": null, + "ip_addresses": [], + "established": 1936, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 27.85, + "lng": 112.9, + "state": null, + "state_code": null, + "city": "Xiangtan", + "geonames_city": { + "id": 1790492, + "city": "Xiangtan", + "geonames_admin1": { + "name": "Hunan", + "id": 1806691, + "ascii_name": "Hunan", + "code": "CN.11" + }, + "geonames_admin2": { + "name": "Xiangtan Shi", + "id": 1790484, + "ascii_name": "Xiangtan Shi", + "code": "CN.11.4303" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "http://www.xemc.com.cn" + ], + "aliases": [ + "Xiangtan Electric Manufacturing Group Co., Ltd.", + "Xiangtan Electric Manufacturing Group Co.", + "Xiangtan Electric Manufacturing Group", + "湘电集团" + ], + "acronyms": [ + "XEMC" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "湘潭电机股份有限公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 6844 1494" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q55454149" + ] + }, + "GRID": { + "preferred": "grid.497222.8", + "all": "grid.497222.8" + } + } +} \ No newline at end of file diff --git a/v1.43/02aqsxs83.json b/v1.43/02aqsxs83.json new file mode 100644 index 000000000..dce58e272 --- /dev/null +++ b/v1.43/02aqsxs83.json @@ -0,0 +1,140 @@ +{ + "id": "https://ror.org/02aqsxs83", + "name": "University of Oklahoma", + "email_address": null, + "ip_addresses": [], + "established": 1890, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "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": "University of Oklahoma - Tulsa", + "type": "Child", + "id": "https://ror.org/04g1a0w27" + } + ], + "addresses": [ + { + "lat": 35.22257, + "lng": -97.43948, + "state": null, + "state_code": null, + "city": "Norman", + "geonames_city": { + "id": 4543762, + "city": "Norman", + "geonames_admin1": { + "name": "Oklahoma", + "id": 4544379, + "ascii_name": "Oklahoma", + "code": "US.OK" + }, + "geonames_admin2": { + "name": "Cleveland", + "id": 4533690, + "ascii_name": "Cleveland", + "code": "US.OK.027" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.ou.edu/" + ], + "aliases": [], + "acronyms": [ + "UO" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Oklahoma", + "labels": [ + { + "label": "Universidad de Oklahoma", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0447 0018" + ] + }, + "FundRef": { + "preferred": "100007926", + "all": [ + "100007926", + "100008937", + "100008271", + "100013827" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "323072" + ] + }, + "Wikidata": { + "preferred": "Q640652", + "all": [ + "Q640652", + "Q39056078" + ] + }, + "GRID": { + "preferred": "grid.266900.b", + "all": "grid.266900.b" + } + } +} \ No newline at end of file diff --git a/v1.43/02aswte26.json b/v1.43/02aswte26.json new file mode 100644 index 000000000..2ad259d22 --- /dev/null +++ b/v1.43/02aswte26.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/02aswte26", + "name": "Manchester University", + "email_address": null, + "ip_addresses": [], + "established": 1860, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 41.1306, + "lng": -85.12886, + "state": null, + "state_code": null, + "city": "Fort Wayne", + "geonames_city": { + "id": 4920423, + "city": "Fort Wayne", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Allen", + "id": 4917555, + "ascii_name": "Allen", + "code": "US.IN.003" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.manchester.edu/" + ], + "aliases": [ + "Manchester College" + ], + "acronyms": [ + "MU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Manchester_University_(Indiana)", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0445 3429" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "512368" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6747552" + ] + }, + "GRID": { + "preferred": "grid.449071.f", + "all": "grid.449071.f" + } + } +} \ No newline at end of file diff --git a/v1.43/02avhnb77.json b/v1.43/02avhnb77.json new file mode 100644 index 000000000..c5212fb22 --- /dev/null +++ b/v1.43/02avhnb77.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/02avhnb77", + "name": "Emerald Group Publishing (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "The Emerald Foundation", + "type": "Child", + "id": "https://ror.org/031tb8x29" + } + ], + "addresses": [ + { + "lat": 53.84861, + "lng": -1.83857, + "state": null, + "state_code": null, + "city": "Bingley", + "geonames_city": { + "id": 2655642, + "city": "Bingley", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bradford", + "id": 3333131, + "ascii_name": "Bradford", + "code": "GB.ENG.B4" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.emeraldgrouppublishing.com/" + ], + "aliases": [ + "MCB UP Ltd" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Emerald_Group_Publishing", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0379 4459" + ] + }, + "FundRef": { + "preferred": "100013537", + "all": [ + "100013537" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1335379" + ] + }, + "GRID": { + "preferred": "grid.431949.2", + "all": "grid.431949.2" + } + } +} \ No newline at end of file diff --git a/v1.43/02b42av24.json b/v1.43/02b42av24.json new file mode 100644 index 000000000..d7c6f34e5 --- /dev/null +++ b/v1.43/02b42av24.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [ + "Karakalpak Institute of Agriculture and Agrotechnologies" + ], + "acronyms": [ + "IAAK" + ], + "links": [ + "https://tdaunukus.uz" + ], + "country": { + "country_name": "Uzbekistan", + "country_code": "UZ" + }, + "name": "Institute of Agriculture and Agrotechnologies of Karakalpakstan", + "wikipedia_url": null, + "addresses": [ + { + "lat": 42.45306, + "lng": 59.61028, + "state": null, + "state_code": null, + "country_geonames_id": 1512440, + "city": "Nukus", + "geonames_city": { + "id": 601294, + "city": "Nukus", + "geonames_admin1": { + "name": "Karakalpakstan", + "ascii_name": "Karakalpakstan", + "id": 453752, + "code": "UZ.09" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": {}, + "established": 2021, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02b42av24", + "labels": [ + { + "label": "Институт сельского хозяйства и агротехнологий Каракалпакстана", + "iso639": "ru" + }, + { + "label": "Qoraqalpog'iston qishloq xo'jaligi va agrotexnologiyalar instituti", + "iso639": "uz" + }, + { + "label": "Qaraqalpaqstan awıl xojalıǵı hám agrotexnologiyalar institutı", + "iso639": "tt" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02bf8e216.json b/v1.43/02bf8e216.json new file mode 100644 index 000000000..73a3ee7b9 --- /dev/null +++ b/v1.43/02bf8e216.json @@ -0,0 +1,77 @@ +{ + "ip_addresses": [], + "aliases": [ + "Editorial Teseo", + "TeseoPress" + ], + "acronyms": [], + "links": [ + "https://www.editorialteseo.com" + ], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "name": "Teseo (Argentina)", + "wikipedia_url": "https://es.wikipedia.org/wiki/Editorial_Teseo", + "addresses": [ + { + "lat": -34.61315, + "lng": -58.37723, + "state": null, + "state_code": null, + "country_geonames_id": 3865483, + "city": "Buenos Aires", + "geonames_city": { + "id": 3435910, + "city": "Buenos Aires", + "geonames_admin1": { + "name": "Buenos Aires F.D.", + "ascii_name": "Buenos Aires F.D.", + "id": 3433955, + "code": "AR.07" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": 2007, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02bf8e216", + "labels": [ + { + "label": "Teseo", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02bjrmf75.json b/v1.43/02bjrmf75.json new file mode 100644 index 000000000..2a749db4f --- /dev/null +++ b/v1.43/02bjrmf75.json @@ -0,0 +1,80 @@ +{ + "ip_addresses": [], + "aliases": [ + "Deutsche Institut für angewandte Pflegeforschung", + "German Institute of Applied Nursing Research" + ], + "acronyms": [ + "DIP" + ], + "links": [ + "https://www.dip.de" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "Deutsche Institut für angewandte Pflegeforschung e.V.", + "wikipedia_url": null, + "addresses": [ + { + "lat": 50.93333, + "lng": 6.95, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Cologne", + "geonames_city": { + "id": 2886242, + "city": "Cologne", + "geonames_admin1": { + "name": "North Rhine-Westphalia", + "ascii_name": "North Rhine-Westphalia", + "id": 2861876, + "code": "DE.07" + }, + "geonames_admin2": { + "name": "Cologne District", + "id": 2886241, + "ascii_name": "Cologne District", + "code": "DE.07.053" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": {}, + "established": 1999, + "relationships": [ + { + "label": "Catholic University of Applied Sciences of North Rhine – Westphalia", + "type": "Related", + "id": "https://ror.org/024nr0776" + } + ], + "email_address": null, + "id": "https://ror.org/02bjrmf75", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02by8jy67.json b/v1.43/02by8jy67.json new file mode 100644 index 000000000..6a371e37b --- /dev/null +++ b/v1.43/02by8jy67.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02by8jy67", + "name": "Fundación TyPA", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -34.61315, + "lng": -58.37723, + "state": null, + "state_code": null, + "city": "Buenos Aires", + "geonames_city": { + "id": 3435910, + "city": "Buenos Aires", + "geonames_admin1": { + "name": "Buenos Aires F.D.", + "id": 3433955, + "ascii_name": "Buenos Aires F.D.", + "code": "AR.07" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3865483 + } + ], + "links": [ + "https://www.typa.org.ar" + ], + "aliases": [ + "Teoría y Práctica de las Artes" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "TyPA Foundation", + "iso639": "en" + } + ], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "external_ids": { + "GRID": { + "preferred": "grid.502315.0", + "all": "grid.502315.0" + }, + "Wikidata": { + "preferred": "Q61931966", + "all": [ + "Q61931966" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/02byv2846.json b/v1.43/02byv2846.json new file mode 100644 index 000000000..83431d80a --- /dev/null +++ b/v1.43/02byv2846.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02byv2846", + "name": "Fluides, Automatique et Systèmes Thermiques", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.fast.u-psud.fr" + ], + "aliases": [], + "acronyms": [ + "FAST" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0369 9697" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR7608" + ] + }, + "GRID": { + "preferred": "grid.463850.c", + "all": "grid.463850.c" + } + } +} \ No newline at end of file diff --git a/v1.43/02caz1f24.json b/v1.43/02caz1f24.json new file mode 100644 index 000000000..f8f191522 --- /dev/null +++ b/v1.43/02caz1f24.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/02caz1f24", + "name": "British Medical Association", + "email_address": null, + "ip_addresses": [], + "established": 1832, + "types": [ + "Nonprofit" + ], + "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" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://bma.org.uk/" + ], + "aliases": [], + "acronyms": [ + "BMA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/British_Medical_Association", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1936 8489" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100000374" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q919715" + ] + }, + "GRID": { + "preferred": "grid.431398.4", + "all": "grid.431398.4" + } + } +} \ No newline at end of file diff --git a/v1.43/02cc3ss06.json b/v1.43/02cc3ss06.json new file mode 100644 index 000000000..56eb42740 --- /dev/null +++ b/v1.43/02cc3ss06.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://huofamilyfoundation.org" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Huo Family Foundation", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0630 7561", + "all": [ + "0000 0005 0630 7561" + ] + }, + "FundRef": { + "preferred": "501100022111", + "all": [ + "501100022111" + ] + } + }, + "established": 2009, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02cc3ss06", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02chvqy57.json b/v1.43/02chvqy57.json new file mode 100644 index 000000000..66b451c48 --- /dev/null +++ b/v1.43/02chvqy57.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/02chvqy57", + "name": "Laboratoire d’Études en Géophysique et Océanographie Spatiales", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.60426, + "lng": 1.44367, + "state": null, + "state_code": null, + "city": "Toulouse", + "geonames_city": { + "id": 2972315, + "city": "Toulouse", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Upper Garonne", + "id": 3013767, + "ascii_name": "Upper Garonne", + "code": "FR.76.31" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.legos.omp.eu" + ], + "aliases": [], + "acronyms": [ + "LEGOS" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Laboratory of Space Geophysical and Oceanographic Studies", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0384 4620" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR5566" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q51782431" + ] + }, + "GRID": { + "preferred": "grid.503277.4", + "all": "grid.503277.4" + } + } +} \ No newline at end of file diff --git a/v1.43/02cptmd52.json b/v1.43/02cptmd52.json new file mode 100644 index 000000000..68c00a491 --- /dev/null +++ b/v1.43/02cptmd52.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/02cptmd52", + "name": "Agronomie", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://agronomie.versailles-grignon.hub.inrae.fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q51785613", + "all": [ + "Q51785613" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/02cq2e244.json b/v1.43/02cq2e244.json new file mode 100644 index 000000000..70d1e83b5 --- /dev/null +++ b/v1.43/02cq2e244.json @@ -0,0 +1,94 @@ +{ + "ip_addresses": [], + "aliases": [ + "UC Berkeley Pacific Earthquake Engineering Research Center", + "University of California Berkeley Pacific Earthquake Engineering Research Center" + ], + "acronyms": [ + "PEER", + "UCB PEER" + ], + "links": [ + "https://peer.berkeley.edu" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Pacific Earthquake Engineering Research Center", + "wikipedia_url": null, + "addresses": [ + { + "lat": 37.87159, + "lng": -122.27275, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Berkeley", + "geonames_city": { + "id": 5327684, + "city": "Berkeley", + "geonames_admin1": { + "name": "California", + "ascii_name": "California", + "id": 5332921, + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Alameda", + "id": 5322745, + "ascii_name": "Alameda", + "code": "US.CA.001" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2299 1026", + "all": [ + "0000 0001 2299 1026" + ] + }, + "FundRef": { + "preferred": "100012597", + "all": [ + "100012597" + ] + } + }, + "established": 1996, + "relationships": [ + { + "label": "University of California, Berkeley", + "type": "Parent", + "id": "https://ror.org/01an7q238" + } + ], + "email_address": null, + "id": "https://ror.org/02cq2e244", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02cr20t12.json b/v1.43/02cr20t12.json new file mode 100644 index 000000000..b2d7cabbd --- /dev/null +++ b/v1.43/02cr20t12.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02cr20t12", + "name": "Biblioteca Nacional de España", + "email_address": null, + "ip_addresses": [], + "established": 1712, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.bne.es" + ], + "aliases": [ + "Palace Public Library", + "Biblioteca Pública de Palacio" + ], + "acronyms": [ + "BNE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Biblioteca_Nacional_de_Espa%C3%B1a", + "labels": [ + { + "label": "Biblioteca Nacional d'Espanya", + "iso639": "ca" + }, + { + "label": "Espainiako Liburutegi Nazionala", + "iso639": "eu" + }, + { + "label": "National Library of Spain", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "47002429" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q750403" + ] + }, + "GRID": { + "preferred": "grid.432858.0", + "all": "grid.432858.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..e3984258d --- /dev/null +++ b/v1.43/02cte4b68.json @@ -0,0 +1,605 @@ +{ + "id": "https://ror.org/02cte4b68", + "name": "Institut de Chimie", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.cnrs.fr/inc/index.htm" + ], + "aliases": [], + "acronyms": [ + "INC" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0626 358X" + ] + }, + "FundRef": { + "preferred": "501100017217", + "all": [ + "501100017217" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3152386" + ] + }, + "GRID": { + "preferred": "grid.457012.5", + "all": "grid.457012.5" + } + } +} \ No newline at end of file diff --git a/v1.43/02cwv3a12.json b/v1.43/02cwv3a12.json new file mode 100644 index 000000000..83debe0e6 --- /dev/null +++ b/v1.43/02cwv3a12.json @@ -0,0 +1,90 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "PRF" + ], + "links": [ + "https://www.pinkribbonfoundation.org.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Pink Ribbon Foundation", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.40606, + "lng": 0.01519, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Bromley", + "geonames_city": { + "id": 2654588, + "city": "Bromley", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7782 4876", + "all": [ + "0000 0004 7782 4876" + ] + }, + "Wikidata": { + "preferred": "Q116236067", + "all": [ + "Q116236067" + ] + }, + "FundRef": { + "preferred": "100013421", + "all": [ + "100013421" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02cwv3a12", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02dg0pv02.json b/v1.43/02dg0pv02.json new file mode 100644 index 000000000..4bfbe7cc4 --- /dev/null +++ b/v1.43/02dg0pv02.json @@ -0,0 +1,146 @@ +{ + "id": "https://ror.org/02dg0pv02", + "name": "United Nations Children's Fund", + "email_address": null, + "ip_addresses": [], + "established": 1946, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "United Nations", + "type": "Parent", + "id": "https://ror.org/006kxhp52" + }, + { + "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": "Special Programme for Research and Training in Tropical Diseases", + "type": "Child", + "id": "https://ror.org/046j7pv84" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.unicef.org/" + ], + "aliases": [], + "acronyms": [ + "UNICEF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/UNICEF", + "labels": [ + { + "label": "Fonds des Nations Unies pour l'Enfance", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0402 478X" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100006641" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "19698110" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q740308" + ] + }, + "GRID": { + "preferred": "grid.420318.c", + "all": "grid.420318.c" + } + } +} \ No newline at end of file diff --git a/v1.43/02drdmm93.json b/v1.43/02drdmm93.json new file mode 100644 index 000000000..4be8c45a9 --- /dev/null +++ b/v1.43/02drdmm93.json @@ -0,0 +1,146 @@ +{ + "id": "https://ror.org/02drdmm93", + "name": "Chinese Academy of Medical Sciences & Peking Union Medical College", + "email_address": null, + "ip_addresses": [], + "established": 1956, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "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": "Institute of Chinese Materia Medica", + "type": "Child", + "id": "https://ror.org/04kn56m50" + } + ], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "name": "Beijing", + "id": 2038349, + "ascii_name": "Beijing", + "code": "CN.22" + }, + "geonames_admin2": { + "name": "Beijing", + "id": 11876380, + "ascii_name": "Beijing", + "code": "CN.22.11876380" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "http://www.cams.ac.cn/" + ], + "aliases": [ + "Chinese Academy of Medical Sciences", + "Peking Union Medical College", + "中国医学科学院", + "北京协和医学院" + ], + "acronyms": [ + "CAMS&PUMC", + "CAMS", + "PUMC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Peking_Union_Medical_College", + "labels": [ + { + "label": "中国医学科学院北京协和医学院", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0706 7839" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q10873318" + ] + }, + "GRID": { + "preferred": "grid.506261.6", + "all": "grid.506261.6" + } + } +} \ No newline at end of file diff --git a/v1.43/02dyaew97.json b/v1.43/02dyaew97.json new file mode 100644 index 000000000..11981aef1 --- /dev/null +++ b/v1.43/02dyaew97.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/02dyaew97", + "name": "Laboratoire de physique des Solides", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.lps.u-psud.fr" + ], + "aliases": [], + "acronyms": [ + "LPS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Laboratory_of_Solid_State_Physics", + "labels": [ + { + "label": "Laboratory of Solid State Physics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9404 6552" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR8502" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "41951673" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3214477" + ] + }, + "GRID": { + "preferred": "grid.462447.7", + "all": "grid.462447.7" + } + } +} \ No newline at end of file diff --git a/v1.43/02dzjmc73.json b/v1.43/02dzjmc73.json new file mode 100644 index 000000000..29f765e98 --- /dev/null +++ b/v1.43/02dzjmc73.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/02dzjmc73", + "name": "Üsküdar University", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Npistanbul Brain Hospital", + "type": "Related", + "id": "https://ror.org/00hhtwx28" + } + ], + "addresses": [ + { + "lat": 41.02274, + "lng": 29.01366, + "state": null, + "state_code": null, + "city": "Scutari", + "geonames_city": { + "id": 738329, + "city": "Scutari", + "geonames_admin1": { + "name": "Istanbul", + "id": 745042, + "ascii_name": "Istanbul", + "code": "TR.34" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 298795 + } + ], + "links": [ + "https://uskudar.edu.tr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/%C3%9Csk%C3%BCdar_University", + "labels": [ + { + "label": "Üsküdar Üniversitesi", + "iso639": "tr" + } + ], + "country": { + "country_name": "Türkiye", + "country_code": "TR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0495 1268" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6063394" + ] + }, + "GRID": { + "preferred": "grid.464712.2", + "all": "grid.464712.2" + } + } +} \ No newline at end of file diff --git a/v1.43/02e3wq066.json b/v1.43/02e3wq066.json new file mode 100644 index 000000000..580ec1c69 --- /dev/null +++ b/v1.43/02e3wq066.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02e3wq066", + "name": "Division of Program Coordination Planning and Strategic Initiatives", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Office of the Director", + "type": "Parent", + "id": "https://ror.org/00fj8a872" + }, + { + "label": "Office of Data Science Strategy", + "type": "Child", + "id": "https://ror.org/04g4sf283" + }, + { + "label": "NIH Common Fund", + "type": "Child", + "id": "https://ror.org/001d55x84" + } + ], + "addresses": [ + { + "lat": 38.98067, + "lng": -77.10026, + "state": null, + "state_code": null, + "city": "Bethesda", + "geonames_city": { + "id": 4348599, + "city": "Bethesda", + "geonames_admin1": { + "name": "Maryland", + "id": 4361885, + "ascii_name": "Maryland", + "code": "US.MD" + }, + "geonames_admin2": { + "name": "Montgomery", + "id": 4362716, + "ascii_name": "Montgomery", + "code": "US.MD.031" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://dpcpsi.nih.gov/" + ], + "aliases": [], + "acronyms": [ + "DPCPSI" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0430 6277" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100006086" + ] + }, + "GRID": { + "preferred": "grid.454854.c", + "all": "grid.454854.c" + } + } +} \ No newline at end of file diff --git a/v1.43/02eegq373.json b/v1.43/02eegq373.json new file mode 100644 index 000000000..3ed3b6e8c --- /dev/null +++ b/v1.43/02eegq373.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/02eegq373", + "name": "Fundación de los Ferrocarriles Españoles", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://ffe.es" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Spanish Railway Foundation", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9390 6995" + ] + }, + "GRID": { + "preferred": "grid.434664.7", + "all": "grid.434664.7" + } + } +} \ No newline at end of file diff --git a/v1.43/02en5vm52.json b/v1.43/02en5vm52.json new file mode 100644 index 000000000..82854d392 --- /dev/null +++ b/v1.43/02en5vm52.json @@ -0,0 +1,1134 @@ +{ + "id": "https://ror.org/02en5vm52", + "name": "Sorbonne Université", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.sorbonne-universite.fr" + ], + "aliases": [ + "University of Paris-Sorbonne", + "Pierre and Marie Curie University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Sorbonne_University", + "labels": [ + { + "label": "Sorbonne University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2308 1657" + ] + }, + "FundRef": { + "preferred": "501100019125", + "all": [ + "501100005737", + "501100019125", + "100012946" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "4732720", + "3749721", + "47001018" + ] + }, + "Wikidata": { + "preferred": "Q41497113", + "all": [ + "Q41497113", + "Q3491150", + "Q546118", + "Q1144549" + ] + }, + "GRID": { + "preferred": "grid.462844.8", + "all": "grid.462844.8" + } + } +} \ No newline at end of file diff --git a/v1.43/02erddr56.json b/v1.43/02erddr56.json new file mode 100644 index 000000000..eacac1f38 --- /dev/null +++ b/v1.43/02erddr56.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/02erddr56", + "name": "Laboratoire Albert Fert", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://laboratoire-albert-fert.cnrs-thales.fr" + ], + "aliases": [ + "Albert Fert Laboratory", + "Unité Mixte de Physique CNRS/Thales" + ], + "acronyms": [ + "UMPhy" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0382 1752" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR137" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "47001096" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q16511698" + ] + }, + "GRID": { + "preferred": "grid.462731.5", + "all": "grid.462731.5" + } + } +} \ No newline at end of file diff --git a/v1.43/02evec030.json b/v1.43/02evec030.json new file mode 100644 index 000000000..39cfd456a --- /dev/null +++ b/v1.43/02evec030.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/02evec030", + "name": "JUNIA", + "email_address": null, + "ip_addresses": [], + "established": 1963, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 50.63297, + "lng": 3.05858, + "state": null, + "state_code": null, + "city": "Lille", + "geonames_city": { + "id": 2998324, + "city": "Lille", + "geonames_admin1": { + "name": "Hauts-de-France", + "id": 11071624, + "ascii_name": "Hauts-de-France", + "code": "FR.32" + }, + "geonames_admin2": { + "name": "North", + "id": 2990129, + "ascii_name": "North", + "code": "FR.32.59" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.junia.com" + ], + "aliases": [ + "ISA Lille", + "JUNIA - Grande école d'ingénieurs", + "Groupe Institut Supérieur d'Agriculture de Lille", + "Yncréa Hauts-de-France" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "preferred": "grid.466329.c", + "all": "grid.466329.c" + }, + "ISNI": { + "preferred": "0000 0004 7434 4981", + "all": [ + "0000 0004 7434 4981", + "0000 0001 2154 0303" + ] + }, + "Wikidata": { + "preferred": "Q3117452", + "all": [ + "Q3117452" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/02faxbd19.json b/v1.43/02faxbd19.json new file mode 100644 index 000000000..186d1b138 --- /dev/null +++ b/v1.43/02faxbd19.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/02faxbd19", + "name": "Bethel University", + "email_address": null, + "ip_addresses": [], + "established": 1871, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 44.94441, + "lng": -93.09327, + "state": null, + "state_code": null, + "city": "Saint Paul", + "geonames_city": { + "id": 5045360, + "city": "Saint Paul", + "geonames_admin1": { + "name": "Minnesota", + "id": 5037779, + "ascii_name": "Minnesota", + "code": "US.MN" + }, + "geonames_admin2": { + "name": "Ramsey", + "id": 5042563, + "ascii_name": "Ramsey", + "code": "US.MN.123" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.bethel.edu/" + ], + "aliases": [ + "Bethel Junior College", + "Bethel College and Seminary" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Bethel_University_(Minnesota)", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8888 5173" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "563462" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3445045" + ] + }, + "GRID": { + "preferred": "grid.418297.1", + "all": "grid.418297.1" + } + } +} \ No newline at end of file diff --git a/v1.43/02feahw73.json b/v1.43/02feahw73.json new file mode 100644 index 000000000..8e0f928d2 --- /dev/null +++ b/v1.43/02feahw73.json @@ -0,0 +1,1817 @@ +{ + "id": "https://ror.org/02feahw73", + "name": "French National Centre for Scientific Research", + "email_address": "", + "ip_addresses": [], + "established": 1939, + "types": [ + "Government" + ], + "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": "UMR Géographie-cités", + "type": "Related", + "id": "https://ror.org/05yqfzf35" + }, + { + "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": "Campus Condorcet", + "type": "Related", + "id": "https://ror.org/00cd48p72" + }, + { + "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": "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "CNRS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Centre_national_de_la_recherche_scientifique", + "labels": [ + { + "label": "Centre National de la Recherche Scientifique", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2259 7504", + "all": [ + "0000 0001 2259 7504" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004794" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "144610" + ] + }, + "Wikidata": { + "preferred": "Q280413", + "all": [ + "Q280413", + "Q39411466" + ] + }, + "GRID": { + "preferred": "grid.4444.0", + "all": "grid.4444.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02fkq9g11.json b/v1.43/02fkq9g11.json new file mode 100644 index 000000000..c4429a9d1 --- /dev/null +++ b/v1.43/02fkq9g11.json @@ -0,0 +1,76 @@ +{ + "ip_addresses": [], + "aliases": [ + "Changzhi Traditional Chinese Medicine Hospital" + ], + "acronyms": [], + "links": [ + "https://www.czszyyjsfsyy.cn" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "Affiliated Hospital of Changzhi Institute of Traditional Chinese Medicine", + "wikipedia_url": null, + "addresses": [ + { + "lat": 36.18389, + "lng": 113.10528, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Changzhi", + "geonames_city": { + "id": 1808956, + "city": "Changzhi", + "geonames_admin1": { + "name": "Shanxi", + "ascii_name": "Shanxi", + "id": 1795912, + "code": "CN.24" + }, + "geonames_admin2": { + "name": "Changzhi Shi", + "id": 1815461, + "ascii_name": "Changzhi Shi", + "code": "CN.24.1404" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02fkq9g11", + "labels": [ + { + "label": "长治市中医研究所附属医院", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02ftfma65.json b/v1.43/02ftfma65.json new file mode 100644 index 000000000..53fc0a790 --- /dev/null +++ b/v1.43/02ftfma65.json @@ -0,0 +1,87 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://www.uoguelph.ca/alliance/" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Ontario Agri-Food Innovation Alliance", + "wikipedia_url": null, + "addresses": [ + { + "lat": 43.54594, + "lng": -80.25599, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Guelph", + "geonames_city": { + "id": 5967629, + "city": "Guelph", + "geonames_admin1": { + "name": "Ontario", + "ascii_name": "Ontario", + "id": 6093943, + "code": "CA.08" + }, + "geonames_admin2": { + "name": "Wellington County", + "id": 6177913, + "ascii_name": "Wellington County", + "code": "CA.08.3523" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "FundRef": { + "preferred": "501100015516", + "all": [ + "501100015516" + ] + } + }, + "established": 2015, + "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" + } + ], + "email_address": null, + "id": "https://ror.org/02ftfma65", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02fy17q72.json b/v1.43/02fy17q72.json new file mode 100644 index 000000000..2404a16dd --- /dev/null +++ b/v1.43/02fy17q72.json @@ -0,0 +1,80 @@ +{ + "ip_addresses": [], + "aliases": [ + "Aula Virtual Foundation" + ], + "acronyms": [ + "FAV" + ], + "links": [ + "https://aulavirtual.web.ve" + ], + "country": { + "country_name": "Venezuela", + "country_code": "VE" + }, + "name": "Fundación Aula Virtual", + "wikipedia_url": null, + "addresses": [ + { + "lat": 10.0647, + "lng": -69.35703, + "state": null, + "state_code": null, + "country_geonames_id": 3625428, + "city": "Barquisimeto", + "geonames_city": { + "id": 3648522, + "city": "Barquisimeto", + "geonames_admin1": { + "name": "Lara", + "ascii_name": "Lara", + "id": 3636539, + "code": "VE.13" + }, + "geonames_admin2": { + "name": "Iribarren Municipality", + "id": 3639346, + "ascii_name": "Iribarren Municipality", + "code": "VE.13.1303" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0601 0063", + "all": [ + "0000 0005 0601 0063" + ] + } + }, + "established": 2011, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02fy17q72", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02gmp5156.json b/v1.43/02gmp5156.json new file mode 100644 index 000000000..a0d89d3a7 --- /dev/null +++ b/v1.43/02gmp5156.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02gmp5156", + "name": "National Research Foundation of Ukraine", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.45466, + "lng": 30.5238, + "state": null, + "state_code": null, + "city": "Kyiv", + "geonames_city": { + "id": 703448, + "city": "Kyiv", + "geonames_admin1": { + "name": "Kyiv City", + "id": 703447, + "ascii_name": "Kyiv City", + "code": "UA.12" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 690791 + } + ], + "links": [ + "https://nrfu.org.ua" + ], + "aliases": [ + "National Research Fund of Ukraine" + ], + "acronyms": [ + "NRFU" + ], + "status": "active", + "wikipedia_url": "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", + "labels": [ + { + "label": "Національний фонд досліджень України", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "FundRef": { + "preferred": "100018227", + "all": [ + "100018227" + ] + }, + "Wikidata": { + "preferred": "Q56367740", + "all": [ + "Q56367740" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/02gp35s66.json b/v1.43/02gp35s66.json new file mode 100644 index 000000000..c07551b19 --- /dev/null +++ b/v1.43/02gp35s66.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02gp35s66", + "name": "Universidade Federal da Integração Latino-Americana", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -25.54778, + "lng": -54.58806, + "state": null, + "state_code": null, + "city": "Foz do Iguaçu", + "geonames_city": { + "id": 3463030, + "city": "Foz do Iguaçu", + "geonames_admin1": { + "name": "Paraná", + "id": 3455077, + "ascii_name": "Paraná", + "code": "BR.18" + }, + "geonames_admin2": { + "name": "Foz do Iguaçu", + "id": 6322777, + "ascii_name": "Foz do Iguaçu", + "code": "BR.18.4108304" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3469034 + } + ], + "links": [ + "https://portal.unila.edu.br" + ], + "aliases": [], + "acronyms": [ + "UNILA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Federal_University_for_Latin_American_Integration", + "labels": [ + { + "label": "Federal University for Latin American Integration", + "iso639": "en" + } + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0509 0033" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "18402204" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5574032" + ] + }, + "GRID": { + "preferred": "grid.449851.5", + "all": "grid.449851.5" + } + } +} \ No newline at end of file diff --git a/v1.43/02gqg2511.json b/v1.43/02gqg2511.json new file mode 100644 index 000000000..296b655f4 --- /dev/null +++ b/v1.43/02gqg2511.json @@ -0,0 +1,85 @@ +{ + "ip_addresses": [], + "aliases": [ + "NIHR CLAHRC South London", + "National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care South London" + ], + "acronyms": [], + "links": [ + "https://www.clahrc-southlondon.nihr.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "NIHR Collaboration for Leadership in Applied Health Research and Care South London", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "501100015091", + "all": [ + "501100015091" + ] + } + }, + "established": 2014, + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "Parent", + "id": "https://ror.org/0187kwz08" + } + ], + "email_address": null, + "id": "https://ror.org/02gqg2511", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02h919y47.json b/v1.43/02h919y47.json new file mode 100644 index 000000000..3e198537f --- /dev/null +++ b/v1.43/02h919y47.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/02h919y47", + "name": "European Organisation for the Exploitation of Meteorological Satellites", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.87167, + "lng": 8.65027, + "state": null, + "state_code": null, + "city": "Darmstadt", + "geonames_city": { + "id": 2938913, + "city": "Darmstadt", + "geonames_admin1": { + "name": "Hesse", + "id": 2905330, + "ascii_name": "Hesse", + "code": "DE.05" + }, + "geonames_admin2": { + "name": "Regierungsbezirk Darmstadt", + "id": 2938912, + "ascii_name": "Regierungsbezirk Darmstadt", + "code": "DE.05.064" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.eumetsat.int" + ], + "aliases": [], + "acronyms": [ + "EUMETSAT" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/EUMETSAT", + "labels": [ + { + "label": "Europäische Organisation für die Nutzung meteorologischer Satelliten", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0621 7921" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q692163" + ] + }, + "GRID": { + "preferred": "grid.426436.1", + "all": "grid.426436.1" + }, + "FundRef": { + "preferred": "501100010560", + "all": [ + "501100010560" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/02hb5yj49.json b/v1.43/02hb5yj49.json new file mode 100644 index 000000000..a3e5406db --- /dev/null +++ b/v1.43/02hb5yj49.json @@ -0,0 +1,142 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://corewellhealth.org" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Corewell Health", + "wikipedia_url": "https://en.wikipedia.org/wiki/Corewell_Health", + "addresses": [ + { + "lat": 42.96336, + "lng": -85.66809, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Grand Rapids", + "geonames_city": { + "id": 4994358, + "city": "Grand Rapids", + "geonames_admin1": { + "name": "Michigan", + "ascii_name": "Michigan", + "id": 5001836, + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Kent", + "id": 4998005, + "ascii_name": "Kent", + "code": "US.MI.081" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q123561060", + "all": [ + "Q123561060" + ] + } + }, + "established": 2022, + "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" + } + ], + "email_address": null, + "id": "https://ror.org/02hb5yj49", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02hj2xr21.json b/v1.43/02hj2xr21.json new file mode 100644 index 000000000..8bf628931 --- /dev/null +++ b/v1.43/02hj2xr21.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/02hj2xr21", + "name": "Universidad Luterana Salvadoreña", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 13.68935, + "lng": -89.18718, + "state": null, + "state_code": null, + "country_geonames_id": 3585968, + "city": "San Salvador", + "geonames_city": { + "id": 3583361, + "city": "San Salvador", + "geonames_admin1": { + "name": "San Salvador", + "ascii_name": "San Salvador", + "id": 3583360, + "code": "SV.10" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "links": [ + "https://uls.edu.sv" + ], + "aliases": [], + "acronyms": [ + "ULS" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Salvadoran Lutheran University", + "iso639": "en" + } + ], + "country": { + "country_name": "El Salvador", + "country_code": "SV" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2303 2126", + "all": [ + "0000 0001 2303 2126" + ] + }, + "GRID": { + "preferred": "grid.472386.c", + "all": "grid.472386.c" + }, + "Wikidata": { + "preferred": "Q29002767", + "all": [ + "Q29002767" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/02hn9hc43.json b/v1.43/02hn9hc43.json new file mode 100644 index 000000000..83a2ae60c --- /dev/null +++ b/v1.43/02hn9hc43.json @@ -0,0 +1,72 @@ +{ + "ip_addresses": [], + "aliases": [ + "SwissLumix", + "SwissLumix Sarl" + ], + "acronyms": [], + "links": [ + "https://www.swisslumix.com" + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "name": "SwissLumix (Switzerland)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 46.516, + "lng": 6.63282, + "state": null, + "state_code": null, + "country_geonames_id": 2658434, + "city": "Lausanne", + "geonames_city": { + "id": 2659994, + "city": "Lausanne", + "geonames_admin1": { + "name": "Vaud", + "ascii_name": "Vaud", + "id": 2658182, + "code": "CH.VD" + }, + "geonames_admin2": { + "name": "Lausanne District", + "id": 6458866, + "ascii_name": "Lausanne District", + "code": "CH.VD.2225" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02hn9hc43", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02hq5p840.json b/v1.43/02hq5p840.json new file mode 100644 index 000000000..f38a598c8 --- /dev/null +++ b/v1.43/02hq5p840.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02hq5p840", + "name": "Genetrix (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.59866, + "lng": -3.71579, + "state": null, + "state_code": null, + "city": "Tres Cantos", + "geonames_city": { + "id": 11995365, + "city": "Tres Cantos", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.genetrix.es/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1794 0365" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30255894" + ] + }, + "GRID": { + "preferred": "grid.433409.9", + "all": "grid.433409.9" + } + } +} \ No newline at end of file diff --git a/v1.43/02hqqna27.json b/v1.43/02hqqna27.json new file mode 100644 index 000000000..e27758bc6 --- /dev/null +++ b/v1.43/02hqqna27.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02hqqna27", + "name": "St Michael's Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "Related", + "id": "https://ror.org/0524sp257" + } + ], + "addresses": [ + { + "lat": 51.45523, + "lng": -2.59665, + "state": null, + "state_code": null, + "city": "Bristol", + "geonames_city": { + "id": 2654675, + "city": "Bristol", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bristol", + "id": 3333134, + "ascii_name": "Bristol", + "code": "GB.ENG.B7" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/st-michaels-hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/St._Michael%27s_Hospital_(Bristol)", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q7590700" + ] + }, + "GRID": { + "preferred": "grid.416544.6", + "all": "grid.416544.6" + } + } +} \ No newline at end of file diff --git a/v1.43/02j9n6e35.json b/v1.43/02j9n6e35.json new file mode 100644 index 000000000..1cd36eeda --- /dev/null +++ b/v1.43/02j9n6e35.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02j9n6e35", + "name": "ALBA Synchrotron (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "LEAPS", + "type": "Related", + "id": "https://ror.org/04wcn4e27" + } + ], + "addresses": [ + { + "lat": 41.48569, + "lng": 2.12171, + "state": null, + "state_code": null, + "city": "Cerdanyola del Vallès", + "geonames_city": { + "id": 6356285, + "city": "Cerdanyola del Vallès", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.cells.es" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ALBA_(synchrotron)", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "4332862" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3781573" + ] + }, + "GRID": { + "preferred": "grid.423639.9", + "all": "grid.423639.9" + } + } +} \ No newline at end of file diff --git a/v1.43/02jx3x895.json b/v1.43/02jx3x895.json new file mode 100644 index 000000000..9f4bb7153 --- /dev/null +++ b/v1.43/02jx3x895.json @@ -0,0 +1,268 @@ +{ + "id": "https://ror.org/02jx3x895", + "name": "University College London", + "email_address": "", + "ip_addresses": [], + "established": 1826, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "University of London", + "type": "Parent", + "id": "https://ror.org/04cw6st05" + }, + { + "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": "UCL Hospitals Charitable Foundation", + "type": "Child", + "id": "https://ror.org/05mz0pr34" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.ucl.ac.uk/" + ], + "aliases": [ + "London University", + "University College, London" + ], + "acronyms": [ + "UCL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_College_London", + "labels": [ + { + "label": "Coleg Prifysgol Llundain", + "iso639": "cy" + } + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2190 1201" + ] + }, + "FundRef": { + "preferred": "501100000765", + "all": [ + "501100000765", + "501100000685", + "501100008538", + "501100001285", + "501100006154", + "501100001299", + "501100001283", + "501100006637", + "501100001281", + "501100001282", + "501100000845", + "501100013915" + ] + }, + "HESA": { + "preferred": null, + "all": [ + "0149" + ] + }, + "UCAS": { + "preferred": null, + "all": [ + "U80" + ] + }, + "UKPRN": { + "preferred": "10007784", + "all": [ + "10007784", + "10007781", + "10007766" + ] + }, + "OrgRef": { + "preferred": "52029", + "all": [ + "52029", + "1131835", + "3348837", + "531066" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q193196" + ] + }, + "GRID": { + "preferred": "grid.83440.3b", + "all": "grid.83440.3b" + } + } +} \ No newline at end of file diff --git a/v1.43/02k3baz05.json b/v1.43/02k3baz05.json new file mode 100644 index 000000000..ef042a47e --- /dev/null +++ b/v1.43/02k3baz05.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/02k3baz05", + "name": "Facoltà di Teologia di Lugano", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Università della Svizzera italiana", + "type": "Parent", + "id": "https://ror.org/03c4atk17" + } + ], + "addresses": [ + { + "lat": 46.01008, + "lng": 8.96004, + "state": null, + "state_code": null, + "city": "Lugano", + "geonames_city": { + "id": 2659836, + "city": "Lugano", + "geonames_admin1": { + "name": "Ticino", + "id": 2658370, + "ascii_name": "Ticino", + "code": "CH.TI" + }, + "geonames_admin2": { + "name": "Lugano", + "id": 6458771, + "ascii_name": "Lugano", + "code": "CH.TI.2105" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "http://www.teologialugano.ch/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2188 7489" + ] + }, + "GRID": { + "preferred": "grid.469436.a", + "all": "grid.469436.a" + } + } +} \ No newline at end of file diff --git a/v1.43/02ks8qq67.json b/v1.43/02ks8qq67.json new file mode 100644 index 000000000..ac4a4764e --- /dev/null +++ b/v1.43/02ks8qq67.json @@ -0,0 +1,171 @@ +{ + "id": "https://ror.org/02ks8qq67", + "name": "Hungarian Academy of Sciences", + "email_address": "", + "ip_addresses": [], + "established": 1825, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 47.49835, + "lng": 19.04045, + "state": null, + "state_code": null, + "city": "Budapest", + "geonames_city": { + "id": 3054643, + "city": "Budapest", + "geonames_admin1": { + "name": "Budapest", + "id": 3054638, + "ascii_name": "Budapest", + "code": "HU.05" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 719819 + } + ], + "links": [ + "http://mta.hu/english/" + ], + "aliases": [], + "acronyms": [ + "MTA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Hungarian_Academy_of_Sciences", + "labels": [ + { + "label": "Magyar Tudományos Akadémia", + "iso639": "hu" + } + ], + "country": { + "country_name": "Hungary", + "country_code": "HU" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2149 4407" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100003825" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "708241" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q265058" + ] + }, + "GRID": { + "preferred": "grid.5018.c", + "all": "grid.5018.c" + } + } +} \ No newline at end of file diff --git a/v1.43/02kvgs502.json b/v1.43/02kvgs502.json new file mode 100644 index 000000000..6c0358885 --- /dev/null +++ b/v1.43/02kvgs502.json @@ -0,0 +1,77 @@ +{ + "ip_addresses": [], + "aliases": [ + "Yingli Energy Technology Group", + "Yingli" + ], + "acronyms": [], + "links": [ + "http://www.yingligroup.com" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "Yingli Energy Technology Group (China)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 38.87288, + "lng": 115.46246, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Baoding", + "geonames_city": { + "id": 1816971, + "city": "Baoding", + "geonames_admin1": { + "name": "Hebei", + "ascii_name": "Hebei", + "id": 1808773, + "code": "CN.10" + }, + "geonames_admin2": { + "name": "Baoding Shi", + "id": 1816969, + "ascii_name": "Baoding Shi", + "code": "CN.10.1306" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02kvgs502", + "labels": [ + { + "label": "英利能源科技集团", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02kvxyf05.json b/v1.43/02kvxyf05.json new file mode 100644 index 000000000..e2f04cb05 --- /dev/null +++ b/v1.43/02kvxyf05.json @@ -0,0 +1,324 @@ +{ + "id": "https://ror.org/02kvxyf05", + "name": "French Institute for Research in Computer Science and Automation", + "email_address": "", + "ip_addresses": [], + "established": 1967, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.8205, + "lng": 2.1311, + "state": null, + "state_code": null, + "city": "Le Chesnay-Rocquencourt", + "geonames_city": { + "id": 6455402, + "city": "Le Chesnay-Rocquencourt", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Yvelines", + "id": 2967196, + "ascii_name": "Yvelines", + "code": "FR.11.78" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.inria.fr/en/" + ], + "aliases": [ + "Institut de recherche en informatique et en automatique" + ], + "acronyms": [ + "INRIA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/French_Institute_for_Research_in_Computer_Science_and_Automation", + "labels": [ + { + "label": "Institut national de recherche en informatique et en automatique", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2164 1438", + "all": [ + "0000 0001 2186 3954", + "0000 0001 2164 1438" + ] + }, + "FundRef": { + "preferred": "100012950", + "all": [ + "100012950" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "318413" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1146208" + ] + }, + "GRID": { + "preferred": "grid.5328.c", + "all": "grid.5328.c" + } + } +} \ No newline at end of file diff --git a/v1.43/02kw1ws04.json b/v1.43/02kw1ws04.json new file mode 100644 index 000000000..6d7f759ad --- /dev/null +++ b/v1.43/02kw1ws04.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [ + "Beijing Institute for General Artificial Intelligence (BIGAI)" + ], + "acronyms": [ + "BIGAI" + ], + "links": [ + "https://www.bigai.ai" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "Beijing Institute for General Artificial Intelligence", + "wikipedia_url": null, + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "name": "Beijing", + "ascii_name": "Beijing", + "id": 2038349, + "code": "CN.22" + }, + "geonames_admin2": { + "name": "Beijing", + "id": 11876380, + "ascii_name": "Beijing", + "code": "CN.22.11876380" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility", + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 1087 9968", + "all": [ + "0000 0005 1087 9968" + ] + } + }, + "established": 2020, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02kw1ws04", + "labels": [ + { + "label": "北京通用人工智能研究院", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02mb2dn67.json b/v1.43/02mb2dn67.json new file mode 100644 index 000000000..ea15556ba --- /dev/null +++ b/v1.43/02mb2dn67.json @@ -0,0 +1,81 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "http://www.sx.sgcc.com.cn" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "State Grid Shanxi Electric Power Company (China)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 37.86944, + "lng": 112.56028, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Taiyuan", + "geonames_city": { + "id": 1793511, + "city": "Taiyuan", + "geonames_admin1": { + "name": "Shanxi", + "ascii_name": "Shanxi", + "id": 1795912, + "code": "CN.24" + }, + "geonames_admin2": { + "name": "Taiyuan Shi", + "id": 1793510, + "ascii_name": "Taiyuan Shi", + "code": "CN.24.1401" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8342 6380", + "all": [ + "0000 0004 8342 6380" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02mb2dn67", + "labels": [ + { + "label": "国网山西省电力公司", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02mdbnd10.json b/v1.43/02mdbnd10.json new file mode 100644 index 000000000..99c8c6197 --- /dev/null +++ b/v1.43/02mdbnd10.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/02mdbnd10", + "name": "Van Hall Larenstein University of Applied Sciences", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 53.20139, + "lng": 5.80859, + "state": null, + "state_code": null, + "city": "Leeuwarden", + "geonames_city": { + "id": 2751792, + "city": "Leeuwarden", + "geonames_admin1": { + "name": "Friesland", + "id": 2755812, + "ascii_name": "Friesland", + "code": "NL.02" + }, + "geonames_admin2": { + "name": "Leeuwarden Municipality", + "id": 2751791, + "ascii_name": "Leeuwarden Municipality", + "code": "NL.02.0080" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2750405 + } + ], + "links": [ + "https://www.hvhl.nl" + ], + "aliases": [ + "Van Hall Larenstein" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Van_Hall_Larenstein", + "labels": [ + { + "label": "Hogeschool Van Hall Larenstein", + "iso639": "nl" + } + ], + "country": { + "country_name": "Netherlands", + "country_code": "NL" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1793 4571" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3920759" + ] + }, + "GRID": { + "preferred": "grid.450080.9", + "all": "grid.450080.9" + } + } +} \ No newline at end of file diff --git a/v1.43/02mks6v46.json b/v1.43/02mks6v46.json new file mode 100644 index 000000000..a59e4b621 --- /dev/null +++ b/v1.43/02mks6v46.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/02mks6v46", + "name": "DePauw University", + "email_address": null, + "ip_addresses": [], + "established": 1837, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 39.64449, + "lng": -86.86473, + "state": null, + "state_code": null, + "city": "Greencastle", + "geonames_city": { + "id": 4258273, + "city": "Greencastle", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Putnam", + "id": 4263451, + "ascii_name": "Putnam", + "code": "US.IN.133" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.depauw.edu/" + ], + "aliases": [ + "Indiana Asbury University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/DePauw_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2301 338X" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "176419" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1179599" + ] + }, + "GRID": { + "preferred": "grid.254921.9", + "all": "grid.254921.9" + } + } +} \ No newline at end of file diff --git a/v1.43/02mnw9q71.json b/v1.43/02mnw9q71.json new file mode 100644 index 000000000..623b4149f --- /dev/null +++ b/v1.43/02mnw9q71.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/02mnw9q71", + "name": "Institut Galien Paris-Saclay", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.76507, + "lng": 2.26655, + "state": null, + "state_code": null, + "city": "Châtenay-Malabry", + "geonames_city": { + "id": 3026108, + "city": "Châtenay-Malabry", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Hauts-de-Seine", + "id": 3013657, + "ascii_name": "Hauts-de-Seine", + "code": "FR.11.92" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.umr-cnrs8612.universite-paris-saclay.fr" + ], + "aliases": [ + "Institute Galien Paris-Saclay", + "Institut Galien Paris Sud" + ], + "acronyms": [ + "IGPS" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0368 8779" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR8612" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q51781179" + ] + }, + "GRID": { + "preferred": "grid.503249.9", + "all": "grid.503249.9" + } + } +} \ No newline at end of file diff --git a/v1.43/02mtt1z51.json b/v1.43/02mtt1z51.json new file mode 100644 index 000000000..075940ffe --- /dev/null +++ b/v1.43/02mtt1z51.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/02mtt1z51", + "name": "NIHR Bristol Biomedical Research Centre", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 51.45523, + "lng": -2.59665, + "state": null, + "state_code": null, + "city": "Bristol", + "geonames_city": { + "id": 2654675, + "city": "Bristol", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bristol", + "id": 3333134, + "ascii_name": "Bristol", + "code": "GB.ENG.B7" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.bristolbrc.nihr.ac.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "preferred": "100015250", + "all": [ + "100015250" + ] + }, + "GRID": { + "preferred": "grid.511076.4", + "all": "grid.511076.4" + } + } +} \ No newline at end of file diff --git a/v1.43/02ndr3r66.json b/v1.43/02ndr3r66.json new file mode 100644 index 000000000..2d969fcae --- /dev/null +++ b/v1.43/02ndr3r66.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/02ndr3r66", + "name": "Hôpital Marie Lannelongue", + "email_address": null, + "ip_addresses": [], + "established": 1895, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.78889, + "lng": 2.27078, + "state": null, + "state_code": null, + "city": "Le Plessis-Robinson", + "geonames_city": { + "id": 3002650, + "city": "Le Plessis-Robinson", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Hauts-de-Seine", + "id": 3013657, + "ascii_name": "Hauts-de-Seine", + "code": "FR.11.92" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.hopitalmarielannelongue.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "preferred": "grid.414221.0", + "all": "grid.414221.0" + } + } +} \ No newline at end of file diff --git a/v1.43/02p4far57.json b/v1.43/02p4far57.json new file mode 100644 index 000000000..50c464cf8 --- /dev/null +++ b/v1.43/02p4far57.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/02p4far57", + "name": "Robert H. Lurie Comprehensive Cancer Center of Northwestern University", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Northwestern Medicine", + "type": "Parent", + "id": "https://ror.org/04fzwnh64" + }, + { + "label": "Northwestern University", + "type": "Related", + "id": "https://ror.org/000e0be47" + } + ], + "addresses": [ + { + "lat": 41.85003, + "lng": -87.65005, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Chicago", + "geonames_city": { + "id": 4887398, + "city": "Chicago", + "geonames_admin1": { + "name": "Illinois", + "ascii_name": "Illinois", + "id": 4896861, + "code": "US.IL" + }, + "geonames_admin2": { + "name": "Cook", + "id": 4888671, + "ascii_name": "Cook", + "code": "US.IL.031" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "links": [ + "https://www.cancer.northwestern.edu" + ], + "aliases": [ + "Robert H. Lurie Comprehensive Cancer Center", + "Lurie Comprehensive Cancer Center", + "Robert H. Lurie Cancer Center", + "Lurie Cancer Center" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Robert_H._Lurie_Comprehensive_Cancer_Center", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0619 6876", + "all": [ + "0000 0004 0619 6876" + ] + }, + "FundRef": { + "preferred": "100011249", + "all": [ + "100011249" + ] + }, + "Wikidata": { + "preferred": "Q105710663", + "all": [ + "Q105710663" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/02pg81z63.json b/v1.43/02pg81z63.json new file mode 100644 index 000000000..61c2a3226 --- /dev/null +++ b/v1.43/02pg81z63.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/02pg81z63", + "name": "Corporació Sanitària Parc Taulí", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.tauli.cat" + ], + "aliases": [ + "Consorci Corporació Sanitària Parc Taulí", + "Parc Taulí Sabadell Hospital Universitari", + "Parc Taulí Hospital Universitari de Sabadell", + "Hospital de Sabadell–Parc Taulí", + "Parc Taulí Hospital Universitari" + ], + "acronyms": [ + "CSPT" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Corporación Sanitaria y Universitaria Parc Taulí", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9238 6887" + ] + }, + "GRID": { + "preferred": "grid.428313.f", + "all": "grid.428313.f" + } + } +} \ No newline at end of file diff --git a/v1.43/02pkshz09.json b/v1.43/02pkshz09.json new file mode 100644 index 000000000..7d52a086d --- /dev/null +++ b/v1.43/02pkshz09.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/02pkshz09", + "name": "Kharkiv National University of Internal Affairs", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.98081, + "lng": 36.25272, + "state": null, + "state_code": null, + "city": "Kharkiv", + "geonames_city": { + "id": 706483, + "city": "Kharkiv", + "geonames_admin1": { + "name": "Kharkiv", + "id": 706482, + "ascii_name": "Kharkiv", + "code": "UA.07" + }, + "geonames_admin2": { + "name": "Kharkiv City Council", + "id": 9114284, + "ascii_name": "Kharkiv City Council", + "code": "UA.07.6312" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 690791 + } + ], + "links": [ + "https://univd.edu.ua" + ], + "aliases": [], + "acronyms": [ + "KhNUIA" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Харківський національний університет внутрішніх справ", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8309 4515", + "all": [ + "0000 0004 8309 4515" + ] + }, + "GRID": { + "preferred": "grid.445518.9", + "all": "grid.445518.9" + }, + "Wikidata": { + "preferred": "Q4496336", + "all": [ + "Q4496336" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/02qjttz75.json b/v1.43/02qjttz75.json new file mode 100644 index 000000000..2dd6740e7 --- /dev/null +++ b/v1.43/02qjttz75.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/02qjttz75", + "name": "Optimized Adaptive Control Systems", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.adexcop.com" + ], + "aliases": [], + "acronyms": [ + "ADEX" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Control Adaptativo Predictivo Experto", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.432254.6", + "all": "grid.432254.6" + } + } +} \ No newline at end of file diff --git a/v1.43/02qnnz951.json b/v1.43/02qnnz951.json new file mode 100644 index 000000000..48c1ae7da --- /dev/null +++ b/v1.43/02qnnz951.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/02qnnz951", + "name": "University of Mons", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.45413, + "lng": 3.95229, + "state": null, + "state_code": null, + "city": "Mons", + "geonames_city": { + "id": 2790869, + "city": "Mons", + "geonames_admin1": { + "name": "Wallonia", + "id": 3337387, + "ascii_name": "Wallonia", + "code": "BE.WAL" + }, + "geonames_admin2": { + "name": "Hainaut Province", + "id": 2796741, + "ascii_name": "Hainaut Province", + "code": "BE.WAL.WHT" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2802361 + } + ], + "links": [ + "https://web.umons.ac.be" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Mons", + "labels": [ + { + "label": "Université de Mons", + "iso639": "fr" + } + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2184 581X" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "21123409" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1742161" + ] + }, + "GRID": { + "preferred": "grid.8364.9", + "all": "grid.8364.9" + } + } +} \ No newline at end of file diff --git a/v1.43/02qqvpd39.json b/v1.43/02qqvpd39.json new file mode 100644 index 000000000..b92d86a4f --- /dev/null +++ b/v1.43/02qqvpd39.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://www.vetmed.uni-muenchen.de/einrichtungen/klini_einrichtungen/index.html" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "Zentrum für Klinische Tiermedizin", + "wikipedia_url": null, + "addresses": [ + { + "lat": 48.25, + "lng": 11.56667, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Oberschleißheim", + "geonames_city": { + "id": 2859147, + "city": "Oberschleißheim", + "geonames_admin1": { + "name": "Bavaria", + "ascii_name": "Bavaria", + "id": 2951839, + "code": "DE.02" + }, + "geonames_admin2": { + "name": "Upper Bavaria", + "id": 2861322, + "ascii_name": "Upper Bavaria", + "code": "DE.02.091" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q101378210", + "all": [ + "Q101378210" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Klinik für Schweine", + "type": "Child", + "id": "https://ror.org/02am8se85" + } + ], + "email_address": null, + "id": "https://ror.org/02qqvpd39", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02qz3vm75.json b/v1.43/02qz3vm75.json new file mode 100644 index 000000000..58043b940 --- /dev/null +++ b/v1.43/02qz3vm75.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/02qz3vm75", + "name": "Institute for Quality and Efficiency in Health Care", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 50.93333, + "lng": 6.95, + "state": null, + "state_code": null, + "city": "Cologne", + "geonames_city": { + "id": 2886242, + "city": "Cologne", + "geonames_admin1": { + "name": "North Rhine-Westphalia", + "id": 2861876, + "ascii_name": "North Rhine-Westphalia", + "code": "DE.07" + }, + "geonames_admin2": { + "name": "Cologne District", + "id": 2886241, + "ascii_name": "Cologne District", + "code": "DE.07.053" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.iqwig.de" + ], + "aliases": [], + "acronyms": [ + "IQWiG" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Institute_for_Quality_and_Efficiency_in_Health_Care", + "labels": [ + { + "label": "Institut für Qualität und Wirtschaftlichkeit im Gesundheitswesen", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9125 6001" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q737480" + ] + }, + "GRID": { + "preferred": "grid.414694.a", + "all": "grid.414694.a" + } + } +} \ No newline at end of file diff --git a/v1.43/02r40rn49.json b/v1.43/02r40rn49.json new file mode 100644 index 000000000..801bad8fd --- /dev/null +++ b/v1.43/02r40rn49.json @@ -0,0 +1,95 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "CALHN" + ], + "links": [ + "https://centraladelaide.health.sa.gov.au" + ], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "name": "Central Adelaide Local Health Network", + "wikipedia_url": null, + "addresses": [ + { + "lat": -34.92866, + "lng": 138.59863, + "state": null, + "state_code": null, + "country_geonames_id": 2077456, + "city": "Adelaide", + "geonames_city": { + "id": 2078025, + "city": "Adelaide", + "geonames_admin1": { + "name": "South Australia", + "ascii_name": "South Australia", + "id": 2061327, + "code": "AU.05" + }, + "geonames_admin2": { + "name": "Adelaide", + "id": 7839644, + "ascii_name": "Adelaide", + "code": "AU.05.40070" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "ISNI": { + "preferred": "0000000417963647", + "all": [ + "0000000417963647" + ] + }, + "Wikidata": { + "preferred": "Q58347341", + "all": [ + "Q58347341" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Royal Adelaide Hospital", + "type": "Child", + "id": "https://ror.org/00carf720" + }, + { + "label": "Queen Elizabeth Hospital", + "type": "Child", + "id": "https://ror.org/00x362k69" + } + ], + "email_address": null, + "id": "https://ror.org/02r40rn49", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02r4fqa76.json b/v1.43/02r4fqa76.json new file mode 100644 index 000000000..681330568 --- /dev/null +++ b/v1.43/02r4fqa76.json @@ -0,0 +1,88 @@ +{ + "ip_addresses": [], + "aliases": [ + "EPSRC National Centre for Energy Systems Integration", + "Engineering and Physical Sciences Research Council National Centre for Energy Systems Integration" + ], + "acronyms": [ + "CESI", + "EPSRC CESI" + ], + "links": [ + "https://www.ncl.ac.uk/cesi/" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "National Centre for Energy Systems Integration", + "wikipedia_url": null, + "addresses": [ + { + "lat": 54.97328, + "lng": -1.61396, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Newcastle upon Tyne", + "geonames_city": { + "id": 2641673, + "city": "Newcastle upon Tyne", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Newcastle upon Tyne", + "id": 3333174, + "ascii_name": "Newcastle upon Tyne", + "code": "GB.ENG.I7" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "501100017507", + "all": [ + "501100017507" + ] + } + }, + "established": 2016, + "relationships": [ + { + "label": "Newcastle University", + "type": "Parent", + "id": "https://ror.org/01kj2bm70" + } + ], + "email_address": null, + "id": "https://ror.org/02r4fqa76", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02r839n55.json b/v1.43/02r839n55.json new file mode 100644 index 000000000..4a84edc73 --- /dev/null +++ b/v1.43/02r839n55.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/02r839n55", + "name": "Saint Mary's College", + "email_address": null, + "ip_addresses": [], + "established": 1844, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 41.70019, + "lng": -86.23793, + "state": null, + "state_code": null, + "city": "Notre Dame", + "geonames_city": { + "id": 8469294, + "city": "Notre Dame", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Saint Joseph", + "id": 4925848, + "ascii_name": "Saint Joseph", + "code": "US.IN.141" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.saintmarys.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Saint_Mary%27s_College_(Indiana)", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0445 8115" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "1220565" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7401824" + ] + }, + "GRID": { + "preferred": "grid.419426.c", + "all": "grid.419426.c" + } + } +} \ No newline at end of file diff --git a/v1.43/02rc97e94.json b/v1.43/02rc97e94.json new file mode 100644 index 000000000..870a60d58 --- /dev/null +++ b/v1.43/02rc97e94.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/02rc97e94", + "name": "University of Calabria", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "INFN Gruppo Collegato di Cosenza", + "type": "Related", + "id": "https://ror.org/039epzh36" + } + ], + "addresses": [ + { + "lat": 39.33154, + "lng": 16.18041, + "state": null, + "state_code": null, + "city": "Rende", + "geonames_city": { + "id": 2523623, + "city": "Rende", + "geonames_admin1": { + "name": "Calabria", + "id": 2525468, + "ascii_name": "Calabria", + "code": "IT.03" + }, + "geonames_admin2": { + "name": "Province of Cosenza", + "id": 2524906, + "ascii_name": "Province of Cosenza", + "code": "IT.03.CS" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "http://www.unical.it/portale/" + ], + "aliases": [], + "acronyms": [ + "UNICAL" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Calabria", + "labels": [ + { + "label": "Università della Calabria", + "iso639": "it" + }, + { + "label": "Universität Kalabrien", + "iso639": "de" + }, + { + "label": "Université de la calabre", + "iso639": "fr" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1937 0319" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100007069" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "1810404" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1752540" + ] + }, + "GRID": { + "preferred": "grid.7778.f", + "all": "grid.7778.f" + } + } +} \ No newline at end of file diff --git a/v1.43/02rrdvm96.json b/v1.43/02rrdvm96.json new file mode 100644 index 000000000..59b90b43f --- /dev/null +++ b/v1.43/02rrdvm96.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/02rrdvm96", + "name": "Center for Excellence in Molecular Cell Science", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Chinese Academy of Sciences", + "type": "Parent", + "id": "https://ror.org/034t30j35" + } + ], + "addresses": [ + { + "lat": 31.22222, + "lng": 121.45806, + "state": null, + "state_code": null, + "city": "Shanghai", + "geonames_city": { + "id": 1796236, + "city": "Shanghai", + "geonames_admin1": { + "name": "Shanghai", + "id": 1796231, + "ascii_name": "Shanghai", + "code": "CN.23" + }, + "geonames_admin2": { + "name": "Shanghai Municipality", + "id": 12324204, + "ascii_name": "Shanghai Municipality", + "code": "CN.23.12324204" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "http://cemcs.cas.cn" + ], + "aliases": [ + "Institute of Biochemistry and Cell Biology" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "中科院分子细胞卓越创新中心", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0061 254X" + ] + }, + "GRID": { + "preferred": "grid.507739.f", + "all": "grid.507739.f" + } + } +} \ No newline at end of file diff --git a/v1.43/02rx3b187.json b/v1.43/02rx3b187.json new file mode 100644 index 000000000..6e6f2755b --- /dev/null +++ b/v1.43/02rx3b187.json @@ -0,0 +1,310 @@ +{ + "id": "https://ror.org/02rx3b187", + "name": "Université Grenoble Alpes", + "email_address": null, + "ip_addresses": [], + "established": 2016, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Centre Hospitalier Universitaire de Grenoble", + "type": "Related", + "id": "https://ror.org/041rhpw39" + }, + { + "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": "AAU - Ambiances, Architectures, Urbanités", + "type": "Related", + "id": "https://ror.org/05hz99a17" + }, + { + "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": "Communauté Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/05v727m31" + } + ], + "addresses": [ + { + "lat": 45.1787, + "lng": 5.76281, + "state": null, + "state_code": null, + "city": "Saint-Martin-d'Hères", + "geonames_city": { + "id": 2978317, + "city": "Saint-Martin-d'Hères", + "geonames_admin1": { + "name": "Auvergne-Rhône-Alpes", + "id": 11071625, + "ascii_name": "Auvergne-Rhône-Alpes", + "code": "FR.84" + }, + "geonames_admin2": { + "name": "Isère", + "id": 3012715, + "ascii_name": "Isère", + "code": "FR.84.38" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.univ-grenoble-alpes.fr" + ], + "aliases": [], + "acronyms": [ + "UGA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Grenoble_Alpes_University", + "labels": [ + { + "label": "Grenoble Alpes University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "preferred": "100012952", + "all": [ + "100012952", + "100013349" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q945876" + ] + }, + "GRID": { + "preferred": "grid.450307.5", + "all": "grid.450307.5" + } + } +} \ No newline at end of file diff --git a/v1.43/02rxc7m23.json b/v1.43/02rxc7m23.json new file mode 100644 index 000000000..54fe4c4c4 --- /dev/null +++ b/v1.43/02rxc7m23.json @@ -0,0 +1,142 @@ +{ + "id": "https://ror.org/02rxc7m23", + "name": "Universidad de Navarra", + "email_address": "", + "ip_addresses": [], + "established": 1952, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "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": "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" + } + ], + "addresses": [ + { + "lat": 42.81687, + "lng": -1.64323, + "state": null, + "state_code": null, + "city": "Pamplona", + "geonames_city": { + "id": 3114472, + "city": "Pamplona", + "geonames_admin1": { + "name": "Navarre", + "id": 3115609, + "ascii_name": "Navarre", + "code": "ES.32" + }, + "geonames_admin2": { + "name": "Navarre", + "id": 6355235, + "ascii_name": "Navarre", + "code": "ES.32.NA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.unav.edu" + ], + "aliases": [], + "acronyms": [ + "UNAV" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Navarra", + "labels": [ + { + "label": "Nafarroako Unibertsitatea", + "iso639": "eu" + }, + { + "label": "University of Navarra", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1937 0271" + ] + }, + "FundRef": { + "preferred": "501100004435", + "all": [ + "501100004435", + "501100002832" + ] + }, + "OrgRef": { + "preferred": "1942492", + "all": [ + "1942492", + "2002087" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q926068" + ] + }, + "GRID": { + "preferred": "grid.5924.a", + "all": "grid.5924.a" + } + } +} \ No newline at end of file diff --git a/v1.43/02st4q439.json b/v1.43/02st4q439.json new file mode 100644 index 000000000..6eeca8478 --- /dev/null +++ b/v1.43/02st4q439.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/02st4q439", + "name": "Institut de Chimie des Substances Naturelles", + "email_address": null, + "ip_addresses": [], + "established": 1959, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://icsn.cnrs.fr" + ], + "aliases": [], + "acronyms": [ + "ICSN" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_de_Chimie_des_Substances_Naturelles", + "labels": [ + { + "label": "Institute for the chemistry of natural substances", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2286 3155" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UPR2301" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2388377" + ] + }, + "GRID": { + "preferred": "grid.418214.a", + "all": "grid.418214.a" + } + } +} \ No newline at end of file diff --git a/v1.43/02stdqb15.json b/v1.43/02stdqb15.json new file mode 100644 index 000000000..254a989f6 --- /dev/null +++ b/v1.43/02stdqb15.json @@ -0,0 +1,90 @@ +{ + "ip_addresses": [], + "aliases": [ + "Ontario Veterinary College Pet Trust" + ], + "acronyms": [], + "links": [ + "https://pettrust.uoguelph.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "OVC Pet Trust", + "wikipedia_url": null, + "addresses": [ + { + "lat": 43.54594, + "lng": -80.25599, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Guelph", + "geonames_city": { + "id": 5967629, + "city": "Guelph", + "geonames_admin1": { + "name": "Ontario", + "ascii_name": "Ontario", + "id": 6093943, + "code": "CA.08" + }, + "geonames_admin2": { + "name": "Wellington County", + "id": 6177913, + "ascii_name": "Wellington County", + "code": "CA.08.3523" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9225 0217", + "all": [ + "0000 0004 9225 0217" + ] + }, + "FundRef": { + "preferred": "100015900", + "all": [ + "100015900" + ] + } + }, + "established": 1986, + "relationships": [ + { + "label": "Ontario Veterinary College", + "type": "Parent", + "id": "https://ror.org/04frvgs13" + } + ], + "email_address": null, + "id": "https://ror.org/02stdqb15", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02trgdk48.json b/v1.43/02trgdk48.json new file mode 100644 index 000000000..471ecaa5b --- /dev/null +++ b/v1.43/02trgdk48.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02trgdk48", + "name": "Association of Electronic and Information Technologies", + "email_address": null, + "ip_addresses": [], + "established": 1983, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.31283, + "lng": -1.97499, + "state": null, + "state_code": null, + "city": "Donostia / San Sebastian", + "geonames_city": { + "id": 3110044, + "city": "Donostia / San Sebastian", + "geonames_admin1": { + "name": "Basque Country", + "id": 3336903, + "ascii_name": "Basque Country", + "code": "ES.59" + }, + "geonames_admin2": { + "name": "Gipuzkoa", + "id": 3120935, + "ascii_name": "Gipuzkoa", + "code": "ES.59.SS" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.gaia.es" + ], + "aliases": [], + "acronyms": [ + "GAIA" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Asociación Cluster de Telecomunicaciones", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9388 0529" + ] + }, + "GRID": { + "preferred": "grid.424978.4", + "all": "grid.424978.4" + } + } +} \ No newline at end of file diff --git a/v1.43/02vjkv261.json b/v1.43/02vjkv261.json new file mode 100644 index 000000000..9e28b2df6 --- /dev/null +++ b/v1.43/02vjkv261.json @@ -0,0 +1,1330 @@ +{ + "id": "https://ror.org/02vjkv261", + "name": "Inserm", + "email_address": "", + "ip_addresses": [], + "established": 1964, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.inserm.fr" + ], + "aliases": [], + "acronyms": [ + "INSERM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Inserm", + "labels": [ + { + "label": "French Institute of Health and Medical Research", + "iso639": "en" + }, + { + "label": "Institut National de la Santé et de la Recherche Médicale", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2186 6389" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100001677" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "6885694" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1474517" + ] + }, + "GRID": { + "preferred": "grid.7429.8", + "all": "grid.7429.8" + } + } +} \ No newline at end of file diff --git a/v1.43/02vrchf15.json b/v1.43/02vrchf15.json new file mode 100644 index 000000000..78ee5c1ef --- /dev/null +++ b/v1.43/02vrchf15.json @@ -0,0 +1,79 @@ +{ + "ip_addresses": [], + "aliases": [ + "Eklore School of Management", + "ESC Pau Business School" + ], + "acronyms": [], + "links": [ + "https://www.esc-pau.fr" + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "name": "éklore-ed School of Management", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Groupe_%C3%89cole_sup%C3%A9rieure_de_commerce_de_Pau", + "addresses": [ + { + "lat": 43.31117, + "lng": -0.35583, + "state": null, + "state_code": null, + "country_geonames_id": 3017382, + "city": "Pau", + "geonames_city": { + "id": 2988358, + "city": "Pau", + "geonames_admin1": { + "name": "Nouvelle-Aquitaine", + "ascii_name": "Nouvelle-Aquitaine", + "id": 11071620, + "code": "FR.75" + }, + "geonames_admin2": { + "name": "Pyrénées-Atlantiques", + "id": 2984887, + "ascii_name": "Pyrénées-Atlantiques", + "code": "FR.75.64" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q3117948", + "all": [ + "Q3117948" + ] + } + }, + "established": 1969, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02vrchf15", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02vzjz256.json b/v1.43/02vzjz256.json new file mode 100644 index 000000000..b11a7ded9 --- /dev/null +++ b/v1.43/02vzjz256.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Particle Physics and Astronomy Research Council", + "wikipedia_url": "https://en.wikipedia.org/wiki/Particle_Physics_and_Astronomy_Research_Council", + "addresses": [ + { + "lat": 51.55797, + "lng": -1.78116, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Swindon", + "geonames_city": { + "id": 2636389, + "city": "Swindon", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Swindon", + "id": 3333207, + "ascii_name": "Swindon", + "code": "GB.ENG.N9" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2189 5796", + "all": [ + "0000 0001 2189 5796" + ] + }, + "Wikidata": { + "preferred": "Q2054530", + "all": [ + "Q2054530" + ] + }, + "FundRef": { + "preferred": "501100015724", + "all": [ + "501100015724" + ] + } + }, + "established": 1994, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02vzjz256", + "labels": [], + "status": "inactive" +} \ No newline at end of file diff --git a/v1.43/02w3bnx54.json b/v1.43/02w3bnx54.json new file mode 100644 index 000000000..1fa574bf1 --- /dev/null +++ b/v1.43/02w3bnx54.json @@ -0,0 +1,90 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "ITHQ" + ], + "links": [ + "https://www.ithq.qc.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Institut de tourisme et d'hôtellerie du Québec", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Institut_de_tourisme_et_d%27h%C3%B4tellerie_du_Qu%C3%A9bec", + "addresses": [ + { + "lat": 45.50884, + "lng": -73.58781, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Montreal", + "geonames_city": { + "id": 6077243, + "city": "Montreal", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Montréal", + "id": 6077246, + "ascii_name": "Montréal", + "code": "CA.10.06" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0000 8800 9608", + "all": [ + "0000 0000 8800 9608" + ] + }, + "Wikidata": { + "preferred": "Q3152136", + "all": [ + "Q3152136" + ] + } + }, + "established": 1967, + "relationships": [ + { + "label": "Government of Northwest Territories", + "type": "Parent", + "id": "https://ror.org/05hqvvq43" + } + ], + "email_address": null, + "id": "https://ror.org/02w3bnx54", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02wfhk785.json b/v1.43/02wfhk785.json new file mode 100644 index 000000000..4cecfdb52 --- /dev/null +++ b/v1.43/02wfhk785.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/02wfhk785", + "name": "International Institute for Applied Systems Analysis", + "email_address": null, + "ip_addresses": [], + "established": 1972, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Complexity Science Hub Vienna", + "type": "Related", + "id": "https://ror.org/023dz9m50" + } + ], + "addresses": [ + { + "lat": 48.06833, + "lng": 16.35607, + "state": null, + "state_code": null, + "city": "Laxenburg", + "geonames_city": { + "id": 2772810, + "city": "Laxenburg", + "geonames_admin1": { + "name": "Lower Austria", + "id": 2770542, + "ascii_name": "Lower Austria", + "code": "AT.03" + }, + "geonames_admin2": { + "name": "Mödling", + "id": 2771333, + "ascii_name": "Mödling", + "code": "AT.03.317" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2782113 + } + ], + "links": [ + "https://iiasa.ac.at" + ], + "aliases": [ + "Internationales Institut Fuer Angewandte Systemanalyse" + ], + "acronyms": [ + "IIASA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/International_Institute_for_Applied_Systems_Analysis", + "labels": [], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1955 9478" + ] + }, + "FundRef": { + "preferred": "501100011859", + "all": [ + "501100011859" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q212102" + ] + }, + "GRID": { + "preferred": "grid.75276.31", + "all": "grid.75276.31" + } + } +} \ No newline at end of file diff --git a/v1.43/02wjh7838.json b/v1.43/02wjh7838.json new file mode 100644 index 000000000..dc3865483 --- /dev/null +++ b/v1.43/02wjh7838.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [ + "Morgan State University National Transportation Center" + ], + "acronyms": [ + "NTC" + ], + "links": [ + "https://www.morgan.edu/soe/ntc" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "National Transportation Center", + "wikipedia_url": null, + "addresses": [ + { + "lat": 39.29038, + "lng": -76.61219, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Baltimore", + "geonames_city": { + "id": 4347778, + "city": "Baltimore", + "geonames_admin1": { + "name": "Maryland", + "ascii_name": "Maryland", + "id": 4361885, + "code": "US.MD" + }, + "geonames_admin2": { + "name": "Baltimore", + "id": 4347820, + "ascii_name": "Baltimore", + "code": "US.MD.510" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "100012678", + "all": [ + "100012678" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Morgan State University", + "type": "Parent", + "id": "https://ror.org/017d8gk22" + } + ], + "email_address": null, + "id": "https://ror.org/02wjh7838", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02x2py139.json b/v1.43/02x2py139.json new file mode 100644 index 000000000..349f6b060 --- /dev/null +++ b/v1.43/02x2py139.json @@ -0,0 +1,87 @@ +{ + "ip_addresses": [], + "aliases": [ + "Thonburi College of Technology", + "Thonburi College" + ], + "acronyms": [ + "TRU" + ], + "links": [ + "https://www.thonburi-u.ac.th" + ], + "country": { + "country_name": "Thailand", + "country_code": "TH" + }, + "name": "Thonburi University", + "wikipedia_url": "https://en.wikipedia.org/wiki/Thonburi_University", + "addresses": [ + { + "lat": 13.75398, + "lng": 100.50144, + "state": null, + "state_code": null, + "country_geonames_id": 1605651, + "city": "Bangkok", + "geonames_city": { + "id": 1609350, + "city": "Bangkok", + "geonames_admin1": { + "name": "Bangkok", + "ascii_name": "Bangkok", + "id": 1609348, + "code": "TH.40" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0482 0559", + "all": [ + "0000 0004 0482 0559" + ] + }, + "Wikidata": { + "preferred": "Q18394263", + "all": [ + "Q18394263" + ] + } + }, + "established": 1998, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02x2py139", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02x3f7722.json b/v1.43/02x3f7722.json new file mode 100644 index 000000000..552e31ae5 --- /dev/null +++ b/v1.43/02x3f7722.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/02x3f7722", + "name": "Lakeland Health", + "email_address": null, + "ip_addresses": [], + "established": 1899, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "Successor", + "id": "https://ror.org/02hb5yj49" + } + ], + "addresses": [ + { + "lat": 42.10976, + "lng": -86.48002, + "state": null, + "state_code": null, + "city": "Saint Joseph", + "geonames_city": { + "id": 5008327, + "city": "Saint Joseph", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Berrien", + "id": 4985760, + "ascii_name": "Berrien", + "code": "US.MI.021" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.lakelandhealth.org/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Lakeland_Health", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0443 0139" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q22059525" + ] + }, + "GRID": { + "preferred": "grid.490238.4", + "all": "grid.490238.4" + } + } +} \ No newline at end of file diff --git a/v1.43/02x402970.json b/v1.43/02x402970.json new file mode 100644 index 000000000..271d713b6 --- /dev/null +++ b/v1.43/02x402970.json @@ -0,0 +1,73 @@ +{ + "ip_addresses": [], + "aliases": [ + "iPronics Programmable Photonics", + "iPronics Programmable Photonics, S.L.", + "iPronics" + ], + "acronyms": [], + "links": [ + "https://ipronics.com" + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "name": "iPronics Programmable Photonics (Spain)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 39.47391, + "lng": -0.37966, + "state": null, + "state_code": null, + "country_geonames_id": 2510769, + "city": "Valencia", + "geonames_city": { + "id": 2509954, + "city": "Valencia", + "geonames_admin1": { + "name": "Valencia", + "ascii_name": "Valencia", + "id": 2593113, + "code": "ES.60" + }, + "geonames_admin2": { + "name": "Valencia", + "id": 2509951, + "ascii_name": "Valencia", + "code": "ES.60.V" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02x402970", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02x5c5y60.json b/v1.43/02x5c5y60.json new file mode 100644 index 000000000..2878e2404 --- /dev/null +++ b/v1.43/02x5c5y60.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/02x5c5y60", + "name": "CIC bioGUNE", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.30544, + "lng": -2.88116, + "state": null, + "state_code": null, + "city": "Derio", + "geonames_city": { + "id": 3123921, + "city": "Derio", + "geonames_admin1": { + "name": "Basque Country", + "id": 3336903, + "ascii_name": "Basque Country", + "code": "ES.59" + }, + "geonames_admin2": { + "name": "Biscay", + "id": 3104469, + "ascii_name": "Biscay", + "code": "ES.59.BI" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.cicbiogune.es/" + ], + "aliases": [ + "Centro de Investigación Cooperativa en Biociencias" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Center for Cooperative Research in Biosciences", + "iso639": "en" + }, + { + "label": "Asociacion Centro De Investigacion Cooperativa En Biociencias", + "iso639": "pt" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0639 2420", + "all": [ + "0000 0004 0639 2420", + "0000 0004 0435 4789" + ] + }, + "GRID": { + "preferred": "grid.420175.5", + "all": "grid.420175.5" + }, + "Wikidata": { + "preferred": "Q30282406", + "all": [ + "Q30282406" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/02x9gn510.json b/v1.43/02x9gn510.json new file mode 100644 index 000000000..5f2a1de03 --- /dev/null +++ b/v1.43/02x9gn510.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "ENPQ" + ], + "links": [ + "https://www.enpq.qc.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "École nationale de police du Québec", + "wikipedia_url": "https://fr.wikipedia.org/wiki/%C3%89cole_nationale_de_police_du_Qu%C3%A9bec", + "addresses": [ + { + "lat": 46.23085, + "lng": -72.61292, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Nicolet", + "geonames_city": { + "id": 6088132, + "city": "Nicolet", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Centre-du-Québec", + "id": 8449526, + "ascii_name": "Centre-du-Québec", + "code": "CA.10.17" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0000 9471 627X", + "all": [ + "0000 0000 9471 627X" + ] + }, + "Wikidata": { + "preferred": "Q3578131", + "all": [ + "Q3578131" + ] + } + }, + "established": 1969, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02x9gn510", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02xe5ns62.json b/v1.43/02xe5ns62.json new file mode 100644 index 000000000..c1e7a9178 --- /dev/null +++ b/v1.43/02xe5ns62.json @@ -0,0 +1,126 @@ +{ + "id": "https://ror.org/02xe5ns62", + "name": "Jinan University", + "email_address": "", + "ip_addresses": [], + "established": 1906, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "Guangdong-Hongkong-Macau Joint Laboratory of Collaborative Innovation for Environmental Quality", + "type": "Child", + "id": "https://ror.org/02gwsx029" + }, + { + "label": "The Affiliated Shunde Hospital of Jinan University", + "type": "Child", + "id": "https://ror.org/04x2nq985" + } + ], + "addresses": [ + { + "lat": 23.11667, + "lng": 113.25, + "state": null, + "state_code": null, + "city": "Guangzhou", + "geonames_city": { + "id": 1809858, + "city": "Guangzhou", + "geonames_admin1": { + "name": "Guangdong", + "id": 1809935, + "ascii_name": "Guangdong", + "code": "CN.30" + }, + "geonames_admin2": { + "name": "Guangzhou Shi", + "id": 1809857, + "ascii_name": "Guangzhou Shi", + "code": "CN.30.4401" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "https://english.jnu.edu.cn/" + ], + "aliases": [], + "acronyms": [ + "JNU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Jinan_University", + "labels": [ + { + "label": "暨南大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1790 3548" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004024" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "322992" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2687517" + ] + }, + "GRID": { + "preferred": "grid.258164.c", + "all": "grid.258164.c" + } + } +} \ No newline at end of file diff --git a/v1.43/02xkjwb21.json b/v1.43/02xkjwb21.json new file mode 100644 index 000000000..54c73f461 --- /dev/null +++ b/v1.43/02xkjwb21.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/02xkjwb21", + "name": "Fundación Confemetal", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://fundacionconfemetal.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.434658.8", + "all": "grid.434658.8" + } + } +} \ No newline at end of file diff --git a/v1.43/02xnnng09.json b/v1.43/02xnnng09.json new file mode 100644 index 000000000..32e63f2af --- /dev/null +++ b/v1.43/02xnnng09.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/02xnnng09", + "name": "Laboratoire de Génie Électrique et Électronique de Paris", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.centralesupelec.fr/fr/geeps-group-electrical-engineering-paris" + ], + "aliases": [ + "Group of Electrical Engineering - Paris Laboratory", + "Group of Electrical Engineering - Paris" + ], + "acronyms": [ + "GeePs" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0390 3862" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR8507" + ] + }, + "Wikidata": { + "preferred": "Q30261615", + "all": [ + "Q30261615" + ] + }, + "GRID": { + "preferred": "grid.462965.a", + "all": "grid.462965.a" + } + } +} \ No newline at end of file diff --git a/v1.43/02y0cs367.json b/v1.43/02y0cs367.json new file mode 100644 index 000000000..f3abb95e4 --- /dev/null +++ b/v1.43/02y0cs367.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/02y0cs367", + "name": "Family Planning NSW", + "email_address": null, + "ip_addresses": [], + "established": 1926, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": -33.83488, + "lng": 151.05703, + "state": null, + "state_code": null, + "city": "Newington", + "geonames_city": { + "id": 9972834, + "city": "Newington", + "geonames_admin1": { + "name": "New South Wales", + "id": 2155400, + "ascii_name": "New South Wales", + "code": "AU.02" + }, + "geonames_admin2": { + "name": "Parramatta", + "id": 7839763, + "ascii_name": "Parramatta", + "code": "AU.02.16260" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "https://www.fpnsw.org.au/" + ], + "aliases": [ + "Family Planning Australia" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0000 8855 3435", + "all": [ + "0000 0000 8855 3435" + ] + }, + "GRID": { + "preferred": "grid.489063.0", + "all": "grid.489063.0" + }, + "Wikidata": { + "preferred": "Q7279568", + "all": [ + "Q7279568" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/02y6dp041.json b/v1.43/02y6dp041.json new file mode 100644 index 000000000..24567f557 --- /dev/null +++ b/v1.43/02y6dp041.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/02y6dp041", + "name": "Office of Electricity", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "name": "Washington, D.C.", + "id": 4138106, + "ascii_name": "Washington, D.C.", + "code": "US.DC" + }, + "geonames_admin2": { + "name": "Washington", + "id": 4140987, + "ascii_name": "Washington", + "code": "US.DC.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.energy.gov/oe/office-electricity" + ], + "aliases": [ + "United States Department of Energy Office of Electricity", + "U.S. Department of Energy Office of Electricity", + "Office of Electricity Delivery and Energy Reliability" + ], + "acronyms": [ + "OE" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "preferred": "100016153", + "all": [ + "100016153" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/02ygek028.json b/v1.43/02ygek028.json new file mode 100644 index 000000000..3c69d9c33 --- /dev/null +++ b/v1.43/02ygek028.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/02ygek028", + "name": "UCLouvain Saint-Louis Brussels", + "email_address": null, + "ip_addresses": [], + "established": 1858, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "UCLouvain", + "type": "Parent", + "id": "https://ror.org/02495e989" + } + ], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "name": "Brussels Capital", + "id": 2800867, + "ascii_name": "Brussels Capital", + "code": "BE.BRU" + }, + "geonames_admin2": { + "name": "Bruxelles-Capitale", + "id": 6693370, + "ascii_name": "Bruxelles-Capitale", + "code": "BE.BRU.BRU" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2802361 + } + ], + "links": [ + "https://www.usaintlouis.be/sl/1058.html" + ], + "aliases": [ + "Facultés Universitaires Saint-Louis", + "Université Saint-Louis - Bruxelles", + "Université Saint-Louis" + ], + "acronyms": [ + "USLB" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Universit%C3%A9_Saint-Louis_Bruxelles", + "labels": [ + { + "label": "Saint-Louis University", + "iso639": "en" + }, + { + "label": "Facultés universitaires saint-louis", + "iso639": "fr" + } + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0941 6203" + ] + }, + "FundRef": { + "preferred": "501100008137", + "all": [ + "501100008137" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "11083712" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1391752" + ] + }, + "GRID": { + "preferred": "grid.434229.a", + "all": "grid.434229.a" + } + } +} \ No newline at end of file diff --git a/v1.43/02yjyfs84.json b/v1.43/02yjyfs84.json new file mode 100644 index 000000000..5dbd345a7 --- /dev/null +++ b/v1.43/02yjyfs84.json @@ -0,0 +1,79 @@ +{ + "id": "https://ror.org/02yjyfs84", + "name": "Max Planck Institute for Neurobiology of Behavior – caesar", + "email_address": null, + "ip_addresses": [], + "established": 2022, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Max Planck Society", + "type": "Parent", + "id": "https://ror.org/01hhn8329" + } + ], + "addresses": [ + { + "lat": 50.73438, + "lng": 7.09549, + "state": null, + "state_code": null, + "city": "Bonn", + "geonames_city": { + "id": 2946447, + "city": "Bonn", + "geonames_admin1": { + "name": "North Rhine-Westphalia", + "id": 2861876, + "ascii_name": "North Rhine-Westphalia", + "code": "DE.07" + }, + "geonames_admin2": { + "name": "Cologne District", + "id": 2886241, + "ascii_name": "Cologne District", + "code": "DE.07.053" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://mpinb.mpg.de" + ], + "aliases": [ + "Stiftung Caesar" + ], + "acronyms": [ + "MPINB" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Max-Planck-Institut_f%C3%BCr_Neurobiologie_des_Verhaltens_-_caesar", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.43/02zap0h66.json b/v1.43/02zap0h66.json new file mode 100644 index 000000000..02ddafb7f --- /dev/null +++ b/v1.43/02zap0h66.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "CISSS de Lanaudière" + ], + "acronyms": [], + "links": [ + "https://www.cisss-lanaudiere.gouv.qc.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Centre intégré de santé et de services sociaux de Lanaudière", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux", + "addresses": [ + { + "lat": 46.0164, + "lng": -73.4236, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Joliette", + "geonames_city": { + "id": 5987650, + "city": "Joliette", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Lanaudière", + "id": 6049141, + "ascii_name": "Lanaudière", + "code": "CA.10.14" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8059 5285", + "all": [ + "0000 0004 8059 5285" + ] + } + }, + "established": 1988, + "relationships": [], + "email_address": null, + "id": "https://ror.org/02zap0h66", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/02zms4m18.json b/v1.43/02zms4m18.json new file mode 100644 index 000000000..178a96178 --- /dev/null +++ b/v1.43/02zms4m18.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/02zms4m18", + "name": "Fundación ONCE", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.fundaciononce.es" + ], + "aliases": [], + "acronyms": [ + "ONCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ONCE", + "labels": [ + { + "label": "Fundación ONCE for Cooperation and Social Inclusion of Persons with Disabilities", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2191 9006" + ] + }, + "GRID": { + "preferred": "grid.434668.b", + "all": "grid.434668.b" + } + } +} \ No newline at end of file diff --git a/v1.43/02zv3kp89.json b/v1.43/02zv3kp89.json new file mode 100644 index 000000000..7951d40d4 --- /dev/null +++ b/v1.43/02zv3kp89.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/02zv3kp89", + "name": "Ministerium für Umwelt, Landwirtschaft und Energie des Landes Sachsen-Anhalt", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.12773, + "lng": 11.62916, + "state": null, + "state_code": null, + "city": "Magdeburg", + "geonames_city": { + "id": 2874545, + "city": "Magdeburg", + "geonames_admin1": { + "name": "Saxony-Anhalt", + "id": 2842565, + "ascii_name": "Saxony-Anhalt", + "code": "DE.14" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.14.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://mule.sachsen-anhalt.de" + ], + "aliases": [ + "Ministry for the Environment, Agriculture and Energy of the State of Saxony-Anhalt" + ], + "acronyms": [ + "MULE" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "preferred": "grid.494321.9", + "all": "grid.494321.9" + }, + "Wikidata": { + "preferred": "Q123647955", + "all": [ + "Q123647955" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/0300g2m85.json b/v1.43/0300g2m85.json new file mode 100644 index 000000000..fadd77b02 --- /dev/null +++ b/v1.43/0300g2m85.json @@ -0,0 +1,87 @@ +{ + "ip_addresses": [], + "aliases": [ + "National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber", + "NIHR CLAHRC Yorkshire and Humber" + ], + "acronyms": [ + "NIHR CLAHRC YH" + ], + "links": [ + "https://www.arc-yh.nihr.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "NIHR Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber", + "wikipedia_url": null, + "addresses": [ + { + "lat": 53.79391, + "lng": -1.75206, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Bradford", + "geonames_city": { + "id": 2654993, + "city": "Bradford", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bradford", + "id": 3333131, + "ascii_name": "Bradford", + "code": "GB.ENG.B4" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "501100014338", + "all": [ + "501100014338" + ] + } + }, + "established": 2019, + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "Parent", + "id": "https://ror.org/0187kwz08" + } + ], + "email_address": null, + "id": "https://ror.org/0300g2m85", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/0306aeb62.json b/v1.43/0306aeb62.json new file mode 100644 index 000000000..24f9265f3 --- /dev/null +++ b/v1.43/0306aeb62.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/0306aeb62", + "name": "SUNY Brockport", + "email_address": null, + "ip_addresses": [], + "established": 1867, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.21367, + "lng": -77.93918, + "state": null, + "state_code": null, + "city": "Brockport", + "geonames_city": { + "id": 5110227, + "city": "Brockport", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Monroe", + "id": 5127305, + "ascii_name": "Monroe", + "code": "US.NY.055" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.brockport.edu/" + ], + "aliases": [ + "The College at Brockport: State University of New York", + "State University of New York at Brockport" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Brockport", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0725 9953" + ] + }, + "FundRef": { + "preferred": "100011958", + "all": [ + "100011958" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "512315" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7603617" + ] + }, + "GRID": { + "preferred": "grid.264262.6", + "all": "grid.264262.6" + } + } +} \ No newline at end of file diff --git a/v1.43/030d6wr93.json b/v1.43/030d6wr93.json new file mode 100644 index 000000000..70e464bbd --- /dev/null +++ b/v1.43/030d6wr93.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/030d6wr93", + "name": "Laboratoire d'innovation moléculaire et applications", + "email_address": null, + "ip_addresses": [], + "established": 2018, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://lima.unistra.fr" + ], + "aliases": [ + "Laboratoire d’Innovation Moléculaire & Applications", + "LIMA - Laboratoire d'innovation moléculaire et applications" + ], + "acronyms": [ + "LIMA" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q52607321", + "all": [ + "Q52607321" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/030gd0911.json b/v1.43/030gd0911.json new file mode 100644 index 000000000..a13e2bfdd --- /dev/null +++ b/v1.43/030gd0911.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/030gd0911", + "name": "AIDIMA Technology Institute", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Instituto Tecnológico Metalmecánico, Mueble, Madera, Embalaje y Afines", + "type": "Successor", + "id": "https://ror.org/057f9wg13" + } + ], + "addresses": [ + { + "lat": 39.47391, + "lng": -0.37966, + "state": null, + "state_code": null, + "city": "Valencia", + "geonames_city": { + "id": 2509954, + "city": "Valencia", + "geonames_admin1": { + "name": "Valencia", + "id": 2593113, + "ascii_name": "Valencia", + "code": "ES.60" + }, + "geonames_admin2": { + "name": "Valencia", + "id": 2509951, + "ascii_name": "Valencia", + "code": "ES.60.V" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.aidima.eu/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "AIDIMA - Instituto Tecnológico del Mueble", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1807 8930" + ] + }, + "GRID": { + "preferred": "grid.423830.e", + "all": "grid.423830.e" + } + } +} \ No newline at end of file diff --git a/v1.43/030przz70.json b/v1.43/030przz70.json new file mode 100644 index 000000000..c388c6926 --- /dev/null +++ b/v1.43/030przz70.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/030przz70", + "name": "Modèles Insectes de l'Immunité Innée", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://ibmc.cnrs.fr/laboratoire/m3i/" + ], + "aliases": [ + "Immune Response and Development in Insects", + "Réponse Immunitaire et Développement chez les Insectes" + ], + "acronyms": [ + "RIDI", + "M3I" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Insect Models of Innate Immunity", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0369 3260" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UPR9022" + ] + }, + "GRID": { + "preferred": "grid.464078.9", + "all": "grid.464078.9" + } + } +} \ No newline at end of file diff --git a/v1.43/030tc8e27.json b/v1.43/030tc8e27.json new file mode 100644 index 000000000..0dfe0758c --- /dev/null +++ b/v1.43/030tc8e27.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/030tc8e27", + "name": "Universidad Estatal de Estudios Pedagógicos", + "email_address": null, + "ip_addresses": [], + "established": 1982, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.62781, + "lng": -115.45446, + "state": null, + "state_code": null, + "city": "Mexicali", + "geonames_city": { + "id": 3996069, + "city": "Mexicali", + "geonames_admin1": { + "name": "Baja California", + "id": 4017700, + "ascii_name": "Baja California", + "code": "MX.02" + }, + "geonames_admin2": { + "name": "Mexicali Municipality", + "id": 6942831, + "ascii_name": "Mexicali Municipality", + "code": "MX.02.002" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3996063 + } + ], + "links": [ + "https://ueepmxl.edu.mx" + ], + "aliases": [], + "acronyms": [ + "UEEP" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30293933" + ] + }, + "GRID": { + "preferred": "grid.441602.5", + "all": "grid.441602.5" + } + } +} \ No newline at end of file diff --git a/v1.43/03126ng80.json b/v1.43/03126ng80.json new file mode 100644 index 000000000..3ec840e6b --- /dev/null +++ b/v1.43/03126ng80.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/03126ng80", + "name": "University of Aosta Valley", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "NODES S.c.a.r.l", + "type": "Related", + "id": "https://ror.org/04hp1ky92" + } + ], + "addresses": [ + { + "lat": 45.73764, + "lng": 7.31722, + "state": null, + "state_code": null, + "city": "Aosta", + "geonames_city": { + "id": 3182997, + "city": "Aosta", + "geonames_admin1": { + "name": "Aosta Valley", + "id": 3164857, + "ascii_name": "Aosta Valley", + "code": "IT.19" + }, + "geonames_admin2": { + "name": "Valla d'Aosta", + "id": 3182996, + "ascii_name": "Valla d'Aosta", + "code": "IT.19.AO" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "https://www.univda.it/" + ], + "aliases": [], + "acronyms": [ + "UNIVDA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Aosta_Valley_University", + "labels": [ + { + "label": "Université de la vallée d'aoste", + "iso639": "fr" + }, + { + "label": "Università della Valle d'Aosta", + "iso639": "it" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1792 5560" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "4893243" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2319621" + ] + }, + "GRID": { + "preferred": "grid.449020.b", + "all": "grid.449020.b" + } + } +} \ No newline at end of file diff --git a/v1.43/0315e5x55.json b/v1.43/0315e5x55.json new file mode 100644 index 000000000..2b5abc80b --- /dev/null +++ b/v1.43/0315e5x55.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/0315e5x55", + "name": "Inria Saclay - Île-de-France Research Centre", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "French Institute for Research in Computer Science and Automation", + "type": "Parent", + "id": "https://ror.org/02kvxyf05" + } + ], + "addresses": [ + { + "lat": 48.71828, + "lng": 2.2498, + "state": null, + "state_code": null, + "city": "Palaiseau", + "geonames_city": { + "id": 2988758, + "city": "Palaiseau", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.inria.fr/en/centre/saclay" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Inria Saclay - Île de France", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q18156000" + ] + }, + "GRID": { + "preferred": "grid.457355.5", + "all": "grid.457355.5" + } + } +} \ No newline at end of file diff --git a/v1.43/031p4kj21.json b/v1.43/031p4kj21.json new file mode 100644 index 000000000..4a02ef476 --- /dev/null +++ b/v1.43/031p4kj21.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/031p4kj21", + "name": "Bristol Royal Infirmary", + "email_address": null, + "ip_addresses": [], + "established": 1935, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University of Bristol", + "type": "Related", + "id": "https://ror.org/0524sp257" + } + ], + "addresses": [ + { + "lat": 51.45523, + "lng": -2.59665, + "state": null, + "state_code": null, + "city": "Bristol", + "geonames_city": { + "id": 2654675, + "city": "Bristol", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bristol", + "id": 3333134, + "ascii_name": "Bristol", + "code": "GB.ENG.B7" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.uhbristol.nhs.uk/patients-and-visitors/your-hospitals/bristol-royal-infirmary/" + ], + "aliases": [], + "acronyms": [ + "BRI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bristol_Royal_Infirmary", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0399 4514" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "3906749" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q4969003" + ] + }, + "GRID": { + "preferred": "grid.418482.3", + "all": "grid.418482.3" + } + } +} \ No newline at end of file diff --git a/v1.43/031tb8x29.json b/v1.43/031tb8x29.json new file mode 100644 index 000000000..f47670f83 --- /dev/null +++ b/v1.43/031tb8x29.json @@ -0,0 +1,90 @@ +{ + "ip_addresses": [], + "aliases": [ + "Emerald Foundation" + ], + "acronyms": [], + "links": [ + "https://www.emeraldgrouppublishing.com" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "The Emerald Foundation", + "wikipedia_url": null, + "addresses": [ + { + "lat": 53.84861, + "lng": -1.83857, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Bingley", + "geonames_city": { + "id": 2655642, + "city": "Bingley", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bradford", + "id": 3333131, + "ascii_name": "Bradford", + "code": "GB.ENG.B4" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8307 2092", + "all": [ + "0000 0004 8307 2092" + ] + }, + "FundRef": { + "preferred": "100014894", + "all": [ + "100014894" + ] + } + }, + "established": 2008, + "relationships": [ + { + "label": "Emerald Group Publishing (United Kingdom)", + "type": "Parent", + "id": "https://ror.org/02avhnb77" + } + ], + "email_address": null, + "id": "https://ror.org/031tb8x29", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/031yjqj32.json b/v1.43/031yjqj32.json new file mode 100644 index 000000000..0a43c88fa --- /dev/null +++ b/v1.43/031yjqj32.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/031yjqj32", + "name": "Cégep Saint-Jean-sur-Richelieu", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.30713, + "lng": -73.26259, + "state": null, + "state_code": null, + "city": "Saint-Jean-sur-Richelieu", + "geonames_city": { + "id": 6138495, + "city": "Saint-Jean-sur-Richelieu", + "geonames_admin1": { + "name": "Quebec", + "id": 6115047, + "ascii_name": "Quebec", + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Montérégie", + "id": 6076966, + "ascii_name": "Montérégie", + "code": "CA.10.16" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "https://www.cstjean.qc.ca" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/C%C3%A9gep_de_Saint-Jean-sur-Richelieu", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0392 8621", + "all": [ + "0000 0004 0392 8621" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "19351390" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3009991" + ] + }, + "GRID": { + "preferred": "grid.462162.5", + "all": "grid.462162.5" + } + } +} \ No newline at end of file diff --git a/v1.43/0321g0743.json b/v1.43/0321g0743.json new file mode 100644 index 000000000..e4c7e6bbe --- /dev/null +++ b/v1.43/0321g0743.json @@ -0,0 +1,124 @@ +{ + "id": "https://ror.org/0321g0743", + "name": "Institut Gustave Roussy", + "email_address": null, + "ip_addresses": [], + "established": 1926, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.7939, + "lng": 2.35992, + "state": null, + "state_code": null, + "city": "Villejuif", + "geonames_city": { + "id": 2968705, + "city": "Villejuif", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Val-de-Marne", + "id": 2971090, + "ascii_name": "Val-de-Marne", + "code": "FR.11.94" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.gustaveroussy.fr/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Institut_Gustave_Roussy", + "labels": [ + { + "label": "Institut Gustave-Roussy", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2284 9388" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100008017" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "31282151" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q266227" + ] + }, + "GRID": { + "preferred": "grid.14925.3b", + "all": "grid.14925.3b" + } + } +} \ No newline at end of file diff --git a/v1.43/0329bcd18.json b/v1.43/0329bcd18.json new file mode 100644 index 000000000..418572edc --- /dev/null +++ b/v1.43/0329bcd18.json @@ -0,0 +1,95 @@ +{ + "ip_addresses": [], + "aliases": [ + "Region of Umbria" + ], + "acronyms": [], + "links": [ + "https://www.regione.umbria.it/la-regione" + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "name": "Regione Umbria", + "wikipedia_url": "https://it.wikipedia.org/wiki/Giunta_regionale_dell%27Umbria", + "addresses": [ + { + "lat": 43.1122, + "lng": 12.38878, + "state": null, + "state_code": null, + "country_geonames_id": 3175395, + "city": "Perugia", + "geonames_city": { + "id": 3171180, + "city": "Perugia", + "geonames_admin1": { + "name": "Umbria", + "ascii_name": "Umbria", + "id": 3165048, + "code": "IT.18" + }, + "geonames_admin2": { + "name": "Province of Perugia", + "id": 3171179, + "ascii_name": "Province of Perugia", + "code": "IT.18.PG" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2337 4150", + "all": [ + "0000 0001 2337 4150" + ] + }, + "Wikidata": { + "preferred": "Q30888354", + "all": [ + "Q30888354" + ] + }, + "FundRef": { + "preferred": "501100009889", + "all": [ + "501100009889" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/0329bcd18", + "labels": [ + { + "label": "Umbria Region", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/032jk8892.json b/v1.43/032jk8892.json new file mode 100644 index 000000000..6bc12b947 --- /dev/null +++ b/v1.43/032jk8892.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/032jk8892", + "name": "SASTRA University", + "email_address": null, + "ip_addresses": [], + "established": 1984, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Elite School of Optometry", + "type": "Related", + "id": "https://ror.org/00vvz3k68" + } + ], + "addresses": [ + { + "lat": 10.78523, + "lng": 79.13909, + "state": null, + "state_code": null, + "city": "Thanjavur", + "geonames_city": { + "id": 1254649, + "city": "Thanjavur", + "geonames_admin1": { + "name": "Tamil Nadu", + "id": 1255053, + "ascii_name": "Tamil Nadu", + "code": "IN.25" + }, + "geonames_admin2": { + "name": "Thanjavur", + "id": 1254650, + "ascii_name": "Thanjavur", + "code": "IN.25.620" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1269750 + } + ], + "links": [ + "http://www.sastra.edu/" + ], + "aliases": [ + "Shanmugha Arts, Science, Technology & Research Academy" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Shanmugha_Arts,_Science,_Technology_%26_Research_Academy", + "labels": [ + { + "label": "சண்முகா கலை, அறிவியல், தொழில்நுட்பம் மற்றும் ஆராய்ச்சி அகாதமி", + "iso639": "ta" + } + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0369 3226" + ] + }, + "FundRef": { + "preferred": "501100009536", + "all": [ + "501100009536" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "7409732" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7488784" + ] + }, + "GRID": { + "preferred": "grid.412423.2", + "all": "grid.412423.2" + } + } +} \ No newline at end of file diff --git a/v1.43/032mthd30.json b/v1.43/032mthd30.json new file mode 100644 index 000000000..64375ae08 --- /dev/null +++ b/v1.43/032mthd30.json @@ -0,0 +1,78 @@ +{ + "id": "https://ror.org/032mthd30", + "name": "Association for Research and Industrial Development of Natural Resources", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.32718, + "lng": -3.7635, + "state": null, + "state_code": null, + "city": "Leganés", + "geonames_city": { + "id": 3118594, + "city": "Leganés", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.aitemin.es/index_e.php" + ], + "aliases": [ + "Asociación para Investigación y el Desarrollo Industrial de los Recursos Naturales" + ], + "acronyms": [ + "AITEMIN" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.423614.6", + "all": "grid.423614.6" + } + } +} \ No newline at end of file diff --git a/v1.43/032qgrc76.json b/v1.43/032qgrc76.json new file mode 100644 index 000000000..8ab37375b --- /dev/null +++ b/v1.43/032qgrc76.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/032qgrc76", + "name": "State University of New York at Potsdam", + "email_address": null, + "ip_addresses": [], + "established": 1816, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 44.66978, + "lng": -74.98131, + "state": null, + "state_code": null, + "city": "Potsdam", + "geonames_city": { + "id": 5132103, + "city": "Potsdam", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "St. Lawrence", + "id": 5135484, + "ascii_name": "St. Lawrence", + "code": "US.NY.089" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.potsdam.edu/" + ], + "aliases": [ + "SUNY Potsdam" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/State_University_of_New_York_at_Potsdam", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9900 0190" + ] + }, + "FundRef": { + "preferred": "100010968", + "all": [ + "100010968" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "532171" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7603628" + ] + }, + "GRID": { + "preferred": "grid.264275.0", + "all": "grid.264275.0" + } + } +} \ No newline at end of file diff --git a/v1.43/033frs404.json b/v1.43/033frs404.json new file mode 100644 index 000000000..7252e08d4 --- /dev/null +++ b/v1.43/033frs404.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "SEMPRE" + ], + "links": [ + "https://sempre.org.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Society for Education, Music and Psychology Research", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2175 7086", + "all": [ + "0000 0001 2175 7086" + ] + }, + "FundRef": { + "preferred": "100014693", + "all": [ + "100014693" + ] + } + }, + "established": 1972, + "relationships": [], + "email_address": null, + "id": "https://ror.org/033frs404", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/033svsm10.json b/v1.43/033svsm10.json new file mode 100644 index 000000000..d0d5ba036 --- /dev/null +++ b/v1.43/033svsm10.json @@ -0,0 +1,109 @@ +{ + "ip_addresses": [], + "aliases": [ + "CRUK Manchester Centre", + "Manchester Cancer Research Centre" + ], + "acronyms": [ + "MCRC" + ], + "links": [ + "https://www.crukcentre.manchester.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Cancer Research UK Manchester Centre", + "wikipedia_url": "https://en.wikipedia.org/wiki/Manchester_Cancer_Research_Centre", + "addresses": [ + { + "lat": 53.45, + "lng": -2.23333, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Greater Manchester", + "geonames_city": { + "id": 2648108, + "city": "Greater Manchester", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0612 4047", + "all": [ + "0000 0004 0612 4047" + ] + }, + "Wikidata": { + "preferred": "Q24060265", + "all": [ + "Q24060265" + ] + }, + "FundRef": { + "preferred": "501100017008", + "all": [ + "501100017008" + ] + } + }, + "established": 2006, + "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" + } + ], + "email_address": null, + "id": "https://ror.org/033svsm10", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/033x0mt18.json b/v1.43/033x0mt18.json new file mode 100644 index 000000000..a6fcee7cc --- /dev/null +++ b/v1.43/033x0mt18.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/033x0mt18", + "name": "Tropical and Mediterranean Cropping System Functioning and Management", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://umr-system.cirad.fr/en" + ], + "aliases": [ + "UMR System" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Fonctionnement et Conduite des Systèmes de Culture Tropicaux et Méditerranéens", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q51780120" + ] + }, + "GRID": { + "preferred": "grid.503398.4", + "all": "grid.503398.4" + } + } +} \ No newline at end of file diff --git a/v1.43/033zmj163.json b/v1.43/033zmj163.json new file mode 100644 index 000000000..3335ebf55 --- /dev/null +++ b/v1.43/033zmj163.json @@ -0,0 +1,116 @@ +{ + "id": "https://ror.org/033zmj163", + "name": "SUNY Plattsburgh", + "email_address": null, + "ip_addresses": [], + "established": 1889, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State University of New York", + "type": "Parent", + "id": "https://ror.org/01q1z8k08" + }, + { + "label": "Lake Champlain Sea Grant", + "type": "Child", + "id": "https://ror.org/05k70qf45" + }, + { + "label": "Great Lakes Research Consortium", + "type": "Related", + "id": "https://ror.org/05cshtm26" + } + ], + "addresses": [ + { + "lat": 44.69949, + "lng": -73.45291, + "state": null, + "state_code": null, + "city": "Plattsburgh", + "geonames_city": { + "id": 5131692, + "city": "Plattsburgh", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Clinton", + "id": 5112977, + "ascii_name": "Clinton", + "code": "US.NY.019" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.plattsburgh.edu/" + ], + "aliases": [ + "Plattsburgh State" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Plattsburgh", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0724 5877" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100007288" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "531562" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7603626" + ] + }, + "GRID": { + "preferred": "grid.264274.1", + "all": "grid.264274.1" + } + } +} \ No newline at end of file diff --git a/v1.43/034a0rc87.json b/v1.43/034a0rc87.json new file mode 100644 index 000000000..2180d7775 --- /dev/null +++ b/v1.43/034a0rc87.json @@ -0,0 +1,90 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "HERA" + ], + "links": [ + "https://heranet.info" + ], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "name": "Humanities in the European Research Area", + "wikipedia_url": null, + "addresses": [ + { + "lat": 53.33082, + "lng": -6.23643, + "state": null, + "state_code": null, + "country_geonames_id": 2963597, + "city": "Ballsbridge", + "geonames_city": { + "id": 2966685, + "city": "Ballsbridge", + "geonames_admin1": { + "name": "Leinster", + "ascii_name": "Leinster", + "id": 7521314, + "code": "IE.L" + }, + "geonames_admin2": { + "name": "Dublin City", + "id": 7778677, + "ascii_name": "Dublin City", + "code": "IE.L.33" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7784 8691", + "all": [ + "0000 0004 7784 8691" + ] + }, + "Wikidata": { + "preferred": "Q122978876", + "all": [ + "Q122978876" + ] + }, + "FundRef": { + "preferred": "100014251", + "all": [ + "100014251" + ] + } + }, + "established": 2004, + "relationships": [], + "email_address": null, + "id": "https://ror.org/034a0rc87", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/034d74a71.json b/v1.43/034d74a71.json new file mode 100644 index 000000000..e05aaf04e --- /dev/null +++ b/v1.43/034d74a71.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "FCiências.ID" + ], + "acronyms": [], + "links": [ + "https://www.fciencias-id.pt" + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "name": "FCiências.ID - Associação para a Investigação e Desenvolvimento de Ciências", + "wikipedia_url": null, + "addresses": [ + { + "lat": 38.71667, + "lng": -9.13333, + "state": null, + "state_code": null, + "country_geonames_id": 2264397, + "city": "Lisbon", + "geonames_city": { + "id": 2267057, + "city": "Lisbon", + "geonames_admin1": { + "name": "Lisbon", + "ascii_name": "Lisbon", + "id": 2267056, + "code": "PT.14" + }, + "geonames_admin2": { + "name": "Lisbon", + "id": 6458923, + "ascii_name": "Lisbon", + "code": "PT.14.1106" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6782 3650", + "all": [ + "0000 0004 6782 3650" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/034d74a71", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/034dfs572.json b/v1.43/034dfs572.json new file mode 100644 index 000000000..82fd5c5fb --- /dev/null +++ b/v1.43/034dfs572.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/034dfs572", + "name": "Ecopath International Initiative", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://ecopathinternational.org/" + ], + "aliases": [], + "acronyms": [ + "EII" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ecopath", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.512209.d", + "all": "grid.512209.d" + } + } +} \ No newline at end of file diff --git a/v1.43/034vb5t35.json b/v1.43/034vb5t35.json new file mode 100644 index 000000000..676287909 --- /dev/null +++ b/v1.43/034vb5t35.json @@ -0,0 +1,120 @@ +{ + "id": "https://ror.org/034vb5t35", + "name": "Royal Marsden Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1851, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "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 NHS Foundation Trust", + "type": "Parent", + "id": "https://ror.org/0008wzh48" + }, + { + "label": "Royal Marsden Cancer Charity", + "type": "Child", + "id": "https://ror.org/058ne9w36" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.nhs.uk/Services/hospitals/Overview/DefaultView.aspx?id=1416" + ], + "aliases": [], + "acronyms": [ + "RM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Royal_Marsden_Hospital", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0417 0461" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100000650" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q50575536" + ] + }, + "GRID": { + "preferred": "grid.424926.f", + "all": "grid.424926.f" + } + } +} \ No newline at end of file diff --git a/v1.43/034x1af55.json b/v1.43/034x1af55.json new file mode 100644 index 000000000..f6595bd97 --- /dev/null +++ b/v1.43/034x1af55.json @@ -0,0 +1,88 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "http://uin.no" + ], + "country": { + "country_name": "Norway", + "country_code": "NO" + }, + "name": "University of Nordland", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Nordland", + "addresses": [ + { + "lat": 67.28325, + "lng": 14.38319, + "state": null, + "state_code": null, + "country_geonames_id": 3144096, + "city": "Bodø", + "geonames_city": { + "id": 6453323, + "city": "Bodø", + "geonames_admin1": { + "name": "Nordland", + "ascii_name": "Nordland", + "id": 3144301, + "code": "NO.09" + }, + "geonames_admin2": { + "name": "Bodø", + "id": 6453323, + "ascii_name": "Bodø", + "code": "NO.09.1804" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2326 7101", + "all": [ + "0000 0001 2326 7101" + ] + }, + "Wikidata": { + "preferred": "Q1779468", + "all": [ + "Q1779468" + ] + }, + "FundRef": { + "preferred": "100015995", + "all": [ + "100015995" + ] + } + }, + "established": 1994, + "relationships": [], + "email_address": null, + "id": "https://ror.org/034x1af55", + "labels": [], + "status": "inactive" +} \ No newline at end of file diff --git a/v1.43/035gq6r08.json b/v1.43/035gq6r08.json new file mode 100644 index 000000000..b699f07ea --- /dev/null +++ b/v1.43/035gq6r08.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/035gq6r08", + "name": "Laboratoire d'Excellence en Recherche sur le Médicament et l'Innovation Thérapeutique", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.labex-lermit.fr" + ], + "aliases": [ + "LabEx LERMIT" + ], + "acronyms": [ + "LERMIT" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Laboratory of Excellence in Research on Medication and Innovative Therapeutics", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "preferred": "501100011879", + "all": [ + "501100011879" + ] + }, + "Wikidata": { + "preferred": "Q124525851", + "all": [ + "Q124525851" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/035z18f46.json b/v1.43/035z18f46.json new file mode 100644 index 000000000..e46f24768 --- /dev/null +++ b/v1.43/035z18f46.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [ + "State Key Lab of Quantum Optics and Quantum Optics Devices" + ], + "acronyms": [], + "links": [ + "http://sklqo.sxu.edu.cn" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "State Key Laboratory of Quantum Optics and Quantum Optics Devices", + "wikipedia_url": null, + "addresses": [ + { + "lat": 37.86944, + "lng": 112.56028, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Taiyuan", + "geonames_city": { + "id": 1793511, + "city": "Taiyuan", + "geonames_admin1": { + "name": "Shanxi", + "ascii_name": "Shanxi", + "id": 1795912, + "code": "CN.24" + }, + "geonames_admin2": { + "name": "Taiyuan Shi", + "id": 1793510, + "ascii_name": "Taiyuan Shi", + "code": "CN.24.1401" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": null, + "relationships": [ + { + "label": "Shanxi University", + "type": "Parent", + "id": "https://ror.org/03y3e3s17" + } + ], + "email_address": null, + "id": "https://ror.org/035z18f46", + "labels": [ + { + "label": "量子光学与光量子器件国家重点实验室", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/0364rd617.json b/v1.43/0364rd617.json new file mode 100644 index 000000000..dbf9da588 --- /dev/null +++ b/v1.43/0364rd617.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/0364rd617", + "name": "Instituto Sindical de Trabajo Ambiente y Salud", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.47391, + "lng": -0.37966, + "state": null, + "state_code": null, + "city": "Valencia", + "geonames_city": { + "id": 2509954, + "city": "Valencia", + "geonames_admin1": { + "name": "Valencia", + "id": 2593113, + "ascii_name": "Valencia", + "code": "ES.60" + }, + "geonames_admin2": { + "name": "Valencia", + "id": 2509951, + "ascii_name": "Valencia", + "code": "ES.60.V" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://istas.net" + ], + "aliases": [], + "acronyms": [ + "ISTAS" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2162 6430" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5917720" + ] + }, + "GRID": { + "preferred": "grid.507092.9", + "all": "grid.507092.9" + } + } +} \ No newline at end of file diff --git a/v1.43/036dxts37.json b/v1.43/036dxts37.json new file mode 100644 index 000000000..efbd44e9d --- /dev/null +++ b/v1.43/036dxts37.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/036dxts37", + "name": "European Institute of Innovation and Technology", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "European Union", + "type": "Parent", + "id": "https://ror.org/019w4f821" + }, + { + "label": "EIT Food", + "type": "Child", + "id": "https://ror.org/01kde4v59" + } + ], + "addresses": [ + { + "lat": 47.49835, + "lng": 19.04045, + "state": null, + "state_code": null, + "city": "Budapest", + "geonames_city": { + "id": 3054643, + "city": "Budapest", + "geonames_admin1": { + "name": "Budapest", + "id": 3054638, + "ascii_name": "Budapest", + "code": "HU.05" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 719819 + } + ], + "links": [ + "http://eit.europa.eu/" + ], + "aliases": [], + "acronyms": [ + "EIT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/European_Institute_of_Innovation_and_Technology", + "labels": [ + { + "label": "Európai Innovációs és Technológiai Intézet", + "iso639": "hu" + } + ], + "country": { + "country_name": "Hungary", + "country_code": "HU" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2195 4661" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100000811", + "100010686" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "4162196" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q993120" + ] + }, + "GRID": { + "preferred": "grid.453486.8", + "all": "grid.453486.8" + } + } +} \ No newline at end of file diff --git a/v1.43/036mest28.json b/v1.43/036mest28.json new file mode 100644 index 000000000..d66448cf0 --- /dev/null +++ b/v1.43/036mest28.json @@ -0,0 +1,97 @@ +{ + "id": "https://ror.org/036mest28", + "name": "Biology of Extremophiles Laboratory", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www-archbac.u-psud.fr/" + ], + "aliases": [], + "acronyms": [ + "BMGE" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "Laboratoire de Biologie Moleculaire du Gène chez les Extremophiles", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "preferred": "grid.463808.1", + "all": "grid.463808.1" + } + } +} \ No newline at end of file diff --git a/v1.43/036wkjd70.json b/v1.43/036wkjd70.json new file mode 100644 index 000000000..ebb9029c9 --- /dev/null +++ b/v1.43/036wkjd70.json @@ -0,0 +1,104 @@ +{ + "ip_addresses": [], + "aliases": [ + "ZOLL", + "ZOLL Medical" + ], + "acronyms": [ + "ZMC" + ], + "links": [ + "https://www.zoll.com" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "ZOLL Medical Corporation (United States)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 42.59981, + "lng": -71.36728, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Chelmsford", + "geonames_city": { + "id": 4932869, + "city": "Chelmsford", + "geonames_admin1": { + "name": "Massachusetts", + "ascii_name": "Massachusetts", + "id": 6254926, + "code": "US.MA" + }, + "geonames_admin2": { + "name": "Middlesex", + "id": 4943909, + "ascii_name": "Middlesex", + "code": "US.MA.017" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0413 2799", + "all": [ + "0000 0004 0413 2799" + ] + }, + "Wikidata": { + "preferred": "Q118075142", + "all": [ + "Q118075142" + ] + }, + "FundRef": { + "preferred": "100015345", + "all": [ + "100015345" + ] + } + }, + "established": 1980, + "relationships": [ + { + "label": "Asahi Kasei (Japan)", + "type": "Parent", + "id": "https://ror.org/018wp0236" + } + ], + "email_address": null, + "id": "https://ror.org/036wkjd70", + "labels": [ + { + "label": "ZOLL Medical Corporation", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/036xwe059.json b/v1.43/036xwe059.json new file mode 100644 index 000000000..db93182b8 --- /dev/null +++ b/v1.43/036xwe059.json @@ -0,0 +1,73 @@ +{ + "ip_addresses": [], + "aliases": [ + "Ministry of Agriculture and Consumer Protection of the State of North Rhine-Westphalia" + ], + "acronyms": [ + "MLV NRW" + ], + "links": [ + "https://www.mlv.nrw.de" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "Ministerium für Landwirtschaft und Verbraucherschutz des Landes Nordrhein-Westfalen", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.22172, + "lng": 6.77616, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Düsseldorf", + "geonames_city": { + "id": 2934246, + "city": "Düsseldorf", + "geonames_admin1": { + "name": "North Rhine-Westphalia", + "ascii_name": "North Rhine-Westphalia", + "id": 2861876, + "code": "DE.07" + }, + "geonames_admin2": { + "name": "Düsseldorf District", + "id": 2934245, + "ascii_name": "Düsseldorf District", + "code": "DE.07.051" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/036xwe059", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/037405308.json b/v1.43/037405308.json new file mode 100644 index 000000000..769f618e4 --- /dev/null +++ b/v1.43/037405308.json @@ -0,0 +1,171 @@ +{ + "id": "https://ror.org/037405308", + "name": "Queensland Government", + "email_address": null, + "ip_addresses": [], + "established": 1859, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": -27.46794, + "lng": 153.02809, + "state": null, + "state_code": null, + "city": "Brisbane", + "geonames_city": { + "id": 2174003, + "city": "Brisbane", + "geonames_admin1": { + "name": "Queensland", + "id": 2152274, + "ascii_name": "Queensland", + "code": "AU.04" + }, + "geonames_admin2": { + "name": "Brisbane", + "id": 7839562, + "ascii_name": "Brisbane", + "code": "AU.04.31000" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "https://www.qld.gov.au" + ], + "aliases": [ + "Government of Queensland", + "State of Queensland" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Government_of_Queensland", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0380 0628" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100003550" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3112627" + ] + }, + "GRID": { + "preferred": "grid.453171.5", + "all": "grid.453171.5" + } + } +} \ No newline at end of file diff --git a/v1.43/037p13h95.json b/v1.43/037p13h95.json new file mode 100644 index 000000000..796495c21 --- /dev/null +++ b/v1.43/037p13h95.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/037p13h95", + "name": "CES University", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 6.25184, + "lng": -75.56359, + "state": null, + "state_code": null, + "city": "Medellín", + "geonames_city": { + "id": 3674962, + "city": "Medellín", + "geonames_admin1": { + "name": "Antioquia", + "id": 3689815, + "ascii_name": "Antioquia", + "code": "CO.02" + }, + "geonames_admin2": { + "name": "Medellín", + "id": 3674954, + "ascii_name": "Medellín", + "code": "CO.02.05001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3686110 + } + ], + "links": [ + "https://www.ces.edu.co" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Colombia", + "country_code": "CO" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0812 5789" + ] + }, + "FundRef": { + "preferred": "100018005", + "all": [ + "100018005" + ] + }, + "GRID": { + "preferred": "grid.411140.1", + "all": "grid.411140.1" + }, + "Wikidata": { + "preferred": "Q6156377", + "all": [ + "Q6156377" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/037zgn354.json b/v1.43/037zgn354.json new file mode 100644 index 000000000..a5ac5da90 --- /dev/null +++ b/v1.43/037zgn354.json @@ -0,0 +1,153 @@ +{ + "id": "https://ror.org/037zgn354", + "name": "Johns Hopkins Medicine", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Johns Hopkins University", + "type": "Related", + "id": "https://ror.org/00za53h95" + }, + { + "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": "Johns Hopkins University School of Medicine", + "type": "Predecessor", + "id": "https://ror.org/02nfzhn33" + }, + { + "label": "Neurofibromatosis Therapeutic Acceleration Program", + "type": "Child", + "id": "https://ror.org/01359dk79" + }, + { + "label": "Center for Innovative Medicine", + "type": "Child", + "id": "https://ror.org/04d4pvt78" + } + ], + "addresses": [ + { + "lat": 39.29038, + "lng": -76.61219, + "state": null, + "state_code": null, + "city": "Baltimore", + "geonames_city": { + "id": 4347778, + "city": "Baltimore", + "geonames_admin1": { + "name": "Maryland", + "id": 4361885, + "ascii_name": "Maryland", + "code": "US.MD" + }, + "geonames_admin2": { + "name": "Baltimore", + "id": 4347820, + "ascii_name": "Baltimore", + "code": "US.MD.510" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.hopkinsmedicine.org" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8617 4175", + "0000 0001 2150 6738" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q50363516" + ] + }, + "GRID": { + "preferred": "grid.469474.c", + "all": "grid.469474.c" + } + } +} \ No newline at end of file diff --git a/v1.43/038e0dv78.json b/v1.43/038e0dv78.json new file mode 100644 index 000000000..fd9ec440f --- /dev/null +++ b/v1.43/038e0dv78.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/038e0dv78", + "name": "Trine University", + "email_address": "", + "ip_addresses": [], + "established": 1884, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 41.63477, + "lng": -84.99941, + "state": null, + "state_code": null, + "city": "Angola", + "geonames_city": { + "id": 4917614, + "city": "Angola", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Steuben", + "id": 4926796, + "ascii_name": "Steuben", + "code": "US.IN.151" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.trine.edu/" + ], + "aliases": [ + "Tri-State University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Trine_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0369 9275" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "1444866" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7842344" + ] + }, + "GRID": { + "preferred": "grid.411318.e", + "all": "grid.411318.e" + } + } +} \ No newline at end of file diff --git a/v1.43/038kr2d80.json b/v1.43/038kr2d80.json new file mode 100644 index 000000000..978deb52e --- /dev/null +++ b/v1.43/038kr2d80.json @@ -0,0 +1,100 @@ +{ + "ip_addresses": [], + "aliases": [ + "Yerkes National Primate Research Center", + "Emory University Yerkes National Primate Research Center", + "Emory University National Primate Research Center" + ], + "acronyms": [ + "YNPRC" + ], + "links": [ + "https://www.enprc.emory.edu" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Emory National Primate Research Center", + "wikipedia_url": "https://en.wikipedia.org/wiki/Emory_National_Primate_Research_Center", + "addresses": [ + { + "lat": 33.749, + "lng": -84.38798, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Atlanta", + "geonames_city": { + "id": 4180439, + "city": "Atlanta", + "geonames_admin1": { + "name": "Georgia", + "ascii_name": "Georgia", + "id": 4197000, + "code": "US.GA" + }, + "geonames_admin2": { + "name": "Fulton", + "id": 4196508, + "ascii_name": "Fulton", + "code": "US.GA.121" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0000 8741 8346", + "all": [ + "0000 0000 8741 8346" + ] + }, + "Wikidata": { + "preferred": "Q2600140", + "all": [ + "Q2600140" + ] + }, + "FundRef": { + "preferred": "100012692", + "all": [ + "100012692" + ] + } + }, + "established": 1930, + "relationships": [ + { + "label": "Emory University", + "type": "Parent", + "id": "https://ror.org/03czfpz43" + } + ], + "email_address": null, + "id": "https://ror.org/038kr2d80", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/038synb39.json b/v1.43/038synb39.json new file mode 100644 index 000000000..4e40cb9ba --- /dev/null +++ b/v1.43/038synb39.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/038synb39", + "name": "Institute of Biophysics", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "HUN-REN Szegedi Biológiai Kutatóközpont", + "type": "Parent", + "id": "https://ror.org/016gb1631" + } + ], + "addresses": [ + { + "lat": 46.253, + "lng": 20.14824, + "state": null, + "state_code": null, + "city": "Szeged", + "geonames_city": { + "id": 715429, + "city": "Szeged", + "geonames_admin1": { + "name": "Csongrád", + "id": 721589, + "ascii_name": "Csongrád", + "code": "HU.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 719819 + } + ], + "links": [ + "http://www.brc.hu/biophysics.php?change_lang=en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Biofizikai Intézet Szegedi Biológiai Kutatóközpont", + "iso639": "hu" + } + ], + "country": { + "country_name": "Hungary", + "country_code": "HU" + }, + "external_ids": { + "GRID": { + "preferred": "grid.481813.7", + "all": "grid.481813.7" + } + } +} \ No newline at end of file diff --git a/v1.43/039epzh36.json b/v1.43/039epzh36.json new file mode 100644 index 000000000..71f3c4899 --- /dev/null +++ b/v1.43/039epzh36.json @@ -0,0 +1,85 @@ +{ + "ip_addresses": [], + "aliases": [ + "Istituto Nazionale di Fisica Nucleare Gruppo Collegato di Cosenza", + "National Institute of Nuclear Physics - Cosenza Unit" + ], + "acronyms": [ + "GCC" + ], + "links": [ + "http://www.cs.infn.it" + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "name": "INFN Gruppo Collegato di Cosenza", + "wikipedia_url": null, + "addresses": [ + { + "lat": 39.2989, + "lng": 16.25307, + "state": null, + "state_code": null, + "country_geonames_id": 3175395, + "city": "Cosenza", + "geonames_city": { + "id": 2524907, + "city": "Cosenza", + "geonames_admin1": { + "name": "Calabria", + "ascii_name": "Calabria", + "id": 2525468, + "code": "IT.03" + }, + "geonames_admin2": { + "name": "Province of Cosenza", + "id": 2524906, + "ascii_name": "Province of Cosenza", + "code": "IT.03.CS" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": null, + "relationships": [ + { + "label": "Istituto Nazionale di Fisica Nucleare", + "type": "Parent", + "id": "https://ror.org/005ta0471" + }, + { + "label": "University of Calabria", + "type": "Related", + "id": "https://ror.org/02rc97e94" + } + ], + "email_address": null, + "id": "https://ror.org/039epzh36", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/039h1gd08.json b/v1.43/039h1gd08.json new file mode 100644 index 000000000..67081bd95 --- /dev/null +++ b/v1.43/039h1gd08.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/039h1gd08", + "name": "Institute of Plant Biology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "HUN-REN Szegedi Biológiai Kutatóközpont", + "type": "Parent", + "id": "https://ror.org/016gb1631" + } + ], + "addresses": [ + { + "lat": 46.253, + "lng": 20.14824, + "state": null, + "state_code": null, + "city": "Szeged", + "geonames_city": { + "id": 715429, + "city": "Szeged", + "geonames_admin1": { + "name": "Csongrád", + "id": 721589, + "ascii_name": "Csongrád", + "code": "HU.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 719819 + } + ], + "links": [ + "http://www.brc.hu/plant_biology.php?change_lang=en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Növénybiológiai Intézet Szegedi Biológiai Kutatóközpont Magyar Tudományos Akadémia", + "iso639": "hu" + } + ], + "country": { + "country_name": "Hungary", + "country_code": "HU" + }, + "external_ids": { + "GRID": { + "preferred": "grid.481816.2", + "all": "grid.481816.2" + } + } +} \ No newline at end of file diff --git a/v1.43/03a3nj982.json b/v1.43/03a3nj982.json new file mode 100644 index 000000000..1a9868542 --- /dev/null +++ b/v1.43/03a3nj982.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/03a3nj982", + "name": "Ecoinstitut", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.ecoinstitut.coop" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.432540.4", + "all": "grid.432540.4" + } + } +} \ No newline at end of file diff --git a/v1.43/03ab0zs98.json b/v1.43/03ab0zs98.json new file mode 100644 index 000000000..e259e5e2c --- /dev/null +++ b/v1.43/03ab0zs98.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/03ab0zs98", + "name": "Laboratoire de Mathématiques d'Orsay", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.imo.universite-paris-saclay.fr" + ], + "aliases": [ + "Laboratoire de Mathématiques d’Orsay" + ], + "acronyms": [ + "LMO" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Mathematics Laboratory of Orsay", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0368 9704" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR8628" + ] + }, + "GRID": { + "preferred": "grid.463900.8", + "all": "grid.463900.8" + } + } +} \ No newline at end of file diff --git a/v1.43/03artm726.json b/v1.43/03artm726.json new file mode 100644 index 000000000..370359550 --- /dev/null +++ b/v1.43/03artm726.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/03artm726", + "name": "Beaumont Hospital, Royal Oak", + "email_address": null, + "ip_addresses": [], + "established": 1955, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Oakland University", + "type": "Related", + "id": "https://ror.org/01ythxj32" + }, + { + "label": "Corewell Health", + "type": "Parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "addresses": [ + { + "lat": 42.48948, + "lng": -83.14465, + "state": null, + "state_code": null, + "city": "Royal Oak", + "geonames_city": { + "id": 5007804, + "city": "Royal Oak", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Oakland", + "id": 5004223, + "ascii_name": "Oakland", + "code": "US.MI.125" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.beaumont.org/locations/beaumont-hospital-royal-oak" + ], + "aliases": [ + "William Beaumont Hospital, Royal Oak" + ], + "acronyms": [ + "WBH" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0435 1924" + ] + }, + "Wikidata": { + "preferred": "Q30286651", + "all": [ + "Q30286651" + ] + }, + "GRID": { + "preferred": "grid.417118.a", + "all": "grid.417118.a" + } + } +} \ No newline at end of file diff --git a/v1.43/03b21sh32.json b/v1.43/03b21sh32.json new file mode 100644 index 000000000..a7ffc8f7d --- /dev/null +++ b/v1.43/03b21sh32.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/03b21sh32", + "name": "Basque Center for Applied Mathematics", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.26271, + "lng": -2.92528, + "state": null, + "state_code": null, + "city": "Bilbao", + "geonames_city": { + "id": 3128026, + "city": "Bilbao", + "geonames_admin1": { + "name": "Basque Country", + "id": 3336903, + "ascii_name": "Basque Country", + "code": "ES.59" + }, + "geonames_admin2": { + "name": "Biscay", + "id": 3104469, + "ascii_name": "Biscay", + "code": "ES.59.BI" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.bcamath.org" + ], + "aliases": [], + "acronyms": [ + "BCAM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Basque_Center_for_Applied_Mathematics", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0467 2410" + ] + }, + "FundRef": { + "preferred": "501100014371", + "all": [ + "501100014371" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "24386453" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q4867846" + ] + }, + "GRID": { + "preferred": "grid.462072.5", + "all": "grid.462072.5" + } + } +} \ No newline at end of file diff --git a/v1.43/03bk8p931.json b/v1.43/03bk8p931.json new file mode 100644 index 000000000..ed5850757 --- /dev/null +++ b/v1.43/03bk8p931.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/03bk8p931", + "name": "Helen DeVos Children's Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "Parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "addresses": [ + { + "lat": 42.96336, + "lng": -85.66809, + "state": null, + "state_code": null, + "city": "Grand Rapids", + "geonames_city": { + "id": 4994358, + "city": "Grand Rapids", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Kent", + "id": 4998005, + "ascii_name": "Kent", + "code": "US.MI.081" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.helendevoschildrens.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Helen_DeVos_Children%27s_Hospital", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0450 6121" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "27092621" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q14716129" + ] + }, + "GRID": { + "preferred": "grid.413656.3", + "all": "grid.413656.3" + } + } +} \ No newline at end of file diff --git a/v1.43/03byxpy70.json b/v1.43/03byxpy70.json new file mode 100644 index 000000000..cf1c1326c --- /dev/null +++ b/v1.43/03byxpy70.json @@ -0,0 +1,73 @@ +{ + "ip_addresses": [], + "aliases": [ + "Dennis Osadebay University, Asaba" + ], + "acronyms": [ + "DOU" + ], + "links": [ + "https://dou.edu.ng" + ], + "country": { + "country_name": "Nigeria", + "country_code": "NG" + }, + "name": "Dennis Osadebay University", + "wikipedia_url": null, + "addresses": [ + { + "lat": 6.19824, + "lng": 6.73187, + "state": null, + "state_code": null, + "country_geonames_id": 2328926, + "city": "Asaba", + "geonames_city": { + "id": 2349276, + "city": "Asaba", + "geonames_admin1": { + "name": "Delta", + "ascii_name": "Delta", + "id": 2565341, + "code": "NG.36" + }, + "geonames_admin2": { + "name": "Oshimili South", + "id": 7729934, + "ascii_name": "Oshimili South", + "code": "NG.36.10015" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": {}, + "established": 2021, + "relationships": [], + "email_address": null, + "id": "https://ror.org/03byxpy70", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03c4atk17.json b/v1.43/03c4atk17.json new file mode 100644 index 000000000..61d6c77bf --- /dev/null +++ b/v1.43/03c4atk17.json @@ -0,0 +1,121 @@ +{ + "id": "https://ror.org/03c4atk17", + "name": "Università della Svizzera italiana", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 46.01008, + "lng": 8.96004, + "state": null, + "state_code": null, + "city": "Lugano", + "geonames_city": { + "id": 2659836, + "city": "Lugano", + "geonames_admin1": { + "name": "Ticino", + "id": 2658370, + "ascii_name": "Ticino", + "code": "CH.TI" + }, + "geonames_admin2": { + "name": "Lugano", + "id": 6458771, + "ascii_name": "Lugano", + "code": "CH.TI.2105" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.usi.ch" + ], + "aliases": [ + "University of Lugano", + "University of Italian Switzerland", + "Université de la Suisse italienne", + "University of Southern Switzerland" + ], + "acronyms": [ + "USI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Universit%C3%A0_della_Svizzera_italiana", + "labels": [], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2203 2861" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2290642" + ] + }, + "Wikidata": { + "preferred": "Q689617", + "all": [ + "Q689617", + "Q27484979" + ] + }, + "GRID": { + "preferred": "grid.29078.34", + "all": "grid.29078.34" + } + } +} \ No newline at end of file diff --git a/v1.43/03c7e3050.json b/v1.43/03c7e3050.json new file mode 100644 index 000000000..fe4f15090 --- /dev/null +++ b/v1.43/03c7e3050.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03c7e3050", + "name": "Fundació Salut i Envelliment UAB", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Universitat Autònoma de Barcelona", + "type": "Related", + "id": "https://ror.org/052g8jq94" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.uab.cat/web/fundacio-salut-i-envelliment-1345754058073.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 4904 4581" + ] + }, + "GRID": { + "preferred": "grid.477257.4", + "all": "grid.477257.4" + } + } +} \ No newline at end of file diff --git a/v1.43/03cebjr81.json b/v1.43/03cebjr81.json new file mode 100644 index 000000000..68eeefc71 --- /dev/null +++ b/v1.43/03cebjr81.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03cebjr81", + "name": "Anderson University - Indiana", + "email_address": null, + "ip_addresses": [], + "established": 1917, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 40.10532, + "lng": -85.68025, + "state": null, + "state_code": null, + "city": "Anderson", + "geonames_city": { + "id": 4917592, + "city": "Anderson", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Madison", + "id": 4923124, + "ascii_name": "Madison", + "code": "US.IN.095" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.anderson.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Anderson_University_(Indiana)", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0369 9160" + ] + }, + "OrgRef": { + "preferred": "287937", + "all": [ + "287937", + "1390018" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q4754216" + ] + }, + "GRID": { + "preferred": "grid.422658.f", + "all": "grid.422658.f" + } + } +} \ No newline at end of file diff --git a/v1.43/03cmntr54.json b/v1.43/03cmntr54.json new file mode 100644 index 000000000..e712963f9 --- /dev/null +++ b/v1.43/03cmntr54.json @@ -0,0 +1,121 @@ +{ + "id": "https://ror.org/03cmntr54", + "name": "Instituto de Astrofísica de Canarias", + "email_address": null, + "ip_addresses": [], + "established": 1975, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 28.46824, + "lng": -16.25462, + "state": null, + "state_code": null, + "city": "Tenerife", + "geonames_city": { + "id": 2511174, + "city": "Tenerife", + "geonames_admin1": { + "name": "Canary Islands", + "id": 2593110, + "ascii_name": "Canary Islands", + "code": "ES.53" + }, + "geonames_admin2": { + "name": "Santa Cruz de Tenerife", + "id": 2511173, + "ascii_name": "Santa Cruz de Tenerife", + "code": "ES.53.TF" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.iac.es" + ], + "aliases": [], + "acronyms": [ + "IAC" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Institut Astrofísic de les Illes Canàries", + "iso639": "ca" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1767 6621" + ] + }, + "FundRef": { + "preferred": "501100022432", + "all": [ + "501100022432" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "317558" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1583495" + ] + }, + "GRID": { + "preferred": "grid.17423.33", + "all": "grid.17423.33" + } + } +} \ No newline at end of file diff --git a/v1.43/03cn98e27.json b/v1.43/03cn98e27.json new file mode 100644 index 000000000..adec74e90 --- /dev/null +++ b/v1.43/03cn98e27.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/03cn98e27", + "name": "J.M. Kaplan Fund", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "FURTHERMORE grants in publishing", + "type": "Child", + "id": "https://ror.org/04vzm8988" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.jmkfund.org/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 5906 4738" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100001200" + ] + }, + "GRID": { + "preferred": "grid.479950.6", + "all": "grid.479950.6" + } + } +} \ No newline at end of file diff --git a/v1.43/03csrq586.json b/v1.43/03csrq586.json new file mode 100644 index 000000000..50be7232c --- /dev/null +++ b/v1.43/03csrq586.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/03csrq586", + "name": "European Association of National Metrology Institutes", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "European Metrology Programme for Innovation and Research", + "type": "Child", + "id": "https://ror.org/042k5q325" + } + ], + "addresses": [ + { + "lat": 52.26594, + "lng": 10.52673, + "state": null, + "state_code": null, + "city": "Braunschweig", + "geonames_city": { + "id": 2945024, + "city": "Braunschweig", + "geonames_admin1": { + "name": "Lower Saxony", + "id": 2862926, + "ascii_name": "Lower Saxony", + "code": "DE.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.06.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.euramet.org/" + ], + "aliases": [ + "EUROMET" + ], + "acronyms": [ + "EURAMET" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/EURAMET", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 6432 5234" + ] + }, + "FundRef": { + "preferred": "100012329", + "all": [ + "100012329" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5324551" + ] + }, + "GRID": { + "preferred": "grid.484119.1", + "all": "grid.484119.1" + } + } +} \ No newline at end of file diff --git a/v1.43/03cve4549.json b/v1.43/03cve4549.json new file mode 100644 index 000000000..4854ac526 --- /dev/null +++ b/v1.43/03cve4549.json @@ -0,0 +1,199 @@ +{ + "id": "https://ror.org/03cve4549", + "name": "Tsinghua University", + "email_address": null, + "ip_addresses": [], + "established": 1911, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "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": "State Key Laboratory of Power System and Generation Equipment", + "type": "Child", + "id": "https://ror.org/043evzg22" + } + ], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "name": "Beijing", + "id": 2038349, + "ascii_name": "Beijing", + "code": "CN.22" + }, + "geonames_admin2": { + "name": "Beijing", + "id": 11876380, + "ascii_name": "Beijing", + "code": "CN.22.11876380" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "https://www.tsinghua.edu.cn" + ], + "aliases": [], + "acronyms": [ + "THU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Tsinghua_University", + "labels": [ + { + "label": "清华大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0662 3178" + ] + }, + "FundRef": { + "preferred": "501100004147", + "all": [ + "501100004147", + "501100004407", + "501100005150" + ] + }, + "OrgRef": { + "preferred": "72595", + "all": [ + "72595", + "869246" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q16955" + ] + }, + "GRID": { + "preferred": "grid.12527.33", + "all": "grid.12527.33" + } + } +} \ No newline at end of file diff --git a/v1.43/03czfpz43.json b/v1.43/03czfpz43.json new file mode 100644 index 000000000..4c9000404 --- /dev/null +++ b/v1.43/03czfpz43.json @@ -0,0 +1,182 @@ +{ + "id": "https://ror.org/03czfpz43", + "name": "Emory University", + "email_address": "", + "ip_addresses": [], + "established": 1836, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "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": "Emory National Primate Research Center", + "type": "Child", + "id": "https://ror.org/038kr2d80" + } + ], + "addresses": [ + { + "lat": 33.749, + "lng": -84.38798, + "state": null, + "state_code": null, + "city": "Atlanta", + "geonames_city": { + "id": 4180439, + "city": "Atlanta", + "geonames_admin1": { + "name": "Georgia", + "id": 4197000, + "ascii_name": "Georgia", + "code": "US.GA" + }, + "geonames_admin2": { + "name": "Fulton", + "id": 4196508, + "ascii_name": "Fulton", + "code": "US.GA.121" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.emory.edu/home/index.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Emory_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 1936 7398", + "all": [ + "0000 0001 0941 6502", + "0000 0004 1936 7398" + ] + }, + "FundRef": { + "preferred": "100006939", + "all": [ + "100006939", + "100007814", + "100007623", + "100010416", + "100008374", + "100007667", + "100006786", + "100006529", + "100006528", + "100005833", + "100013116" + ] + }, + "OrgRef": { + "preferred": "42730", + "all": [ + "42730", + "1391893", + "6568260" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q621043" + ] + }, + "GRID": { + "preferred": "grid.189967.8", + "all": "grid.189967.8" + } + } +} \ No newline at end of file diff --git a/v1.43/03dcvs546.json b/v1.43/03dcvs546.json new file mode 100644 index 000000000..3b0db012b --- /dev/null +++ b/v1.43/03dcvs546.json @@ -0,0 +1,89 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "ERNW" + ], + "links": [ + "https://www.ernw.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Engineering Research Network Wales", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.62079, + "lng": -3.94323, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Swansea", + "geonames_city": { + "id": 2636432, + "city": "Swansea", + "geonames_admin1": { + "name": "Wales", + "ascii_name": "Wales", + "id": 2634895, + "code": "GB.WLS" + }, + "geonames_admin2": { + "name": "City and County of Swansea", + "id": 3333248, + "ascii_name": "City and County of Swansea", + "code": "GB.WLS.Z1" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7765 6809", + "all": [ + "0000 0004 7765 6809" + ] + }, + "FundRef": { + "preferred": "100014590", + "all": [ + "100014590" + ] + } + }, + "established": 2017, + "relationships": [], + "email_address": null, + "id": "https://ror.org/03dcvs546", + "labels": [ + { + "label": "Rhwydwaith Ymchwil Peirianneg Cymru", + "iso639": "cy" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03eewzy02.json b/v1.43/03eewzy02.json new file mode 100644 index 000000000..e15b4c9fa --- /dev/null +++ b/v1.43/03eewzy02.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [ + "Cegid" + ], + "acronyms": [], + "links": [ + "https://www.cegid.com" + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "name": "Cegid (France)", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Cegid", + "addresses": [ + { + "lat": 45.74846, + "lng": 4.84671, + "state": null, + "state_code": null, + "country_geonames_id": 3017382, + "city": "Lyon", + "geonames_city": { + "id": 2996944, + "city": "Lyon", + "geonames_admin1": { + "name": "Auvergne-Rhône-Alpes", + "ascii_name": "Auvergne-Rhône-Alpes", + "id": 11071625, + "code": "FR.84" + }, + "geonames_admin2": { + "name": "Rhône", + "id": 2987410, + "ascii_name": "Rhône", + "code": "FR.84.69" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q1052684", + "all": [ + "Q1052684" + ] + } + }, + "established": 1983, + "relationships": [ + { + "label": "Meta4 (Spain)", + "type": "Predecessor", + "id": "https://ror.org/03kevw840" + } + ], + "email_address": null, + "id": "https://ror.org/03eewzy02", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03eh3y714.json b/v1.43/03eh3y714.json new file mode 100644 index 000000000..8b3d8364f --- /dev/null +++ b/v1.43/03eh3y714.json @@ -0,0 +1,126 @@ +{ + "id": "https://ror.org/03eh3y714", + "name": "Paul Scherrer Institute", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Board of the Swiss Federal Institutes of Technology", + "type": "Parent", + "id": "https://ror.org/01rvn4p91" + }, + { + "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": "LEAPS", + "type": "Related", + "id": "https://ror.org/04wcn4e27" + } + ], + "addresses": [ + { + "lat": 47.52682, + "lng": 8.21486, + "state": null, + "state_code": null, + "city": "Villigen", + "geonames_city": { + "id": 2658120, + "city": "Villigen", + "geonames_admin1": { + "name": "Aargau", + "id": 2661876, + "ascii_name": "Aargau", + "code": "CH.AG" + }, + "geonames_admin2": { + "name": "Bezirk Brugg", + "id": 6458826, + "ascii_name": "Bezirk Brugg", + "code": "CH.AG.1904" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "http://www.psi.ch/" + ], + "aliases": [], + "acronyms": [ + "PSI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Paul_Scherrer_Institute", + "labels": [ + { + "label": "Institut Paul Scherrer", + "iso639": "fr" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1090 7501" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004219" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "1053016" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q351857" + ] + }, + "GRID": { + "preferred": "grid.5991.4", + "all": "grid.5991.4" + } + } +} \ No newline at end of file diff --git a/v1.43/03f1agw55.json b/v1.43/03f1agw55.json new file mode 100644 index 000000000..701e9ef65 --- /dev/null +++ b/v1.43/03f1agw55.json @@ -0,0 +1,71 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "DPR" + ], + "links": [ + "https://dpr-barcelona.com" + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "name": "dpr-barcelona", + "wikipedia_url": null, + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "country_geonames_id": 2510769, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "ascii_name": "Catalonia", + "id": 3336901, + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": {}, + "established": 2007, + "relationships": [], + "email_address": null, + "id": "https://ror.org/03f1agw55", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03f6cng42.json b/v1.43/03f6cng42.json new file mode 100644 index 000000000..34f18e3ef --- /dev/null +++ b/v1.43/03f6cng42.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/03f6cng42", + "name": "Observatorio de Prospectiva Tecnológica Industrial", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.opti.org" + ], + "aliases": [], + "acronyms": [ + "OPTI" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Observatory for Prospective Technological Industry", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9850 0097" + ] + }, + "GRID": { + "preferred": "grid.434693.f", + "all": "grid.434693.f" + } + } +} \ No newline at end of file diff --git a/v1.43/03fdma228.json b/v1.43/03fdma228.json new file mode 100644 index 000000000..790432bd7 --- /dev/null +++ b/v1.43/03fdma228.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/03fdma228", + "name": "Fundación para las Relaciones Internacionales y el Diálogo Exterior", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://fride.org/" + ], + "aliases": [], + "acronyms": [ + "FRIDE" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/FRIDE", + "labels": [ + { + "label": "Foundation for International Relations and Foreign Dialogue", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8785 8261" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5871651" + ] + }, + "GRID": { + "preferred": "grid.434260.7", + "all": "grid.434260.7" + } + } +} \ No newline at end of file diff --git a/v1.43/03fpf5m04.json b/v1.43/03fpf5m04.json new file mode 100644 index 000000000..4ea937f1e --- /dev/null +++ b/v1.43/03fpf5m04.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/03fpf5m04", + "name": "Weston Area Health NHS Trust", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Healthcare" + ], + "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" + } + ], + "addresses": [ + { + "lat": 51.34603, + "lng": -2.97665, + "state": null, + "state_code": null, + "city": "Weston-super-Mare", + "geonames_city": { + "id": 2634308, + "city": "Weston-super-Mare", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "North Somerset", + "id": 3333177, + "ascii_name": "North Somerset", + "code": "GB.ENG.J4" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.waht.nhs.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0484 4171" + ] + }, + "GRID": { + "preferred": "grid.439741.c", + "all": "grid.439741.c" + } + } +} \ No newline at end of file diff --git a/v1.43/03fte3n86.json b/v1.43/03fte3n86.json new file mode 100644 index 000000000..6a3fce32f --- /dev/null +++ b/v1.43/03fte3n86.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/03fte3n86", + "name": "Laboratoire d'Écophysiologie Moléculaire des Plantes sous Stress Environnementaux", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www6.montpellier.inra.fr/lepse" + ], + "aliases": [], + "acronyms": [ + "LEPSE" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0445 8166" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q51782228" + ] + }, + "GRID": { + "preferred": "grid.503314.0", + "all": "grid.503314.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03g1q6c06.json b/v1.43/03g1q6c06.json new file mode 100644 index 000000000..4d282fba8 --- /dev/null +++ b/v1.43/03g1q6c06.json @@ -0,0 +1,118 @@ +{ + "id": "https://ror.org/03g1q6c06", + "name": "State University of New York at Geneseo", + "email_address": null, + "ip_addresses": [], + "established": 1871, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 42.7959, + "lng": -77.81695, + "state": null, + "state_code": null, + "city": "Geneseo", + "geonames_city": { + "id": 5118394, + "city": "Geneseo", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Livingston", + "id": 5124928, + "ascii_name": "Livingston", + "code": "US.NY.051" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.geneseo.edu/" + ], + "aliases": [ + "State University of New York-College at Geneseo", + "Wadsworth Normal and Training School", + "SUNY Geneseo" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Geneseo", + "labels": [ + { + "label": "Universidad Estatal de Nueva York en Geneseo", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0151 0940" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100008679" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "512335" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6149540" + ] + }, + "GRID": { + "preferred": "grid.264269.d", + "all": "grid.264269.d" + } + } +} \ No newline at end of file diff --git a/v1.43/03g5ew477.json b/v1.43/03g5ew477.json new file mode 100644 index 000000000..d98ae3e63 --- /dev/null +++ b/v1.43/03g5ew477.json @@ -0,0 +1,126 @@ +{ + "id": "https://ror.org/03g5ew477", + "name": "Institute of Photonic Sciences", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.icfo.eu" + ], + "aliases": [], + "acronyms": [ + "ICFO", + "ICFO-CERCA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ICFO_%E2%80%93_The_Institute_of_Photonic_Sciences", + "labels": [ + { + "label": "Instituto de Ciencias Fotónicas", + "iso639": "es" + }, + { + "label": "Institut de Ciències Fotòniques", + "iso639": "ca" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1757 1854" + ] + }, + "FundRef": { + "preferred": "100017170", + "all": [ + "100017170" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "47000156" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3775506" + ] + }, + "GRID": { + "preferred": "grid.5853.b", + "all": "grid.5853.b" + } + } +} \ No newline at end of file diff --git a/v1.43/03gbd4842.json b/v1.43/03gbd4842.json new file mode 100644 index 000000000..96e8fad1d --- /dev/null +++ b/v1.43/03gbd4842.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/03gbd4842", + "name": "Suffolk University Madrid", + "email_address": null, + "ip_addresses": [], + "established": 1906, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.suffolk.edu/madrid-campus" + ], + "aliases": [ + "Suffolk University Madrid Campus" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Suffolk_University", + "labels": [ + { + "label": "Universidad Suffolk Madrid", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "33050444" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q14715871" + ] + }, + "GRID": { + "preferred": "grid.449497.3", + "all": "grid.449497.3" + } + } +} \ No newline at end of file diff --git a/v1.43/03gd0dm95.json b/v1.43/03gd0dm95.json new file mode 100644 index 000000000..4ac94c8b3 --- /dev/null +++ b/v1.43/03gd0dm95.json @@ -0,0 +1,131 @@ +{ + "id": "https://ror.org/03gd0dm95", + "name": "Aga Khan University", + "email_address": null, + "ip_addresses": [], + "established": 1983, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Aga Khan Development Network", + "type": "Parent", + "id": "https://ror.org/028mpsh75" + }, + { + "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": "The Aga Khan University (International) in the United Kingdom", + "type": "Child", + "id": "https://ror.org/04m2z2476" + } + ], + "addresses": [ + { + "lat": 24.8608, + "lng": 67.0104, + "state": null, + "state_code": null, + "city": "Karachi", + "geonames_city": { + "id": 1174872, + "city": "Karachi", + "geonames_admin1": { + "name": "Sindh", + "id": 1164807, + "ascii_name": "Sindh", + "code": "PK.05" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1168579 + } + ], + "links": [ + "http://aku.edu/" + ], + "aliases": [], + "acronyms": [ + "AKU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Aga_Khan_University", + "labels": [ + { + "label": "آغا خان یونیورسٹی", + "iso639": "ur" + } + ], + "country": { + "country_name": "Pakistan", + "country_code": "PK" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0633 6224" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100007607" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2643686" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q4690953" + ] + }, + "GRID": { + "preferred": "grid.7147.5", + "all": "grid.7147.5" + } + } +} \ No newline at end of file diff --git a/v1.43/03gf4dx13.json b/v1.43/03gf4dx13.json new file mode 100644 index 000000000..c25492521 --- /dev/null +++ b/v1.43/03gf4dx13.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "DRACE GEOCISA S.A.", + "DRACE GEOCISA" + ], + "acronyms": [], + "links": [ + "https://www.drace.com" + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "name": "DRACE GEOCISA S.A. (Spain)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "country_geonames_id": 2510769, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "ascii_name": "Madrid", + "id": 3117732, + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": null, + "relationships": [ + { + "label": "Geocisa (Spain)", + "type": "Predecessor", + "id": "https://ror.org/0040z4m89" + } + ], + "email_address": null, + "id": "https://ror.org/03gf4dx13", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03gmkya61.json b/v1.43/03gmkya61.json new file mode 100644 index 000000000..6ea2daa90 --- /dev/null +++ b/v1.43/03gmkya61.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/03gmkya61", + "name": "SayFood - Food and Bioproduct Engineering", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.72692, + "lng": 2.28301, + "state": null, + "state_code": null, + "city": "Massy", + "geonames_city": { + "id": 2995206, + "city": "Massy", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www6.versailles-grignon.inrae.fr/umr-sayfood/UMR-SayFood" + ], + "aliases": [ + "SayFood", + "Paris-saclay food and bioproduct engineering research unit" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q109621296", + "all": [ + "Q109621296" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/03gna4510.json b/v1.43/03gna4510.json new file mode 100644 index 000000000..e2d0da925 --- /dev/null +++ b/v1.43/03gna4510.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/03gna4510", + "name": "NIHR Bristol Cardiovascular Biomedical Research Unit", + "email_address": null, + "ip_addresses": [], + "established": 2012, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 51.45523, + "lng": -2.59665, + "state": null, + "state_code": null, + "city": "Bristol", + "geonames_city": { + "id": 2654675, + "city": "Bristol", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bristol", + "id": 3333134, + "ascii_name": "Bristol", + "code": "GB.ENG.B7" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.ukcrcexpmed.org.uk/BristolCVBRU/Pages/FacilityWelcome.aspx" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "GRID": { + "preferred": "grid.454367.7", + "all": "grid.454367.7" + } + } +} \ No newline at end of file diff --git a/v1.43/03h4zjr91.json b/v1.43/03h4zjr91.json new file mode 100644 index 000000000..2f835dcf2 --- /dev/null +++ b/v1.43/03h4zjr91.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/03h4zjr91", + "name": "Carnegie Observatories", + "email_address": "", + "ip_addresses": [], + "established": 1904, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Carnegie Institution for Science", + "type": "Parent", + "id": "https://ror.org/04jr01610" + } + ], + "addresses": [ + { + "lat": 34.14778, + "lng": -118.14452, + "state": null, + "state_code": null, + "city": "Pasadena", + "geonames_city": { + "id": 5381396, + "city": "Pasadena", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Los Angeles", + "id": 5368381, + "ascii_name": "Los Angeles", + "code": "US.CA.037" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://obs.carnegiescience.edu/" + ], + "aliases": [ + "Carnegie Institution of Washington" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0373 5870", + "all": [ + "0000 0004 0373 5870" + ] + }, + "GRID": { + "preferred": "grid.432988.c", + "all": "grid.432988.c" + }, + "FundRef": { + "preferred": "100029528", + "all": [ + "100029528" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/03hc27x54.json b/v1.43/03hc27x54.json new file mode 100644 index 000000000..a4d94204d --- /dev/null +++ b/v1.43/03hc27x54.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "CNUDST" + ], + "links": [ + "https://www.cnudst.rnrt.tn" + ], + "country": { + "country_name": "Tunisia", + "country_code": "TN" + }, + "name": "University National Center of Scientific and Technical Documentation", + "wikipedia_url": null, + "addresses": [ + { + "lat": 34, + "lng": 9, + "state": null, + "state_code": null, + "country_geonames_id": 2464461, + "city": "Tunisia", + "geonames_city": { + "id": 2464461, + "city": "Tunisia", + "geonames_admin1": { + "name": null, + "ascii_name": null, + "id": null, + "code": "TN.00" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": {}, + "established": 1978, + "relationships": [ + { + "label": "Ministry of Higher Education and Scientific Research", + "type": "Parent", + "id": "https://ror.org/05v1m8q81" + } + ], + "email_address": null, + "id": "https://ror.org/03hc27x54", + "labels": [ + { + "label": "Centre National Universitaire de Documentation Scientifique et Technique", + "iso639": "fr" + }, + { + "label": "المركز الوطني الجامعي للتوثيق العلمي والتقني", + "iso639": "ar" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03hecy592.json b/v1.43/03hecy592.json new file mode 100644 index 000000000..4edd55672 --- /dev/null +++ b/v1.43/03hecy592.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [ + "State Library of Oldenburg" + ], + "acronyms": [ + "LBO" + ], + "links": [ + "https://www.lb-oldenburg.de" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "Landesbibliothek Oldenburg", + "wikipedia_url": "https://de.wikipedia.org/wiki/Landesbibliothek_Oldenburg", + "addresses": [ + { + "lat": 53.14118, + "lng": 8.21467, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Oldenburg", + "geonames_city": { + "id": 2857458, + "city": "Oldenburg", + "geonames_admin1": { + "name": "Lower Saxony", + "ascii_name": "Lower Saxony", + "id": 2862926, + "code": "DE.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.06.00" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Archive" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2331 9127", + "all": [ + "0000 0001 2331 9127" + ] + }, + "Wikidata": { + "preferred": "Q1802139", + "all": [ + "Q1802139" + ] + } + }, + "established": 1792, + "relationships": [], + "email_address": null, + "id": "https://ror.org/03hecy592", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03hpdk269.json b/v1.43/03hpdk269.json new file mode 100644 index 000000000..da032cc1e --- /dev/null +++ b/v1.43/03hpdk269.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03hpdk269", + "name": "Catalonian Research and Innovation Centre", + "email_address": null, + "ip_addresses": [], + "established": 1997, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Ateknea Solutions (Spain)", + "type": "Successor", + "id": "https://ror.org/01m260238" + } + ], + "addresses": [ + { + "lat": 41.35, + "lng": 2.08333, + "state": null, + "state_code": null, + "city": "Cornellà de Llobregat", + "geonames_city": { + "id": 3124569, + "city": "Cornellà de Llobregat", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.cric.cat/" + ], + "aliases": [], + "acronyms": [ + "CRIC" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.8563.8", + "all": "grid.8563.8" + } + } +} \ No newline at end of file diff --git a/v1.43/03hv28176.json b/v1.43/03hv28176.json new file mode 100644 index 000000000..463e37ed0 --- /dev/null +++ b/v1.43/03hv28176.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03hv28176", + "name": "Leibniz-Institut für Wissensmedien", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Leibniz Association", + "type": "Parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "addresses": [ + { + "lat": 48.52266, + "lng": 9.05222, + "state": null, + "state_code": null, + "city": "Tübingen", + "geonames_city": { + "id": 2820860, + "city": "Tübingen", + "geonames_admin1": { + "name": "Baden-Wurttemberg", + "id": 2953481, + "ascii_name": "Baden-Wurttemberg", + "code": "DE.01" + }, + "geonames_admin2": { + "name": "Tübingen Region", + "id": 3214106, + "ascii_name": "Tübingen Region", + "code": "DE.01.084" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.iwm-tuebingen.de" + ], + "aliases": [], + "acronyms": [ + "IWM" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Stiftung „Medien in der Bildung“", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0493 3318" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1813768" + ] + }, + "GRID": { + "preferred": "grid.418956.7", + "all": "grid.418956.7" + } + } +} \ No newline at end of file diff --git a/v1.43/03hvdbf98.json b/v1.43/03hvdbf98.json new file mode 100644 index 000000000..5a9ee3e45 --- /dev/null +++ b/v1.43/03hvdbf98.json @@ -0,0 +1,92 @@ +{ + "ip_addresses": [], + "aliases": [ + "BMA Foundation", + "British Medical Association Foundation for Medical Research", + "British Medical Association Foundation" + ], + "acronyms": [], + "links": [ + "https://www.bmafoundationmr.org.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "BMA Foundation for Medical Research", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7239 8126", + "all": [ + "0000 0004 7239 8126" + ] + }, + "FundRef": { + "preferred": "501100011950", + "all": [ + "501100011950" + ] + } + }, + "established": 1839, + "relationships": [ + { + "label": "British Medical Association", + "type": "Parent", + "id": "https://ror.org/02caz1f24" + } + ], + "email_address": null, + "id": "https://ror.org/03hvdbf98", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03jdj4y14.json b/v1.43/03jdj4y14.json new file mode 100644 index 000000000..8b795643d --- /dev/null +++ b/v1.43/03jdj4y14.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/03jdj4y14", + "name": "Nvidia (United States)", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Nvidia (United Kingdom)", + "type": "Child", + "id": "https://ror.org/02kr42612" + }, + { + "label": "NVIDIA (Italy)", + "type": "Child", + "id": "https://ror.org/04z2hsy54" + } + ], + "addresses": [ + { + "lat": 37.35411, + "lng": -121.95524, + "state": null, + "state_code": null, + "city": "Santa Clara", + "geonames_city": { + "id": 5393015, + "city": "Santa Clara", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Santa Clara", + "id": 5393021, + "ascii_name": "Santa Clara", + "code": "US.CA.085" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.nvidia.com/page/home.html" + ], + "aliases": [ + "NVIDIA Corporation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Nvidia", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0458 4453" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100007065" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q182477" + ] + }, + "GRID": { + "preferred": "grid.451133.1", + "all": "grid.451133.1" + } + } +} \ No newline at end of file diff --git a/v1.43/03jn2p430.json b/v1.43/03jn2p430.json new file mode 100644 index 000000000..58bd93c4e --- /dev/null +++ b/v1.43/03jn2p430.json @@ -0,0 +1,105 @@ +{ + "ip_addresses": [], + "aliases": [ + "Ministry of Science and Technology, Government of Pakistan", + "Ministry of Science and Technology of Pakistan", + "Pakistan Ministry of Science and Technology" + ], + "acronyms": [ + "MoST" + ], + "links": [ + "https://most.gov.pk" + ], + "country": { + "country_name": "Pakistan", + "country_code": "PK" + }, + "name": "Ministry of Science and Technology", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Science_and_Technology_%28Pakistan%29", + "addresses": [ + { + "lat": 33.72148, + "lng": 73.04329, + "state": null, + "state_code": null, + "country_geonames_id": 1168579, + "city": "Islamabad", + "geonames_city": { + "id": 1176615, + "city": "Islamabad", + "geonames_admin1": { + "name": "Islamabad", + "ascii_name": "Islamabad", + "id": 1162015, + "code": "PK.08" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2230 840X", + "all": [ + "0000 0001 2230 840X" + ] + }, + "Wikidata": { + "preferred": "Q4294470", + "all": [ + "Q4294470" + ] + }, + "FundRef": { + "preferred": "100019473", + "all": [ + "100019473" + ] + } + }, + "established": 1964, + "relationships": [ + { + "label": "Government of Pakistan", + "type": "Parent", + "id": "https://ror.org/00pnp4y96" + } + ], + "email_address": null, + "id": "https://ror.org/03jn2p430", + "labels": [ + { + "label": "وزارت سائنس و ٹیکنالوجی", + "iso639": "ar" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03jsyxh43.json b/v1.43/03jsyxh43.json new file mode 100644 index 000000000..1654a6a58 --- /dev/null +++ b/v1.43/03jsyxh43.json @@ -0,0 +1,77 @@ +{ + "ip_addresses": [], + "aliases": [ + "Shenyang Sinochem Agrochemicals R&D Co., Ltd.", + "Shenyang Sinochem Agrochemicals R&D Co." + ], + "acronyms": [], + "links": [ + "http://www.sysard.com" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "Shenyang Sinochem Agrochemicals R&D Co., Ltd. (China)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 41.79222, + "lng": 123.43278, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Shenyang", + "geonames_city": { + "id": 2034937, + "city": "Shenyang", + "geonames_admin1": { + "name": "Liaoning", + "ascii_name": "Liaoning", + "id": 2036115, + "code": "CN.19" + }, + "geonames_admin2": { + "name": "Shenyang Shi", + "id": 2034935, + "ascii_name": "Shenyang Shi", + "code": "CN.19.2101" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/03jsyxh43", + "labels": [ + { + "label": "沈阳中化农药化工研发有限公司", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03jzzxg14.json b/v1.43/03jzzxg14.json new file mode 100644 index 000000000..a1410421a --- /dev/null +++ b/v1.43/03jzzxg14.json @@ -0,0 +1,105 @@ +{ + "ip_addresses": [], + "aliases": [ + "Bristol and Weston Foundation Trust", + "Bristol and Weston NHS Trust", + "University Hospitals Bristol and Weston Trust", + "UHBW NHS Foundation Trust" + ], + "acronyms": [ + "UHBW" + ], + "links": [ + "https://www.uhbw.nhs.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "University Hospitals Bristol and Weston NHS Foundation Trust", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_Hospitals_Bristol_and_Weston_NHS_Foundation_Trust", + "addresses": [ + { + "lat": 51.45523, + "lng": -2.59665, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Bristol", + "geonames_city": { + "id": 2654675, + "city": "Bristol", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bristol", + "id": 3333134, + "ascii_name": "Bristol", + "code": "GB.ENG.B7" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q17028004", + "all": [ + "Q17028004" + ] + }, + "FundRef": { + "preferred": "100012141", + "all": [ + "100012141" + ] + } + }, + "established": 2020, + "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" + } + ], + "email_address": null, + "id": "https://ror.org/03jzzxg14", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03k4wdb90.json b/v1.43/03k4wdb90.json new file mode 100644 index 000000000..da4680138 --- /dev/null +++ b/v1.43/03k4wdb90.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/03k4wdb90", + "name": "Barcelonaβeta Brain Research Center", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Pompeu Fabra University", + "type": "Parent", + "id": "https://ror.org/04n0g0b29" + }, + { + "label": "Pasqual Maragall Foundation", + "type": "Parent", + "id": "https://ror.org/01nry9c15" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.barcelonabeta.org" + ], + "aliases": [ + "Barcelonabeta Brain Research Center" + ], + "acronyms": [ + "BBRC" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.476174.7", + "all": "grid.476174.7" + }, + "ISNI": { + "preferred": "0000 0004 7677 6809", + "all": [ + "0000 0004 7677 6809" + ] + }, + "Wikidata": { + "preferred": "Q117405723", + "all": [ + "Q117405723" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/03k8zj440.json b/v1.43/03k8zj440.json new file mode 100644 index 000000000..171f534bc --- /dev/null +++ b/v1.43/03k8zj440.json @@ -0,0 +1,133 @@ +{ + "id": "https://ror.org/03k8zj440", + "name": "Servicio de Salud de Castilla La Mancha", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "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" + } + ], + "addresses": [ + { + "lat": 39.8581, + "lng": -4.02263, + "state": null, + "state_code": null, + "city": "Toledo", + "geonames_city": { + "id": 2510409, + "city": "Toledo", + "geonames_admin1": { + "name": "Castille-La Mancha", + "id": 2593111, + "ascii_name": "Castille-La Mancha", + "code": "ES.54" + }, + "geonames_admin2": { + "name": "Toledo", + "id": 2510407, + "ascii_name": "Toledo", + "code": "ES.54.TO" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://sescam.castillalamancha.es/" + ], + "aliases": [], + "acronyms": [ + "SESCAM" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1530 8903" + ] + }, + "GRID": { + "preferred": "grid.426047.3", + "all": "grid.426047.3" + } + } +} \ No newline at end of file diff --git a/v1.43/03k9z2963.json b/v1.43/03k9z2963.json new file mode 100644 index 000000000..f69127ec5 --- /dev/null +++ b/v1.43/03k9z2963.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/03k9z2963", + "name": "Département de mathématiques et applications", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.math.ens.psl.eu" + ], + "aliases": [], + "acronyms": [ + "DMA" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Department of Mathematics and their Applications", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0624 4946" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR8553" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q51784704" + ] + }, + "GRID": { + "preferred": "grid.503142.1", + "all": "grid.503142.1" + } + } +} \ No newline at end of file diff --git a/v1.43/03kbarg82.json b/v1.43/03kbarg82.json new file mode 100644 index 000000000..f29b3501f --- /dev/null +++ b/v1.43/03kbarg82.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/03kbarg82", + "name": "Laboratoire interdisciplinaire de recherche en didactique, éducation et formation", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://lirdef.edu.umontpellier.fr" + ], + "aliases": [], + "acronyms": [ + "LIRDEF" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2191 6219", + "all": [ + "0000 0001 2191 6219" + ] + }, + "Wikidata": { + "preferred": "Q51780451", + "all": [ + "Q51780451" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/03kevw840.json b/v1.43/03kevw840.json new file mode 100644 index 000000000..d769c15aa --- /dev/null +++ b/v1.43/03kevw840.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/03kevw840", + "name": "Meta4 (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.meta4.es/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30290690" + ] + }, + "GRID": { + "preferred": "grid.436359.e", + "all": "grid.436359.e" + } + } +} \ No newline at end of file diff --git a/v1.43/03kk7td41.json b/v1.43/03kk7td41.json new file mode 100644 index 000000000..5acb6a391 --- /dev/null +++ b/v1.43/03kk7td41.json @@ -0,0 +1,158 @@ +{ + "id": "https://ror.org/03kk7td41", + "name": "Cardiff University", + "email_address": "", + "ip_addresses": [], + "established": 1883, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 51.48, + "lng": -3.18, + "state": null, + "state_code": null, + "city": "Cardiff", + "geonames_city": { + "id": 2653822, + "city": "Cardiff", + "geonames_admin1": { + "name": "Wales", + "id": 2634895, + "ascii_name": "Wales", + "code": "GB.WLS" + }, + "geonames_admin2": { + "name": "Cardiff", + "id": 3333241, + "ascii_name": "Cardiff", + "code": "GB.WLS.X5" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.cardiff.ac.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Cardiff_University", + "labels": [ + { + "label": "Prifysgol Caerdydd", + "iso639": "cy" + } + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0807 5670" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100008533", + "501100000866" + ] + }, + "HESA": { + "preferred": null, + "all": [ + "0179" + ] + }, + "UCAS": { + "preferred": null, + "all": [ + "C15" + ] + }, + "UKPRN": { + "preferred": null, + "all": [ + "10007814" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "338169" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1035745" + ] + }, + "GRID": { + "preferred": "grid.5600.3", + "all": "grid.5600.3" + } + } +} \ No newline at end of file diff --git a/v1.43/03mc19e15.json b/v1.43/03mc19e15.json new file mode 100644 index 000000000..edb9f12e6 --- /dev/null +++ b/v1.43/03mc19e15.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/03mc19e15", + "name": "Weston General Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "University Hospitals Bristol and Weston NHS Foundation Trust", + "type": "Parent", + "id": "https://ror.org/03jzzxg14" + } + ], + "addresses": [ + { + "lat": 51.34603, + "lng": -2.97665, + "state": null, + "state_code": null, + "city": "Weston-super-Mare", + "geonames_city": { + "id": 2634308, + "city": "Weston-super-Mare", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "North Somerset", + "id": 3333177, + "ascii_name": "North Somerset", + "code": "GB.ENG.J4" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.waht.nhs.uk/Childrens-Services/Childrens-Services1/Seashore-Centre-at-Weston-General-Hospital/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Weston_General_Hospital", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0417 1843" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "4569149" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7989433" + ] + }, + "GRID": { + "preferred": "grid.417077.2", + "all": "grid.417077.2" + } + } +} \ No newline at end of file diff --git a/v1.43/03mkjjy25.json b/v1.43/03mkjjy25.json new file mode 100644 index 000000000..9950d18c2 --- /dev/null +++ b/v1.43/03mkjjy25.json @@ -0,0 +1,296 @@ +{ + "id": "https://ror.org/03mkjjy25", + "name": "Université de Versailles Saint-Quentin-en-Yvelines", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.80359, + "lng": 2.13424, + "state": null, + "state_code": null, + "city": "Versailles", + "geonames_city": { + "id": 2969679, + "city": "Versailles", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Yvelines", + "id": 2967196, + "ascii_name": "Yvelines", + "code": "FR.11.78" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.uvsq.fr" + ], + "aliases": [], + "acronyms": [ + "UVSQ" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Versailles_Saint-Quentin-en-Yvelines_University", + "labels": [ + { + "label": "Versailles Saint-Quentin-en-Yvelines University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2323 0229" + ] + }, + "FundRef": { + "preferred": "501100020875", + "all": [ + "501100020875" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "13889493" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q186638" + ] + }, + "GRID": { + "preferred": "grid.12832.3a", + "all": "grid.12832.3a" + } + } +} \ No newline at end of file diff --git a/v1.43/03n15ch10.json b/v1.43/03n15ch10.json new file mode 100644 index 000000000..5896a1f40 --- /dev/null +++ b/v1.43/03n15ch10.json @@ -0,0 +1,95 @@ +{ + "id": "https://ror.org/03n15ch10", + "name": "CEA Saclay", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www-centre-saclay.cea.fr/fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "preferred": "grid.457334.2", + "all": "grid.457334.2" + } + } +} \ No newline at end of file diff --git a/v1.43/03n8fv677.json b/v1.43/03n8fv677.json new file mode 100644 index 000000000..5206fdaa4 --- /dev/null +++ b/v1.43/03n8fv677.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/03n8fv677", + "name": "Fundación Pronokal", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.pronokal.com" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.491054.d", + "all": "grid.491054.d" + } + } +} \ No newline at end of file diff --git a/v1.43/03n9ja422.json b/v1.43/03n9ja422.json new file mode 100644 index 000000000..be4d6c392 --- /dev/null +++ b/v1.43/03n9ja422.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [ + "Ruhrlandmuseum" + ], + "acronyms": [], + "links": [ + "https://www.ruhrmuseum.de" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "Ruhr Museum", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ruhr_Museum", + "addresses": [ + { + "lat": 51.45657, + "lng": 7.01228, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Essen", + "geonames_city": { + "id": 2928810, + "city": "Essen", + "geonames_admin1": { + "name": "North Rhine-Westphalia", + "ascii_name": "North Rhine-Westphalia", + "id": 2861876, + "code": "DE.07" + }, + "geonames_admin2": { + "name": "Düsseldorf District", + "id": 2934245, + "ascii_name": "Düsseldorf District", + "code": "DE.07.051" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Archive" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1956 7507", + "all": [ + "0000 0001 1956 7507" + ] + }, + "Wikidata": { + "preferred": "Q2175050", + "all": [ + "Q2175050" + ] + } + }, + "established": 2008, + "relationships": [], + "email_address": null, + "id": "https://ror.org/03n9ja422", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03n9mt987.json b/v1.43/03n9mt987.json new file mode 100644 index 000000000..9f7885d58 --- /dev/null +++ b/v1.43/03n9mt987.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "CIUSSS du Nord-de-l'Île-de-Montréal" + ], + "acronyms": [], + "links": [ + "https://www.ciusssnordmtl.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Centre intégré universitaire de santé et de services sociaux du Nord-de-l’Île-de-Montréal", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux", + "addresses": [ + { + "lat": 45.50884, + "lng": -73.58781, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Montreal", + "geonames_city": { + "id": 6077243, + "city": "Montreal", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Montréal", + "id": 6077246, + "ascii_name": "Montréal", + "code": "CA.10.06" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 4910 4644", + "all": [ + "0000 0004 4910 4644" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/03n9mt987", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03nr10290.json b/v1.43/03nr10290.json new file mode 100644 index 000000000..519029678 --- /dev/null +++ b/v1.43/03nr10290.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03nr10290", + "name": "Corewell Health Children's", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "Parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "addresses": [ + { + "lat": 42.48948, + "lng": -83.14465, + "state": null, + "state_code": null, + "city": "Royal Oak", + "geonames_city": { + "id": 5007804, + "city": "Royal Oak", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Oakland", + "id": 5004223, + "ascii_name": "Oakland", + "code": "US.MI.125" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.beaumont.org/services/childrens" + ], + "aliases": [ + "Beaumont Children's" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "preferred": "grid.459348.7", + "all": "grid.459348.7" + } + } +} \ No newline at end of file diff --git a/v1.43/03p40sz62.json b/v1.43/03p40sz62.json new file mode 100644 index 000000000..eb481ddb0 --- /dev/null +++ b/v1.43/03p40sz62.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03p40sz62", + "name": "Fundación Eugenio Rodríguez Pascual", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.fundacioneugeniorodriguezpascual.es" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 5901 7165" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100008055" + ] + }, + "GRID": { + "preferred": "grid.483886.9", + "all": "grid.483886.9" + } + } +} \ No newline at end of file diff --git a/v1.43/03p81rq42.json b/v1.43/03p81rq42.json new file mode 100644 index 000000000..ff61bbc4f --- /dev/null +++ b/v1.43/03p81rq42.json @@ -0,0 +1,74 @@ +{ + "ip_addresses": [], + "aliases": [ + "Filipino Nurses Association in the Nordic Region", + "Pohjoismainen Filippiiniläishoitajien Yhdistys Ry" + ], + "acronyms": [ + "FINAN" + ], + "links": [ + "https://www.filnan.com" + ], + "country": { + "country_name": "Finland", + "country_code": "FI" + }, + "name": "The Filipino Nurses Association in the Nordic Region", + "wikipedia_url": null, + "addresses": [ + { + "lat": 65.01236, + "lng": 25.46816, + "state": null, + "state_code": null, + "country_geonames_id": 660013, + "city": "Oulu", + "geonames_city": { + "id": 643492, + "city": "Oulu", + "geonames_admin1": { + "name": "North Ostrobothnia", + "ascii_name": "North Ostrobothnia", + "id": 830667, + "code": "FI.17" + }, + "geonames_admin2": { + "name": "Oulu", + "id": 9610672, + "ascii_name": "Oulu", + "code": "FI.17.171" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": {}, + "established": 2018, + "relationships": [], + "email_address": null, + "id": "https://ror.org/03p81rq42", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03pbpa834.json b/v1.43/03pbpa834.json new file mode 100644 index 000000000..ccfd422ba --- /dev/null +++ b/v1.43/03pbpa834.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03pbpa834", + "name": "ERN GENTURIS", + "email_address": null, + "ip_addresses": [], + "established": 2017, + "types": [ + "Healthcare" + ], + "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" + } + ], + "addresses": [ + { + "lat": 51.8425, + "lng": 5.85278, + "state": null, + "state_code": null, + "city": "Nijmegen", + "geonames_city": { + "id": 2750053, + "city": "Nijmegen", + "geonames_admin1": { + "name": "Gelderland", + "id": 2755634, + "ascii_name": "Gelderland", + "code": "NL.03" + }, + "geonames_admin2": { + "name": "Nijmegen Municipality", + "id": 2750052, + "ascii_name": "Nijmegen Municipality", + "code": "NL.03.0268" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2750405 + } + ], + "links": [ + "https://www.genturis.eu" + ], + "aliases": [ + "European Reference Network on rare genetic tumour risk syndromes" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.43/03pdbtd82.json b/v1.43/03pdbtd82.json new file mode 100644 index 000000000..e5dde9848 --- /dev/null +++ b/v1.43/03pdbtd82.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [ + "Virgo Consortium" + ], + "acronyms": [], + "links": [ + "https://virgo.dur.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "The Virgo Consortium", + "wikipedia_url": "https://en.wikipedia.org/wiki/Virgo_Consortium", + "addresses": [ + { + "lat": 54.77676, + "lng": -1.57566, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Durham", + "geonames_city": { + "id": 2650628, + "city": "Durham", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Durham", + "id": 2650629, + "ascii_name": "Durham", + "code": "GB.ENG.D8" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q4231269", + "all": [ + "Q4231269" + ] + }, + "FundRef": { + "preferred": "501100015066", + "all": [ + "501100015066" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/03pdbtd82", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03prydq77.json b/v1.43/03prydq77.json new file mode 100644 index 000000000..b6785f9b8 --- /dev/null +++ b/v1.43/03prydq77.json @@ -0,0 +1,138 @@ +{ + "id": "https://ror.org/03prydq77", + "name": "University of Vienna", + "email_address": "", + "ip_addresses": [], + "established": 1365, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "name": "Vienna", + "id": 2761367, + "ascii_name": "Vienna", + "code": "AT.09" + }, + "geonames_admin2": { + "name": "Vienna", + "id": 2761333, + "ascii_name": "Vienna", + "code": "AT.09.900" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2782113 + } + ], + "links": [ + "https://www.univie.ac.at/en/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Vienna", + "labels": [ + { + "label": "Universität Wien", + "iso639": "de" + }, + { + "label": "Sveučilište u Beču", + "iso639": "hr" + }, + { + "label": "Bécsi Egyetem", + "iso639": "hu" + }, + { + "label": "Univerza na Dunaju", + "iso639": "sl" + } + ], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2286 1424" + ] + }, + "FundRef": { + "preferred": "501100003065", + "all": [ + "501100003065", + "501100003066" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "53049" + ] + }, + "Wikidata": { + "preferred": "Q165980", + "all": [ + "Q165980", + "Q1362780" + ] + }, + "GRID": { + "preferred": "grid.10420.37", + "all": "grid.10420.37" + } + } +} \ No newline at end of file diff --git a/v1.43/03pvr2g57.json b/v1.43/03pvr2g57.json new file mode 100644 index 000000000..fbde09b65 --- /dev/null +++ b/v1.43/03pvr2g57.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/03pvr2g57", + "name": "Universitätsklinikum Würzburg", + "email_address": "", + "ip_addresses": [], + "established": 1402, + "types": [ + "Healthcare" + ], + "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" + } + ], + "addresses": [ + { + "lat": 49.79391, + "lng": 9.95121, + "state": null, + "state_code": null, + "city": "Würzburg", + "geonames_city": { + "id": 2805615, + "city": "Würzburg", + "geonames_admin1": { + "name": "Bavaria", + "id": 2951839, + "ascii_name": "Bavaria", + "code": "DE.02" + }, + "geonames_admin2": { + "name": "Lower Franconia", + "id": 2819564, + "ascii_name": "Lower Franconia", + "code": "DE.02.096" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.ukw.de" + ], + "aliases": [ + "University Hospital Würzburg", + "University Hospital of Wuerzburg", + "Universitaetsklinikum Wuerzburg - Klinikum Der Bayerischen Julius-Maximilians-Universitat" + ], + "acronyms": [ + "UKW" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1378 7891" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1784848" + ] + }, + "GRID": { + "preferred": "grid.411760.5", + "all": "grid.411760.5" + } + } +} \ No newline at end of file diff --git a/v1.43/03pzxq793.json b/v1.43/03pzxq793.json new file mode 100644 index 000000000..70e583102 --- /dev/null +++ b/v1.43/03pzxq793.json @@ -0,0 +1,91 @@ +{ + "ip_addresses": [], + "aliases": [ + "National Institute for Health Research Applied Research Collaboration West", + "NIHR ARC West" + ], + "acronyms": [], + "links": [ + "https://arc-w.nihr.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "NIHR Applied Research Collaboration West", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.45523, + "lng": -2.59665, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Bristol", + "geonames_city": { + "id": 2654675, + "city": "Bristol", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bristol", + "id": 3333134, + "ascii_name": "Bristol", + "code": "GB.ENG.B7" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9128 4888", + "all": [ + "0000 0004 9128 4888" + ] + }, + "FundRef": { + "preferred": "501100022244", + "all": [ + "501100022244" + ] + } + }, + "established": 2014, + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "Parent", + "id": "https://ror.org/0187kwz08" + } + ], + "email_address": null, + "id": "https://ror.org/03pzxq793", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03q1qx424.json b/v1.43/03q1qx424.json new file mode 100644 index 000000000..ff4d4277e --- /dev/null +++ b/v1.43/03q1qx424.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/03q1qx424", + "name": "Diversity, Genomes and Insects-Microorganisms Interactions", + "email_address": null, + "ip_addresses": [], + "established": 2011, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Institut Agro Montpellier", + "type": "Parent", + "id": "https://ror.org/03rnk6m14" + }, + { + "label": "University of Montpellier", + "type": "Parent", + "id": "https://ror.org/051escj72" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www6.montpellier.inra.fr/dgimi_eng/" + ], + "aliases": [], + "acronyms": [ + "DGIMI" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Diversité, génomes et interactions micro-organismes-insectes", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "CNRS": { + "preferred": null, + "all": [ + "UMR1333" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q61933021" + ] + }, + "GRID": { + "preferred": "grid.503158.a", + "all": "grid.503158.a" + } + } +} \ No newline at end of file diff --git a/v1.43/03q28x580.json b/v1.43/03q28x580.json new file mode 100644 index 000000000..9db6f1eb9 --- /dev/null +++ b/v1.43/03q28x580.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03q28x580", + "name": "MAX IV Laboratory", + "email_address": null, + "ip_addresses": [], + "established": 1944, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "LEAPS", + "type": "Related", + "id": "https://ror.org/04wcn4e27" + } + ], + "addresses": [ + { + "lat": 55.70584, + "lng": 13.19321, + "state": null, + "state_code": null, + "city": "Lund", + "geonames_city": { + "id": 2693678, + "city": "Lund", + "geonames_admin1": { + "name": "Skåne", + "id": 3337385, + "ascii_name": "Skåne", + "code": "SE.27" + }, + "geonames_admin2": { + "name": "Lund Municipality", + "id": 2693555, + "ascii_name": "Lund Municipality", + "code": "SE.27.1281" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2661886 + } + ], + "links": [ + "https://www.maxiv.lu.se/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/MAX_IV_Laboratory", + "labels": [], + "country": { + "country_name": "Sweden", + "country_code": "SE" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q15243261" + ] + }, + "GRID": { + "preferred": "grid.503035.0", + "all": "grid.503035.0" + } + } +} \ No newline at end of file diff --git a/v1.43/03q5e6q66.json b/v1.43/03q5e6q66.json new file mode 100644 index 000000000..af732ef57 --- /dev/null +++ b/v1.43/03q5e6q66.json @@ -0,0 +1,77 @@ +{ + "ip_addresses": [], + "aliases": [ + "Fondazione Ricerca Biomedica Avanzata Onlus" + ], + "acronyms": [], + "links": [ + "https://www.fondbiomed.it" + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "name": "Fondazione Ricerca Biomedica Avanzata Onlus - VIMM", + "wikipedia_url": null, + "addresses": [ + { + "lat": 45.40797, + "lng": 11.88586, + "state": null, + "state_code": null, + "country_geonames_id": 3175395, + "city": "Padua", + "geonames_city": { + "id": 3171728, + "city": "Padua", + "geonames_admin1": { + "name": "Veneto", + "ascii_name": "Veneto", + "id": 3164604, + "code": "IT.20" + }, + "geonames_admin2": { + "name": "Padua", + "id": 3171727, + "ascii_name": "Padua", + "code": "IT.20.PD" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": {}, + "established": null, + "relationships": [ + { + "label": "Veneto Institute of Molecular Medicine Home", + "type": "Related", + "id": "https://ror.org/0048jxt15" + } + ], + "email_address": null, + "id": "https://ror.org/03q5e6q66", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03qk53891.json b/v1.43/03qk53891.json new file mode 100644 index 000000000..77013c7fb --- /dev/null +++ b/v1.43/03qk53891.json @@ -0,0 +1,94 @@ +{ + "ip_addresses": [], + "aliases": [ + "Yankuang Energy Group Company Limited", + "Yankuang Energy Group Company", + "Yankuang Energy Group Company, Ltd.", + "Yankuang Energy Group", + "Yankuang Group", + "兗礦集團有限公司" + ], + "acronyms": [], + "links": [ + "http://www.yanzhoucoal.com.cn" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "Yankuang Energy Group Company Limited (China)", + "wikipedia_url": "https://en.wikipedia.org/wiki/Yankuang_Group", + "addresses": [ + { + "lat": 35.405, + "lng": 116.58139, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Jining", + "geonames_city": { + "id": 1805518, + "city": "Jining", + "geonames_admin1": { + "name": "Shandong", + "ascii_name": "Shandong", + "id": 1796328, + "code": "CN.25" + }, + "geonames_admin2": { + "name": "Jining Shi", + "id": 1805517, + "ascii_name": "Jining Shi", + "code": "CN.25.3708" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7245 6824", + "all": [ + "0000 0004 7245 6824" + ] + }, + "Wikidata": { + "preferred": "Q884019", + "all": [ + "Q884019" + ] + } + }, + "established": 1976, + "relationships": [], + "email_address": null, + "id": "https://ror.org/03qk53891", + "labels": [ + { + "label": "兖矿能源集团股份有限公司", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03rd4h240.json b/v1.43/03rd4h240.json new file mode 100644 index 000000000..77f845ae1 --- /dev/null +++ b/v1.43/03rd4h240.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/03rd4h240", + "name": "Office of Electricity Delivery and Energy Reliability", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "name": "Washington, D.C.", + "id": 4138106, + "ascii_name": "Washington, D.C.", + "code": "US.DC" + }, + "geonames_admin2": { + "name": "Washington", + "id": 4140987, + "ascii_name": "Washington", + "code": "US.DC.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://energy.gov/oe/office-electricity-delivery-and-energy-reliability" + ], + "aliases": [], + "acronyms": [ + "OE" + ], + "status": "withdrawn", + "wikipedia_url": "https://en.wikipedia.org/wiki/Office_of_Electricity_Delivery_and_Energy_Reliability", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "preferred": "100006130", + "all": [ + "100006130", + "100006172", + "100006149" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q12064662" + ] + }, + "GRID": { + "preferred": "grid.453355.1", + "all": "grid.453355.1" + } + } +} \ No newline at end of file diff --git a/v1.43/03rnk6m14.json b/v1.43/03rnk6m14.json new file mode 100644 index 000000000..b6d504ce3 --- /dev/null +++ b/v1.43/03rnk6m14.json @@ -0,0 +1,186 @@ +{ + "id": "https://ror.org/03rnk6m14", + "name": "Institut Agro Montpellier", + "email_address": null, + "ip_addresses": [], + "established": 1842, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.institut-agro-montpellier.fr" + ], + "aliases": [ + "Montpellier SupAgro", + "SupAgro" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Centre international d'études supérieures en sciences agronomiques", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2172 5332" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "19435596" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2945808" + ] + }, + "GRID": { + "preferred": "grid.434209.8", + "all": "grid.434209.8" + } + } +} \ No newline at end of file diff --git a/v1.43/03rtqzj55.json b/v1.43/03rtqzj55.json new file mode 100644 index 000000000..4202b5a7c --- /dev/null +++ b/v1.43/03rtqzj55.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/03rtqzj55", + "name": "Inabensa (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 1994, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.38283, + "lng": -5.97317, + "state": null, + "state_code": null, + "city": "Seville", + "geonames_city": { + "id": 2510911, + "city": "Seville", + "geonames_admin1": { + "name": "Andalusia", + "id": 2593109, + "ascii_name": "Andalusia", + "code": "ES.51" + }, + "geonames_admin2": { + "name": "Seville", + "id": 2510910, + "ascii_name": "Seville", + "code": "ES.51.SE" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.inabensa.com/web/en/index.html" + ], + "aliases": [ + "Instalaciones Inabensa, S.A." + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.425160.4", + "all": "grid.425160.4" + } + } +} \ No newline at end of file diff --git a/v1.43/03rwgpn18.json b/v1.43/03rwgpn18.json new file mode 100644 index 000000000..36fce8bc8 --- /dev/null +++ b/v1.43/03rwgpn18.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/03rwgpn18", + "name": "Clarkson University", + "email_address": null, + "ip_addresses": [], + "established": 1896, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Union Graduate College", + "type": "Child", + "id": "https://ror.org/05p9w4h97" + }, + { + "label": "Great Lakes Research Consortium", + "type": "Related", + "id": "https://ror.org/05cshtm26" + } + ], + "addresses": [ + { + "lat": 44.66978, + "lng": -74.98131, + "state": null, + "state_code": null, + "city": "Potsdam", + "geonames_city": { + "id": 5132103, + "city": "Potsdam", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "St. Lawrence", + "id": 5135484, + "ascii_name": "St. Lawrence", + "code": "US.NY.089" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.clarkson.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Clarkson_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0741 9486" + ] + }, + "FundRef": { + "preferred": "100009217", + "all": [ + "100009217", + "100006465", + "100009218" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "523139" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q931865" + ] + }, + "GRID": { + "preferred": "grid.254280.9", + "all": "grid.254280.9" + } + } +} \ No newline at end of file diff --git a/v1.43/03s4khd80.json b/v1.43/03s4khd80.json new file mode 100644 index 000000000..1f2aba056 --- /dev/null +++ b/v1.43/03s4khd80.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/03s4khd80", + "name": "Cliniques Universitaires Saint-Luc", + "email_address": "", + "ip_addresses": [], + "established": 1976, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "UCLouvain", + "type": "Related", + "id": "https://ror.org/02495e989" + }, + { + "label": "Fondation Saint-Luc", + "type": "Child", + "id": "https://ror.org/021354321" + } + ], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "name": "Brussels Capital", + "id": 2800867, + "ascii_name": "Brussels Capital", + "code": "BE.BRU" + }, + "geonames_admin2": { + "name": "Bruxelles-Capitale", + "id": 6693370, + "ascii_name": "Bruxelles-Capitale", + "code": "BE.BRU.BRU" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2802361 + } + ], + "links": [ + "http://www.saintluc.be/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Cliniques_Universitaires_Saint-Luc", + "labels": [ + { + "label": "Universitair ziekenhuis Sint-Lambrechts-Woluwe", + "iso639": "nl" + } + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0461 6320" + ] + }, + "FundRef": { + "preferred": "501100005042", + "all": [ + "501100005042", + "501100006587" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "11377768" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2979314" + ] + }, + "GRID": { + "preferred": "grid.48769.34", + "all": "grid.48769.34" + } + } +} \ No newline at end of file diff --git a/v1.43/03s92mv58.json b/v1.43/03s92mv58.json new file mode 100644 index 000000000..c9107545a --- /dev/null +++ b/v1.43/03s92mv58.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/03s92mv58", + "name": "Geosciences Paris Sud", + "email_address": null, + "ip_addresses": [], + "established": 2004, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://geops.geol.u-psud.fr/" + ], + "aliases": [], + "acronyms": [ + "GEOPS" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "CNRS": { + "preferred": null, + "all": [ + "UMR8148" + ] + }, + "GRID": { + "preferred": "grid.464121.4", + "all": "grid.464121.4" + } + } +} \ No newline at end of file diff --git a/v1.43/03sdv7269.json b/v1.43/03sdv7269.json new file mode 100644 index 000000000..e79c1f70b --- /dev/null +++ b/v1.43/03sdv7269.json @@ -0,0 +1,73 @@ +{ + "ip_addresses": [], + "aliases": [ + "PQShield", + "PQShield, SAS", + "PQShield, Inc." + ], + "acronyms": [], + "links": [ + "https://pqshield.com" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "PQShield (United Kingdom)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.75222, + "lng": -1.25596, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Oxford", + "geonames_city": { + "id": 2640729, + "city": "Oxford", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Oxfordshire", + "id": 2640726, + "ascii_name": "Oxfordshire", + "code": "GB.ENG.K2" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": 2018, + "relationships": [], + "email_address": null, + "id": "https://ror.org/03sdv7269", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03sv46s19.json b/v1.43/03sv46s19.json new file mode 100644 index 000000000..c8b16209f --- /dev/null +++ b/v1.43/03sv46s19.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/03sv46s19", + "name": "Ministerio de Asuntos Económicos y Transformación Digital", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://portal.mineco.gob.es" + ], + "aliases": [], + "acronyms": [ + "MINECO" + ], + "status": "inactive", + "wikipedia_url": "https://es.wikipedia.org/wiki/Ministerio_de_Asuntos_Econ%C3%B3micos_y_Transformaci%C3%B3n_Digital", + "labels": [ + { + "label": "Ministry of Economic Affairs and Digital Transformation", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "FundRef": { + "preferred": "501100010198", + "all": [ + "501100010198" + ] + }, + "Wikidata": { + "preferred": "Q81886673", + "all": [ + "Q81886673" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/03sypqe31.json b/v1.43/03sypqe31.json new file mode 100644 index 000000000..646dbb8e9 --- /dev/null +++ b/v1.43/03sypqe31.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/03sypqe31", + "name": "Systèmes Membranaires, Photobiologie, Stress et Détoxication", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [], + "aliases": [], + "acronyms": [ + "SMPSD" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0369 495X" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR8221" + ] + }, + "GRID": { + "preferred": "grid.464173.3", + "all": "grid.464173.3" + } + } +} \ No newline at end of file diff --git a/v1.43/03tdnf746.json b/v1.43/03tdnf746.json new file mode 100644 index 000000000..391e16c67 --- /dev/null +++ b/v1.43/03tdnf746.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/03tdnf746", + "name": "CETEMMSA Technological Centre (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.54211, + "lng": 2.4445, + "state": null, + "state_code": null, + "city": "Mataró", + "geonames_city": { + "id": 3117164, + "city": "Mataró", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.cetemmsa.com/" + ], + "aliases": [ + "Fundación Privada CETEMMSA" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cetemmsa", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q5065642" + ] + }, + "GRID": { + "preferred": "grid.424852.d", + "all": "grid.424852.d" + } + } +} \ No newline at end of file diff --git a/v1.43/03thdsj80.json b/v1.43/03thdsj80.json new file mode 100644 index 000000000..1e3c8843a --- /dev/null +++ b/v1.43/03thdsj80.json @@ -0,0 +1,88 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://www.vodafone.com/vodafone-foundation" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Vodafone Foundation", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.40148, + "lng": -1.32471, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Newbury", + "geonames_city": { + "id": 2641689, + "city": "Newbury", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "West Berkshire", + "id": 3333217, + "ascii_name": "West Berkshire", + "code": "GB.ENG.P4" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q99440281", + "all": [ + "Q99440281" + ] + }, + "FundRef": { + "preferred": "100008058", + "all": [ + "100008058" + ] + } + }, + "established": 1991, + "relationships": [ + { + "label": "Vodafone (United Kingdom)", + "type": "Parent", + "id": "https://ror.org/01v7jrq42" + } + ], + "email_address": null, + "id": "https://ror.org/03thdsj80", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03tj80n37.json b/v1.43/03tj80n37.json new file mode 100644 index 000000000..3aa18a696 --- /dev/null +++ b/v1.43/03tj80n37.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/03tj80n37", + "name": "Goshen College", + "email_address": null, + "ip_addresses": [], + "established": 1894, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 41.58227, + "lng": -85.83444, + "state": null, + "state_code": null, + "city": "Goshen", + "geonames_city": { + "id": 4920808, + "city": "Goshen", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Elkhart", + "id": 4919988, + "ascii_name": "Elkhart", + "code": "US.IN.039" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.goshen.edu/" + ], + "aliases": [ + "Elkhart Institute of Science, Industry and the Arts" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Goshen_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2108 2015" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "743375" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1538540" + ] + }, + "GRID": { + "preferred": "grid.420452.5", + "all": "grid.420452.5" + } + } +} \ No newline at end of file diff --git a/v1.43/03tkwyq76.json b/v1.43/03tkwyq76.json new file mode 100644 index 000000000..6463c0177 --- /dev/null +++ b/v1.43/03tkwyq76.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/03tkwyq76", + "name": "FELIX Laboratory", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 51.8425, + "lng": 5.85278, + "state": null, + "state_code": null, + "city": "Nijmegen", + "geonames_city": { + "id": 2750053, + "city": "Nijmegen", + "geonames_admin1": { + "name": "Gelderland", + "id": 2755634, + "ascii_name": "Gelderland", + "code": "NL.03" + }, + "geonames_admin2": { + "name": "Nijmegen Municipality", + "id": 2750052, + "ascii_name": "Nijmegen Municipality", + "code": "NL.03.0268" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2750405 + } + ], + "links": [ + "https://www.ru.nl/felix/" + ], + "aliases": [ + "Free Electron Lasers for Infrared eXperiments" + ], + "acronyms": [ + "FELIX" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": {} +} \ No newline at end of file diff --git a/v1.43/03tmzq288.json b/v1.43/03tmzq288.json new file mode 100644 index 000000000..d14f55395 --- /dev/null +++ b/v1.43/03tmzq288.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [ + "National Institute for Health Research Collaboration for Leadership in Applied Health Research and Care North West Coast" + ], + "acronyms": [ + "NIHR CLAHRC NWC" + ], + "links": [ + "https://arc-nwc.nihr.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "NIHR Collaboration for Leadership in Applied Health Research and Care North West Coast", + "wikipedia_url": null, + "addresses": [ + { + "lat": 53.41058, + "lng": -2.97794, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Liverpool", + "geonames_city": { + "id": 2644210, + "city": "Liverpool", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Liverpool", + "id": 3333167, + "ascii_name": "Liverpool", + "code": "GB.ENG.H8" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "501100015509", + "all": [ + "501100015509" + ] + } + }, + "established": 2014, + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "Parent", + "id": "https://ror.org/0187kwz08" + } + ], + "email_address": null, + "id": "https://ror.org/03tmzq288", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03tscbz39.json b/v1.43/03tscbz39.json new file mode 100644 index 000000000..9ded0d808 --- /dev/null +++ b/v1.43/03tscbz39.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/03tscbz39", + "name": "Fondation Jean-Marie Lehn", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://fondation-lehn.fr" + ], + "aliases": [ + "International Center for Frontier Research in Chemistry", + "Jean-Marie Lehn Foundation", + "Centre international de recherche aux frontières de la chimie", + "Strasbourg Center for Frontier Research in Chemistry" + ], + "acronyms": [ + "ICRFC" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Le Centre International de Recherche aux Frontières de la Chimie", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "preferred": null, + "all": [ + "100009120" + ] + }, + "GRID": { + "preferred": "grid.423766.2", + "all": "grid.423766.2" + }, + "Wikidata": { + "preferred": "Q30284524", + "all": [ + "Q30284524" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/03tsg3y65.json b/v1.43/03tsg3y65.json new file mode 100644 index 000000000..f80192c3c --- /dev/null +++ b/v1.43/03tsg3y65.json @@ -0,0 +1,104 @@ +{ + "ip_addresses": [], + "aliases": [ + "ESRC Centre for Climate Change Economics and Policy", + "Economic and Social Research Council Centre for Climate Change Economics and Policy" + ], + "acronyms": [ + "CCCEP" + ], + "links": [ + "https://www.cccep.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Centre for Climate Change Economics and Policy", + "wikipedia_url": "https://en.wikipedia.org/wiki/Centre_for_Climate_Change_Economics_and_Policy", + "addresses": [ + { + "lat": 53.79648, + "lng": -1.54785, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Leeds", + "geonames_city": { + "id": 2644688, + "city": "Leeds", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Leeds", + "id": 3333164, + "ascii_name": "Leeds", + "code": "GB.ENG.H3" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9439 5292", + "all": [ + "0000 0004 9439 5292" + ] + }, + "Wikidata": { + "preferred": "Q5062378", + "all": [ + "Q5062378" + ] + }, + "FundRef": { + "preferred": "100012730", + "all": [ + "100012730" + ] + } + }, + "established": 2008, + "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" + } + ], + "email_address": null, + "id": "https://ror.org/03tsg3y65", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03v2nbx43.json b/v1.43/03v2nbx43.json new file mode 100644 index 000000000..3c72f928f --- /dev/null +++ b/v1.43/03v2nbx43.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/03v2nbx43", + "name": "Bank of Italy", + "email_address": null, + "ip_addresses": [], + "established": 1893, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Einaudi Institute for Economics and Finance", + "type": "Related", + "id": "https://ror.org/04e874t64" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "name": "Lazio", + "id": 3174976, + "ascii_name": "Lazio", + "code": "IT.07" + }, + "geonames_admin2": { + "name": "Rome", + "id": 3169069, + "ascii_name": "Rome", + "code": "IT.07.RM" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "http://www.bancaditalia.it/" + ], + "aliases": [ + "Bankitalia" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Banca_d%27Italia", + "labels": [ + { + "label": "Banca d'Italia", + "iso639": "it" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2296 4343" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100003770" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q806176" + ] + }, + "GRID": { + "preferred": "grid.466503.2", + "all": "grid.466503.2" + } + } +} \ No newline at end of file diff --git a/v1.43/03v9efr22.json b/v1.43/03v9efr22.json new file mode 100644 index 000000000..e19ce916a --- /dev/null +++ b/v1.43/03v9efr22.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/03v9efr22", + "name": "The Christie NHS Foundation Trust", + "email_address": null, + "ip_addresses": [], + "established": 2007, + "types": [ + "Healthcare" + ], + "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" + } + ], + "addresses": [ + { + "lat": 53.48095, + "lng": -2.23743, + "state": null, + "state_code": null, + "city": "Manchester", + "geonames_city": { + "id": 2643123, + "city": "Manchester", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Manchester", + "id": 3333169, + "ascii_name": "Manchester", + "code": "GB.ENG.I2" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.christie.nhs.uk/" + ], + "aliases": [ + "Christie Hospital NHS Foundation Trust" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Christie_NHS_Foundation_Trust", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0430 9259" + ] + }, + "FundRef": { + "preferred": "501100015686", + "all": [ + "501100015686" + ] + }, + "GRID": { + "preferred": "grid.412917.8", + "all": "grid.412917.8" + } + } +} \ No newline at end of file diff --git a/v1.43/03vam5b06.json b/v1.43/03vam5b06.json new file mode 100644 index 000000000..d641bf947 --- /dev/null +++ b/v1.43/03vam5b06.json @@ -0,0 +1,130 @@ +{ + "id": "https://ror.org/03vam5b06", + "name": "Laboratoire des systèmes et applications des technologies de l'information et de l'énergie", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.79632, + "lng": 2.33661, + "state": null, + "state_code": null, + "city": "Cachan", + "geonames_city": { + "id": 3029276, + "city": "Cachan", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Val-de-Marne", + "id": 2971090, + "ascii_name": "Val-de-Marne", + "code": "FR.11.94" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://satie.ens-paris-saclay.fr" + ], + "aliases": [], + "acronyms": [ + "SATIE" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Laboratory of Systems and Applications of Information and Energy Technologies", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0370 4273" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR8029" + ] + }, + "Wikidata": { + "preferred": "Q30262402", + "all": [ + "Q30262402" + ] + }, + "GRID": { + "preferred": "grid.464043.1", + "all": "grid.464043.1" + } + } +} \ No newline at end of file diff --git a/v1.43/03vek6s52.json b/v1.43/03vek6s52.json new file mode 100644 index 000000000..7a7a78b63 --- /dev/null +++ b/v1.43/03vek6s52.json @@ -0,0 +1,349 @@ +{ + "id": "https://ror.org/03vek6s52", + "name": "Harvard University", + "email_address": "", + "ip_addresses": [], + "established": 1636, + "types": [ + "Education" + ], + "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": "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": "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": "Real Colegio Complutense", + "type": "Child", + "id": "https://ror.org/05b0g2v72" + } + ], + "addresses": [ + { + "lat": 42.3751, + "lng": -71.10561, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 4931972, + "city": "Cambridge", + "geonames_admin1": { + "name": "Massachusetts", + "id": 6254926, + "ascii_name": "Massachusetts", + "code": "US.MA" + }, + "geonames_admin2": { + "name": "Middlesex", + "id": 4943909, + "ascii_name": "Middlesex", + "code": "US.MA.017" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.harvard.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Harvard_University", + "labels": [ + { + "label": "Universidad de Harvard", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1936 754X" + ] + }, + "FundRef": { + "preferred": "100007229", + "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" + ] + }, + "OrgRef": { + "preferred": "18426501", + "all": [ + "18426501", + "1074613", + "1562949", + "18998741", + "260879", + "158984", + "329529" + ] + }, + "Wikidata": { + "preferred": "Q13371", + "all": [ + "Q13371", + "Q5676556" + ] + }, + "GRID": { + "preferred": "grid.38142.3c", + "all": "grid.38142.3c" + } + } +} \ No newline at end of file diff --git a/v1.43/03vgcjv39.json b/v1.43/03vgcjv39.json new file mode 100644 index 000000000..5021854ad --- /dev/null +++ b/v1.43/03vgcjv39.json @@ -0,0 +1,71 @@ +{ + "ip_addresses": [], + "aliases": [ + "Iscte Conhecimento E Inovacao - Centro De Valorizacao E Transferencia De Tecnologias" + ], + "acronyms": [], + "links": [ + "https://conhecimentoinovacao.iscte-iul.pt" + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "name": "Iscte-Conhecimento e Inovação é um Centro de Valorização e Transferência de Tecnologias", + "wikipedia_url": null, + "addresses": [ + { + "lat": 38.71667, + "lng": -9.13333, + "state": null, + "state_code": null, + "country_geonames_id": 2264397, + "city": "Lisbon", + "geonames_city": { + "id": 2267057, + "city": "Lisbon", + "geonames_admin1": { + "name": "Lisbon", + "ascii_name": "Lisbon", + "id": 2267056, + "code": "PT.14" + }, + "geonames_admin2": { + "name": "Lisbon", + "id": 6458923, + "ascii_name": "Lisbon", + "code": "PT.14.1106" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/03vgcjv39", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03x3g5467.json b/v1.43/03x3g5467.json new file mode 100644 index 000000000..af743db18 --- /dev/null +++ b/v1.43/03x3g5467.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [ + "Taylor Family Institute for Innovative Psychiatric Research at Washington University School of Medicine in St. Louis" + ], + "acronyms": [], + "links": [ + "https://taylorfamilyinstitute.wustl.edu" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Taylor Family Institute for Innovative Psychiatric Research", + "wikipedia_url": null, + "addresses": [ + { + "lat": 38.62727, + "lng": -90.19789, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "St Louis", + "geonames_city": { + "id": 4407066, + "city": "St Louis", + "geonames_admin1": { + "name": "Missouri", + "ascii_name": "Missouri", + "id": 4398678, + "code": "US.MO" + }, + "geonames_admin2": { + "name": "St. Louis", + "id": 4407084, + "ascii_name": "St. Louis", + "code": "US.MO.510" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "100013395", + "all": [ + "100013395" + ] + } + }, + "established": 2012, + "relationships": [ + { + "label": "Washington University in St. Louis", + "type": "Parent", + "id": "https://ror.org/01yc7t268" + } + ], + "email_address": null, + "id": "https://ror.org/03x3g5467", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03x42jk29.json b/v1.43/03x42jk29.json new file mode 100644 index 000000000..fca33cf9c --- /dev/null +++ b/v1.43/03x42jk29.json @@ -0,0 +1,232 @@ +{ + "id": "https://ror.org/03x42jk29", + "name": "Université Gustave Eiffel", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85, + "lng": 2.6, + "state": null, + "state_code": null, + "city": "Champs-sur-Marne", + "geonames_city": { + "id": 3027014, + "city": "Champs-sur-Marne", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Seine-et-Marne", + "id": 2975249, + "ascii_name": "Seine-et-Marne", + "code": "FR.11.77" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.univ-gustave-eiffel.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Gustave_Eiffel_University", + "labels": [ + { + "label": "Gustave Eiffel University", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "FundRef": { + "preferred": "501100023359", + "all": [ + "501100023359" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q65153823" + ] + }, + "GRID": { + "preferred": "grid.509737.f", + "all": "grid.509737.f" + } + } +} \ No newline at end of file diff --git a/v1.43/03x4pp342.json b/v1.43/03x4pp342.json new file mode 100644 index 000000000..20049598a --- /dev/null +++ b/v1.43/03x4pp342.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/03x4pp342", + "name": "Beaumont Hospital, Dearborn", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "Parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "addresses": [ + { + "lat": 42.32226, + "lng": -83.17631, + "state": null, + "state_code": null, + "city": "Dearborn", + "geonames_city": { + "id": 4990510, + "city": "Dearborn", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Wayne", + "id": 5014227, + "ascii_name": "Wayne", + "code": "US.MI.163" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.beaumont.org/locations/beaumont-hospital-dearborn" + ], + "aliases": [ + "Beaumont Hospital", + "Oakwood Hospital - Dearborn" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0394 7232" + ] + }, + "GRID": { + "preferred": "grid.416675.7", + "all": "grid.416675.7" + } + } +} \ No newline at end of file diff --git a/v1.43/03x94j517.json b/v1.43/03x94j517.json new file mode 100644 index 000000000..abc380c80 --- /dev/null +++ b/v1.43/03x94j517.json @@ -0,0 +1,301 @@ +{ + "id": "https://ror.org/03x94j517", + "name": "Medical Research Council", + "email_address": "", + "ip_addresses": [], + "established": 1913, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "UK Research and Innovation", + "type": "Parent", + "id": "https://ror.org/001aqnf71" + }, + { + "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": "MRC Centre for Environment and Health", + "type": "Child", + "id": "https://ror.org/01vw4c203" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.ukri.org/councils/mrc/" + ], + "aliases": [], + "acronyms": [ + "MRC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Medical_Research_Council_%28United_Kingdom%29", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2247 8951" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100000265" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "636280" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q746879" + ] + }, + "GRID": { + "preferred": "grid.14105.31", + "all": "grid.14105.31" + } + } +} \ No newline at end of file diff --git a/v1.43/03xjwb503.json b/v1.43/03xjwb503.json new file mode 100644 index 000000000..a89a44ee5 --- /dev/null +++ b/v1.43/03xjwb503.json @@ -0,0 +1,577 @@ +{ + "id": "https://ror.org/03xjwb503", + "name": "University of Paris-Saclay", + "email_address": null, + "ip_addresses": [], + "established": 2015, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.68333, + "lng": 2.13333, + "state": null, + "state_code": null, + "city": "Gif-sur-Yvette", + "geonames_city": { + "id": 3016078, + "city": "Gif-sur-Yvette", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.universite-paris-saclay.fr/fr" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Paris-Saclay", + "labels": [ + { + "label": "Université Paris-Saclay", + "iso639": "fr" + }, + { + "label": "Universitat París-Saclay", + "iso639": "ca" + }, + { + "label": "Paris-Saclayko Unibertsitatea", + "iso639": "eu" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 4910 6535" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100007241" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "47001019" + ] + }, + "Wikidata": { + "preferred": "Q109409389", + "all": [ + "Q109409389" + ] + }, + "GRID": { + "preferred": "grid.460789.4", + "all": "grid.460789.4" + } + } +} \ No newline at end of file diff --git a/v1.43/03y0ymy78.json b/v1.43/03y0ymy78.json new file mode 100644 index 000000000..1a04e0a2f --- /dev/null +++ b/v1.43/03y0ymy78.json @@ -0,0 +1,100 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "WCPP" + ], + "links": [ + "http://www.wcpp.org.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Wales Centre for Public Policy", + "wikipedia_url": "https://en.wikipedia.org/wiki/Wales_Centre_for_Public_Policy", + "addresses": [ + { + "lat": 51.48, + "lng": -3.18, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Cardiff", + "geonames_city": { + "id": 2653822, + "city": "Cardiff", + "geonames_admin1": { + "name": "Wales", + "ascii_name": "Wales", + "id": 2634895, + "code": "GB.WLS" + }, + "geonames_admin2": { + "name": "Cardiff", + "id": 3333241, + "ascii_name": "Cardiff", + "code": "GB.WLS.X5" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9503 2776", + "all": [ + "0000 0004 9503 2776" + ] + }, + "Wikidata": { + "preferred": "Q65060598", + "all": [ + "Q65060598" + ] + } + }, + "established": 2017, + "relationships": [ + { + "label": "Public Policy Institute for Wales", + "type": "Predecessor", + "id": "https://ror.org/05j5g1b69" + }, + { + "label": "Cardiff University", + "type": "Related", + "id": "https://ror.org/03kk7td41" + } + ], + "email_address": null, + "id": "https://ror.org/03y0ymy78", + "labels": [ + { + "label": "Canolfan Polisi Cyhoeddus Cymru", + "iso639": "cy" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03y3e3s17.json b/v1.43/03y3e3s17.json new file mode 100644 index 000000000..c9aaba370 --- /dev/null +++ b/v1.43/03y3e3s17.json @@ -0,0 +1,113 @@ +{ + "id": "https://ror.org/03y3e3s17", + "name": "Shanxi University", + "email_address": null, + "ip_addresses": [], + "established": 1902, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "State Key Laboratory of Quantum Optics and Quantum Optics Devices", + "type": "Child", + "id": "https://ror.org/035z18f46" + } + ], + "addresses": [ + { + "lat": 37.86944, + "lng": 112.56028, + "state": null, + "state_code": null, + "city": "Taiyuan", + "geonames_city": { + "id": 1793511, + "city": "Taiyuan", + "geonames_admin1": { + "name": "Shanxi", + "id": 1795912, + "ascii_name": "Shanxi", + "code": "CN.24" + }, + "geonames_admin2": { + "name": "Taiyuan Shi", + "id": 1793510, + "ascii_name": "Taiyuan Shi", + "code": "CN.24.1401" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "http://english.sxu.edu.cn/" + ], + "aliases": [ + "Shānxī Dàxué" + ], + "acronyms": [ + "SXU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Shanxi_University", + "labels": [ + { + "label": "山西大学", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1760 2008" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004311" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "919242" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7489128" + ] + }, + "GRID": { + "preferred": "grid.163032.5", + "all": "grid.163032.5" + } + } +} \ No newline at end of file diff --git a/v1.43/03y8jvk69.json b/v1.43/03y8jvk69.json new file mode 100644 index 000000000..8f4a0d8ce --- /dev/null +++ b/v1.43/03y8jvk69.json @@ -0,0 +1,99 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://www.nestlehealthscience.com" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Nestlé Health Science (United States)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 40.60079, + "lng": -74.64815, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Bridgewater", + "geonames_city": { + "id": 8299576, + "city": "Bridgewater", + "geonames_admin1": { + "name": "New Jersey", + "ascii_name": "New Jersey", + "id": 5101760, + "code": "US.NJ" + }, + "geonames_admin2": { + "name": "Somerset", + "id": 5104759, + "ascii_name": "Somerset", + "code": "US.NJ.035" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6430 7044", + "all": [ + "0000 0004 6430 7044" + ] + }, + "Wikidata": { + "preferred": "Q45132270", + "all": [ + "Q45132270" + ] + }, + "FundRef": { + "preferred": "100010886", + "all": [ + "100010886" + ] + } + }, + "established": 2011, + "relationships": [ + { + "label": "Nestlé (Switzerland)", + "type": "Parent", + "id": "https://ror.org/01v5xwf23" + } + ], + "email_address": null, + "id": "https://ror.org/03y8jvk69", + "labels": [ + { + "label": "Nestlé Health Science", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/03yk4dt83.json b/v1.43/03yk4dt83.json new file mode 100644 index 000000000..d76154153 --- /dev/null +++ b/v1.43/03yk4dt83.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/03yk4dt83", + "name": "Hospital Lluis Alcanyis", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.99042, + "lng": -0.51852, + "state": null, + "state_code": null, + "city": "Xàtiva", + "geonames_city": { + "id": 2516345, + "city": "Xàtiva", + "geonames_admin1": { + "name": "Valencia", + "id": 2593113, + "ascii_name": "Valencia", + "code": "ES.60" + }, + "geonames_admin2": { + "name": "Valencia", + "id": 2509951, + "ascii_name": "Valencia", + "code": "ES.60.V" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://xativaontinyent.san.gva.es" + ], + "aliases": [ + "Hospital Lluís Alcanyís", + "Hospital General d'Ontinyent", + "Hospital General de Ontinyent", + "Departament de Salut Xàtiva Ontinyent", + "Departamento de Salud Xàtiva Ontinyent" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1768 2773" + ] + }, + "GRID": { + "preferred": "grid.414979.6", + "all": "grid.414979.6" + } + } +} \ No newline at end of file diff --git a/v1.43/03yycdv57.json b/v1.43/03yycdv57.json new file mode 100644 index 000000000..6ba3f63d6 --- /dev/null +++ b/v1.43/03yycdv57.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/03yycdv57", + "name": "Instituto Geográfico Nacional", + "email_address": null, + "ip_addresses": [], + "established": 1870, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.ign.es" + ], + "aliases": [], + "acronyms": [ + "IGN" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Instituto_Geogr%C3%A1fico_Nacional_(Spain)", + "labels": [ + { + "label": "National Geographic Institute", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0639 2930" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3137513" + ] + }, + "GRID": { + "preferred": "grid.425204.5", + "all": "grid.425204.5" + } + } +} \ No newline at end of file diff --git a/v1.43/03zyxxj44.json b/v1.43/03zyxxj44.json new file mode 100644 index 000000000..a0e827cc0 --- /dev/null +++ b/v1.43/03zyxxj44.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [ + "CIUSSS de l'Est-de-l'Île-de-Montréal" + ], + "acronyms": [], + "links": [ + "https://ciusss-estmtl.gouv.qc.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Centre intégré universitaire de santé et de services sociaux de l'Est-de-l'Île-de-Montréal", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux", + "addresses": [ + { + "lat": 45.50884, + "lng": -73.58781, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Montreal", + "geonames_city": { + "id": 6077243, + "city": "Montreal", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Montréal", + "id": 6077246, + "ascii_name": "Montréal", + "code": "CA.10.06" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 5938 4379", + "all": [ + "0000 0004 5938 4379" + ] + }, + "Wikidata": { + "preferred": "Q30260211", + "all": [ + "Q30260211" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/03zyxxj44", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/041kmwe10.json b/v1.43/041kmwe10.json new file mode 100644 index 000000000..caa18d3a4 --- /dev/null +++ b/v1.43/041kmwe10.json @@ -0,0 +1,212 @@ +{ + "id": "https://ror.org/041kmwe10", + "name": "Imperial College London", + "email_address": "", + "ip_addresses": [], + "established": 1907, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "MRC London Institute of Medical Sciences", + "type": "Child", + "id": "https://ror.org/05p1n6x86" + }, + { + "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" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.imperial.ac.uk" + ], + "aliases": [ + "Imperial College of Science, Technology and Medicine" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Imperial_College_London", + "labels": [ + { + "label": "Coleg Imperial Llundain", + "iso639": "cy" + } + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2113 8111" + ] + }, + "FundRef": { + "preferred": "501100000761", + "all": [ + "501100000761", + "501100000850" + ] + }, + "HESA": { + "preferred": null, + "all": [ + "0132" + ] + }, + "UCAS": { + "preferred": null, + "all": [ + "I50" + ] + }, + "UKPRN": { + "preferred": null, + "all": [ + "10003270" + ] + }, + "OrgRef": { + "preferred": "61116", + "all": [ + "61116", + "2244827", + "2244729" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q189022" + ] + }, + "GRID": { + "preferred": "grid.7445.2", + "all": "grid.7445.2" + } + } +} \ No newline at end of file diff --git a/v1.43/041kymq04.json b/v1.43/041kymq04.json new file mode 100644 index 000000000..01a7c5751 --- /dev/null +++ b/v1.43/041kymq04.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [ + "Gujarat Council of Science and Technology" + ], + "acronyms": [ + "GCST" + ], + "links": [ + "https://dst.gujarat.gov.in/gcst.htm" + ], + "country": { + "country_name": "India", + "country_code": "IN" + }, + "name": "Gujarat Council on Science and Technology", + "wikipedia_url": null, + "addresses": [ + { + "lat": 23.21667, + "lng": 72.68333, + "state": null, + "state_code": null, + "country_geonames_id": 1269750, + "city": "Gandhinagar", + "geonames_city": { + "id": 1271715, + "city": "Gandhinagar", + "geonames_admin1": { + "name": "Gujarat", + "ascii_name": "Gujarat", + "id": 1270770, + "code": "IN.09" + }, + "geonames_admin2": { + "name": "Gāndhīnagar District", + "id": 1271716, + "ascii_name": "Gāndhīnagar District", + "code": "IN.09.473" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0726 9739", + "all": [ + "0000 0005 0726 9739" + ] + }, + "FundRef": { + "preferred": "100019126", + "all": [ + "100019126" + ] + } + }, + "established": 1986, + "relationships": [], + "email_address": null, + "id": "https://ror.org/041kymq04", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/041m9xr71.json b/v1.43/041m9xr71.json new file mode 100644 index 000000000..a888f4f21 --- /dev/null +++ b/v1.43/041m9xr71.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/041m9xr71", + "name": "Ames National Laboratory", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Iowa State University", + "type": "Parent", + "id": "https://ror.org/04rswrd78" + }, + { + "label": "Office of Science", + "type": "Parent", + "id": "https://ror.org/00mmn6b08" + } + ], + "addresses": [ + { + "lat": 42.03471, + "lng": -93.61994, + "state": null, + "state_code": null, + "city": "Ames", + "geonames_city": { + "id": 4846834, + "city": "Ames", + "geonames_admin1": { + "name": "Iowa", + "id": 4862182, + "ascii_name": "Iowa", + "code": "US.IA" + }, + "geonames_admin2": { + "name": "Story", + "id": 4877685, + "ascii_name": "Story", + "code": "US.IA.169" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.ameslab.gov/" + ], + "aliases": [ + "Ames Laboratory", + "United States Department of Energy Office of Science Ames National Laboratory" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ames_Laboratory", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0690 157X" + ] + }, + "FundRef": { + "preferred": "100011659", + "all": [ + "100011659" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "1372885" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q4745875" + ] + }, + "GRID": { + "preferred": "grid.451319.b", + "all": "grid.451319.b" + } + } +} \ No newline at end of file diff --git a/v1.43/041qq2t66.json b/v1.43/041qq2t66.json new file mode 100644 index 000000000..38fdc10c3 --- /dev/null +++ b/v1.43/041qq2t66.json @@ -0,0 +1,88 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "LCIRAH" + ], + "links": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Leverhulme Centre for Integrative Research on Agriculture and Health", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6085 4796", + "all": [ + "0000 0004 6085 4796" + ] + }, + "Wikidata": { + "preferred": "Q45132743", + "all": [ + "Q45132743" + ] + }, + "FundRef": { + "preferred": "501100008754", + "all": [ + "501100008754" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/041qq2t66", + "labels": [], + "status": "inactive" +} \ No newline at end of file diff --git a/v1.43/041repn61.json b/v1.43/041repn61.json new file mode 100644 index 000000000..86d0c35ee --- /dev/null +++ b/v1.43/041repn61.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://www.astellas.com/ca/" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Astellas Pharma (Canada)", + "wikipedia_url": "https://en.wikipedia.org/wiki/Astellas_Pharma", + "addresses": [ + { + "lat": 43.86682, + "lng": -79.2663, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Markham", + "geonames_city": { + "id": 6066513, + "city": "Markham", + "geonames_admin1": { + "name": "Ontario", + "ascii_name": "Ontario", + "id": 6093943, + "code": "CA.08" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0634 9545", + "all": [ + "0000 0004 0634 9545" + ] + }, + "FundRef": { + "preferred": "100012317", + "all": [ + "100012317" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Astellas Pharma (Japan)", + "type": "Parent", + "id": "https://ror.org/01cjash87" + } + ], + "email_address": null, + "id": "https://ror.org/041repn61", + "labels": [ + { + "label": "Astellas Pharmaceuticals", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/041yk2d64.json b/v1.43/041yk2d64.json new file mode 100644 index 000000000..b05946ebd --- /dev/null +++ b/v1.43/041yk2d64.json @@ -0,0 +1,122 @@ +{ + "id": "https://ror.org/041yk2d64", + "name": "Universidade Federal do Rio Grande do Sul", + "email_address": "", + "ip_addresses": [], + "established": 1895, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": -30.03283, + "lng": -51.23019, + "state": null, + "state_code": null, + "city": "Porto Alegre", + "geonames_city": { + "id": 3452925, + "city": "Porto Alegre", + "geonames_admin1": { + "name": "Rio Grande do Sul", + "id": 3451133, + "ascii_name": "Rio Grande do Sul", + "code": "BR.23" + }, + "geonames_admin2": { + "name": "Porto Alegre", + "id": 6323571, + "ascii_name": "Porto Alegre", + "code": "BR.23.4314902" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3469034 + } + ], + "links": [ + "http://www.ufrgs.br" + ], + "aliases": [], + "acronyms": [ + "UFRGS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Universidade_Federal_do_Rio_Grande_do_Sul", + "labels": [ + { + "label": "Federal University of Rio Grande do Sul", + "iso639": "en" + } + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2200 7498" + ] + }, + "FundRef": { + "preferred": "501100004909", + "all": [ + "501100004909", + "501100007184" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "889448" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q766447" + ] + }, + "GRID": { + "preferred": "grid.8532.c", + "all": "grid.8532.c" + } + } +} \ No newline at end of file diff --git a/v1.43/042en9b35.json b/v1.43/042en9b35.json new file mode 100644 index 000000000..b40276f3a --- /dev/null +++ b/v1.43/042en9b35.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "Accelleran" + ], + "acronyms": [ + "ACC" + ], + "links": [ + "https://accelleran.com" + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "name": "Accelleran NV (Belgium)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.22047, + "lng": 4.40026, + "state": null, + "state_code": null, + "country_geonames_id": 2802361, + "city": "Antwerp", + "geonames_city": { + "id": 2803138, + "city": "Antwerp", + "geonames_admin1": { + "name": "Flanders", + "ascii_name": "Flanders", + "id": 3337388, + "code": "BE.VLG" + }, + "geonames_admin2": { + "name": "Antwerp Province", + "id": 2803136, + "ascii_name": "Antwerp Province", + "code": "BE.VLG.VAN" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": 2013, + "relationships": [], + "email_address": null, + "id": "https://ror.org/042en9b35", + "labels": [ + { + "label": "Accelleran NV", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/042fhmq33.json b/v1.43/042fhmq33.json new file mode 100644 index 000000000..bb2eec88e --- /dev/null +++ b/v1.43/042fhmq33.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [ + "Robert Packard Center for ALS Research, Johns Hopkins University" + ], + "acronyms": [], + "links": [ + "https://packardcenter.org" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Packard Center", + "wikipedia_url": null, + "addresses": [ + { + "lat": 39.29038, + "lng": -76.61219, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Baltimore", + "geonames_city": { + "id": 4347778, + "city": "Baltimore", + "geonames_admin1": { + "name": "Maryland", + "ascii_name": "Maryland", + "id": 4361885, + "code": "US.MD" + }, + "geonames_admin2": { + "name": "Baltimore", + "id": 4347820, + "ascii_name": "Baltimore", + "code": "US.MD.510" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "100012312", + "all": [ + "100012312" + ] + } + }, + "established": 1999, + "relationships": [ + { + "label": "Johns Hopkins University", + "type": "Parent", + "id": "https://ror.org/00za53h95" + } + ], + "email_address": null, + "id": "https://ror.org/042fhmq33", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/042heps41.json b/v1.43/042heps41.json new file mode 100644 index 000000000..2aba6d8d9 --- /dev/null +++ b/v1.43/042heps41.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/042heps41", + "name": "University College at Rockland", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Maine System", + "type": "Parent", + "id": "https://ror.org/050qj5m48" + } + ], + "addresses": [ + { + "lat": 44.10369, + "lng": -69.10893, + "state": null, + "state_code": null, + "city": "Rockland", + "geonames_city": { + "id": 4832458, + "city": "Rockland", + "geonames_admin1": { + "name": "Maine", + "id": 4971068, + "ascii_name": "Maine", + "code": "US.ME" + }, + "geonames_admin2": { + "name": "Knox", + "id": 4968996, + "ascii_name": "Knox", + "code": "US.ME.013" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://learn.maine.edu/rockland/" + ], + "aliases": [ + "URock" + ], + "acronyms": [], + "status": "withdrawn", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_College_at_Rockland", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 4686 4007" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "37157828" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7894639" + ] + }, + "GRID": { + "preferred": "grid.461517.0", + "all": "grid.461517.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..3e611cbae --- /dev/null +++ b/v1.43/042jh8155.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/042jh8155", + "name": "Institute for Productive Learning in Europe", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Alice-Salomon-Hochschule Berlin", + "type": "Parent", + "id": "https://ror.org/04b404920" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "name": "Berlin", + "id": 2950157, + "ascii_name": "Berlin", + "code": "DE.16" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.16.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "http://www.iple.de" + ], + "aliases": [], + "acronyms": [ + "IPLE" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Institut für Produktives Lernen in Europa", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "GRID": { + "preferred": "grid.506565.5", + "all": "grid.506565.5" + } + } +} \ No newline at end of file diff --git a/v1.43/042k5q325.json b/v1.43/042k5q325.json new file mode 100644 index 000000000..973452d64 --- /dev/null +++ b/v1.43/042k5q325.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "EMPIR" + ], + "links": [ + "https://www.euramet.org/research-innovation/research-empir" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "European Metrology Programme for Innovation and Research", + "wikipedia_url": null, + "addresses": [ + { + "lat": 52.26594, + "lng": 10.52673, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Braunschweig", + "geonames_city": { + "id": 2945024, + "city": "Braunschweig", + "geonames_admin1": { + "name": "Lower Saxony", + "ascii_name": "Lower Saxony", + "id": 2862926, + "code": "DE.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.06.00" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "FundRef": { + "preferred": "100014132", + "all": [ + "100014132" + ] + } + }, + "established": 2014, + "relationships": [ + { + "label": "European Association of National Metrology Institutes", + "type": "Parent", + "id": "https://ror.org/03csrq586" + } + ], + "email_address": null, + "id": "https://ror.org/042k5q325", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/042t2dj58.json b/v1.43/042t2dj58.json new file mode 100644 index 000000000..d3c542c3c --- /dev/null +++ b/v1.43/042t2dj58.json @@ -0,0 +1,77 @@ +{ + "ip_addresses": [], + "aliases": [ + "Shenyang Sinochem Agrochemicals R&D Co., Ltd.", + "Shenyang Sinochem Agrochemicals R&D Co." + ], + "acronyms": [], + "links": [ + "http://www.sysard.com" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "Shenyang Sinochem Agrochemicals R&D Co., Ltd. (China)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 41.79222, + "lng": 123.43278, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Shenyang", + "geonames_city": { + "id": 2034937, + "city": "Shenyang", + "geonames_admin1": { + "name": "Liaoning", + "ascii_name": "Liaoning", + "id": 2036115, + "code": "CN.19" + }, + "geonames_admin2": { + "name": "Shenyang Shi", + "id": 2034935, + "ascii_name": "Shenyang Shi", + "code": "CN.19.2101" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/042t2dj58", + "labels": [ + { + "label": "沈阳中化农药化工研发有限公司", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/042vxm455.json b/v1.43/042vxm455.json new file mode 100644 index 000000000..e56f6c099 --- /dev/null +++ b/v1.43/042vxm455.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [ + "Bloomsbury USA" + ], + "acronyms": [], + "links": [ + "https://www.bloomsbury.com/us/" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Bloomsbury (United States)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "name": "New York", + "ascii_name": "New York", + "id": 5128638, + "code": "US.NY" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0453 5264", + "all": [ + "0000 0004 0453 5264" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Bloomsbury Publishing (United Kingdom)", + "type": "Parent", + "id": "https://ror.org/04yyy0y35" + } + ], + "email_address": null, + "id": "https://ror.org/042vxm455", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/0436znn81.json b/v1.43/0436znn81.json new file mode 100644 index 000000000..b2b2e59ee --- /dev/null +++ b/v1.43/0436znn81.json @@ -0,0 +1,95 @@ +{ + "ip_addresses": [], + "aliases": [ + "National Institute for Health Research Greater Manchester Patient Safety Translational Research Centre", + "Greater Manchester Patient Safety Translational Research Centre", + "Manchester Patient Safety Translational Research Centre" + ], + "acronyms": [ + "NIHR GM PSTRC", + "GM PSTRC" + ], + "links": [ + "https://www.psrc-gm.nihr.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "NIHR Greater Manchester Patient Safety Translational Research Centre", + "wikipedia_url": null, + "addresses": [ + { + "lat": 53.45, + "lng": -2.23333, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Greater Manchester", + "geonames_city": { + "id": 2648108, + "city": "Greater Manchester", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7871 7132", + "all": [ + "0000 0004 7871 7132" + ] + }, + "FundRef": { + "preferred": "501100013235", + "all": [ + "501100013235" + ] + } + }, + "established": 2023, + "relationships": [ + { + "label": "National Institute for Health Research", + "type": "Parent", + "id": "https://ror.org/0187kwz08" + } + ], + "email_address": null, + "id": "https://ror.org/0436znn81", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04387x656.json b/v1.43/04387x656.json new file mode 100644 index 000000000..191fe12da --- /dev/null +++ b/v1.43/04387x656.json @@ -0,0 +1,123 @@ +{ + "id": "https://ror.org/04387x656", + "name": "University of Eastern Piedmont Amadeo Avogadro", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Azienda Ospedaliero Universitaria Maggiore della Carita", + "type": "Related", + "id": "https://ror.org/02gp92p70" + }, + { + "label": "INFN Sezione di Torino", + "type": "Child", + "id": "https://ror.org/01vj6ck58" + }, + { + "label": "NODES S.c.a.r.l", + "type": "Related", + "id": "https://ror.org/04hp1ky92" + } + ], + "addresses": [ + { + "lat": 45.32163, + "lng": 8.41989, + "state": null, + "state_code": null, + "city": "Vercelli", + "geonames_city": { + "id": 3164565, + "city": "Vercelli", + "geonames_admin1": { + "name": "Piedmont", + "id": 3170831, + "ascii_name": "Piedmont", + "code": "IT.12" + }, + "geonames_admin2": { + "name": "Province of Vercelli", + "id": 3164564, + "ascii_name": "Province of Vercelli", + "code": "IT.12.VC" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "http://www.unipmn.it/" + ], + "aliases": [ + "University of Eastern Piedmont" + ], + "acronyms": [ + "UNIPMN" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Eastern_Piedmont", + "labels": [ + { + "label": "Università degli Studi del Piemonte Orientale “Amedeo Avogadro”", + "iso639": "it" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2166 3741" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100005699" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "4907563" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1235561" + ] + }, + "GRID": { + "preferred": "grid.16563.37", + "all": "grid.16563.37" + } + } +} \ No newline at end of file diff --git a/v1.43/043evzg22.json b/v1.43/043evzg22.json new file mode 100644 index 000000000..da0df5a29 --- /dev/null +++ b/v1.43/043evzg22.json @@ -0,0 +1,91 @@ +{ + "ip_addresses": [], + "aliases": [ + "State Key Lab of Power System and Generation Equipment", + "State Key Laboratory of Safety Control and Simulation of Power System and Large-scale Power Generation Equipment", + "电力系统及发电设备控制和仿真国家重点实验室" + ], + "acronyms": [], + "links": [ + "http://eesklab.tsinghua.edu.cn" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "State Key Laboratory of Power System and Generation Equipment", + "wikipedia_url": null, + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "name": "Beijing", + "ascii_name": "Beijing", + "id": 2038349, + "code": "CN.22" + }, + "geonames_admin2": { + "name": "Beijing", + "id": 11876380, + "ascii_name": "Beijing", + "code": "CN.22.11876380" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "501100011284", + "all": [ + "501100011284" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Tsinghua University", + "type": "Parent", + "id": "https://ror.org/03cve4549" + } + ], + "email_address": null, + "id": "https://ror.org/043evzg22", + "labels": [ + { + "label": "电力系统及大型发电设备安全控制和仿真国家重点实验室", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/043htjv09.json b/v1.43/043htjv09.json new file mode 100644 index 000000000..4756d249b --- /dev/null +++ b/v1.43/043htjv09.json @@ -0,0 +1,141 @@ +{ + "id": "https://ror.org/043htjv09", + "name": "CY Cergy Paris University", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 49.03894, + "lng": 2.07805, + "state": null, + "state_code": null, + "city": "Cergy-Pontoise", + "geonames_city": { + "id": 8555643, + "city": "Cergy-Pontoise", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Val d'Oise", + "id": 2971071, + "ascii_name": "Val d'Oise", + "code": "FR.11.95" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.u-cergy.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/CY_Cergy_Paris_University", + "labels": [ + { + "label": "CY Cergy Paris Université", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q74452784" + ] + }, + "GRID": { + "preferred": "grid.507676.5", + "all": "grid.507676.5" + } + } +} \ No newline at end of file diff --git a/v1.43/043xqa828.json b/v1.43/043xqa828.json new file mode 100644 index 000000000..2e1401841 --- /dev/null +++ b/v1.43/043xqa828.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [ + "Scottish Office Home and Health Department" + ], + "acronyms": [], + "links": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Scottish Home and Health Department", + "wikipedia_url": "https://en.wikipedia.org/wiki/Scottish_Office", + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q45137372", + "all": [ + "Q45137372" + ] + }, + "FundRef": { + "preferred": "501100003263", + "all": [ + "501100003263" + ] + } + }, + "established": 1999, + "relationships": [], + "email_address": null, + "id": "https://ror.org/043xqa828", + "labels": [], + "status": "inactive" +} \ No newline at end of file diff --git a/v1.43/0447fe631.json b/v1.43/0447fe631.json new file mode 100644 index 000000000..6df8baeca --- /dev/null +++ b/v1.43/0447fe631.json @@ -0,0 +1,233 @@ +{ + "id": "https://ror.org/0447fe631", + "name": "United States Department of Defense", + "email_address": null, + "ip_addresses": [], + "established": 1947, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Defense Equal Opportunity Management Institute", + "type": "Related", + "id": "https://ror.org/03fpx5n61" + }, + { + "label": "Government of the United States of America", + "type": "Parent", + "id": "https://ror.org/02rcrvv70" + }, + { + "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": "Strategic Environmental Research and Development Program", + "type": "Child", + "id": "https://ror.org/00ew61678" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "name": "Washington, D.C.", + "id": 4138106, + "ascii_name": "Washington, D.C.", + "code": "US.DC" + }, + "geonames_admin2": { + "name": "Washington", + "id": 4140987, + "ascii_name": "Washington", + "code": "US.DC.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.defense.gov/" + ], + "aliases": [], + "acronyms": [ + "US DOD", + "DOD" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/United_States_Department_of_Defense", + "labels": [ + { + "label": "Departamento de Defensa de los Estados Unidos", + "iso639": "es" + }, + { + "label": "Département de la Défense des États-Unis", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0478 6223", + "all": [ + "0000 0004 0478 6223", + "0000 0001 2163 2208" + ] + }, + "FundRef": { + "preferred": "100000005", + "all": [ + "100000005", + "100006502", + "100006127", + "100007485", + "100014037", + "100014032" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "7279897" + ] + }, + "Wikidata": { + "preferred": "Q11209", + "all": [ + "Q11209", + "Q1591470" + ] + }, + "GRID": { + "preferred": "grid.420391.d", + "all": "grid.420391.d" + } + } +} \ No newline at end of file diff --git a/v1.43/044kpcz50.json b/v1.43/044kpcz50.json new file mode 100644 index 000000000..fe3ee5937 --- /dev/null +++ b/v1.43/044kpcz50.json @@ -0,0 +1,95 @@ +{ + "ip_addresses": [], + "aliases": [ + "Egmont H. Petersens Fond" + ], + "acronyms": [], + "links": [ + "https://www.egmontfonden.dk" + ], + "country": { + "country_name": "Denmark", + "country_code": "DK" + }, + "name": "Egmont Fonden", + "wikipedia_url": "https://da.wikipedia.org/wiki/Egmont_Fonden", + "addresses": [ + { + "lat": 55.67594, + "lng": 12.56553, + "state": null, + "state_code": null, + "country_geonames_id": 2623032, + "city": "Copenhagen", + "geonames_city": { + "id": 2618425, + "city": "Copenhagen", + "geonames_admin1": { + "name": "Capital Region", + "ascii_name": "Capital Region", + "id": 6418538, + "code": "DK.17" + }, + "geonames_admin2": { + "name": "Copenhagen", + "id": 2618424, + "ascii_name": "Copenhagen", + "code": "DK.17.101" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7866 339X", + "all": [ + "0000 0004 7866 339X" + ] + }, + "Wikidata": { + "preferred": "Q12309486", + "all": [ + "Q12309486" + ] + }, + "FundRef": { + "preferred": "501100009902", + "all": [ + "501100009902" + ] + } + }, + "established": 1920, + "relationships": [], + "email_address": null, + "id": "https://ror.org/044kpcz50", + "labels": [ + { + "label": "Egmont Foundation", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/0453rg493.json b/v1.43/0453rg493.json new file mode 100644 index 000000000..2f9c67ecc --- /dev/null +++ b/v1.43/0453rg493.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/0453rg493", + "name": "Oakland City University", + "email_address": null, + "ip_addresses": [], + "established": 1885, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 38.33866, + "lng": -87.34501, + "state": null, + "state_code": null, + "city": "Oakland City", + "geonames_city": { + "id": 4262425, + "city": "Oakland City", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Gibson", + "id": 4257948, + "ascii_name": "Gibson", + "code": "US.IN.051" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.oak.edu/" + ], + "aliases": [], + "acronyms": [ + "OCU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Oakland_City_University", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0446 4566" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "8154477" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7073984" + ] + }, + "GRID": { + "preferred": "grid.431190.e", + "all": "grid.431190.e" + } + } +} \ No newline at end of file diff --git a/v1.43/045jby416.json b/v1.43/045jby416.json new file mode 100644 index 000000000..b0f434d6a --- /dev/null +++ b/v1.43/045jby416.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/045jby416", + "name": "Saint Mary-of-the-Woods College", + "email_address": null, + "ip_addresses": [], + "established": 1840, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 39.4667, + "lng": -87.41391, + "state": null, + "state_code": null, + "city": "Terre Haute", + "geonames_city": { + "id": 4265737, + "city": "Terre Haute", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Vigo", + "id": 4266295, + "ascii_name": "Vigo", + "code": "US.IN.167" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.smwc.edu/" + ], + "aliases": [], + "acronyms": [ + "SMWC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Saint_Mary-of-the-Woods_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8597 0516" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "3025725" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7401849" + ] + }, + "GRID": { + "preferred": "grid.431499.2", + "all": "grid.431499.2" + } + } +} \ No newline at end of file diff --git a/v1.43/046j7pv84.json b/v1.43/046j7pv84.json new file mode 100644 index 000000000..01e95f939 --- /dev/null +++ b/v1.43/046j7pv84.json @@ -0,0 +1,111 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "TDR" + ], + "links": [ + "https://tdr.who.int" + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "name": "Special Programme for Research and Training in Tropical Diseases", + "wikipedia_url": null, + "addresses": [ + { + "lat": 46.20222, + "lng": 6.14569, + "state": null, + "state_code": null, + "country_geonames_id": 2658434, + "city": "Geneva", + "geonames_city": { + "id": 2660646, + "city": "Geneva", + "geonames_admin1": { + "name": "Geneva", + "ascii_name": "Geneva", + "id": 2660645, + "code": "CH.GE" + }, + "geonames_admin2": { + "name": "Geneva", + "id": 6458783, + "ascii_name": "Geneva", + "code": "CH.GE.2500" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2191 7262", + "all": [ + "0000 0001 2191 7262" + ] + }, + "Wikidata": { + "preferred": "Q30261831", + "all": [ + "Q30261831" + ] + }, + "FundRef": { + "preferred": "100016285", + "all": [ + "100016285" + ] + } + }, + "established": 1974, + "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" + } + ], + "email_address": null, + "id": "https://ror.org/046j7pv84", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/047448m94.json b/v1.43/047448m94.json new file mode 100644 index 000000000..5641cbecb --- /dev/null +++ b/v1.43/047448m94.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/047448m94", + "name": "Institut de Recherches Médicales et d’Etudes des Plantes Médicinales", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 3.86667, + "lng": 11.51667, + "state": null, + "state_code": null, + "city": "Yaoundé", + "geonames_city": { + "id": 2220957, + "city": "Yaoundé", + "geonames_admin1": { + "name": "Centre", + "id": 2233376, + "ascii_name": "Centre", + "code": "CM.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2233387 + } + ], + "links": [ + "https://impm-cm.org" + ], + "aliases": [], + "acronyms": [ + "IMPM" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Institute of Research Medical and Medicinal Plants Studies", + "iso639": "en" + } + ], + "country": { + "country_name": "Cameroon", + "country_code": "CM" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9212 1336" + ] + }, + "GRID": { + "preferred": "grid.463347.1", + "all": "grid.463347.1" + }, + "Wikidata": { + "preferred": "Q30261846", + "all": [ + "Q30261846" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/047dkqn05.json b/v1.43/047dkqn05.json new file mode 100644 index 000000000..6f58dfa19 --- /dev/null +++ b/v1.43/047dkqn05.json @@ -0,0 +1,76 @@ +{ + "ip_addresses": [], + "aliases": [ + "Equinox Sensors" + ], + "acronyms": [], + "links": [ + "http://www.equinoxsensors.com" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Equinox Corporation (United States)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 39.29038, + "lng": -76.61219, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Baltimore", + "geonames_city": { + "id": 4347778, + "city": "Baltimore", + "geonames_admin1": { + "name": "Maryland", + "ascii_name": "Maryland", + "id": 4361885, + "code": "US.MD" + }, + "geonames_admin2": { + "name": "Baltimore", + "id": 4347820, + "ascii_name": "Baltimore", + "code": "US.MD.510" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/047dkqn05", + "labels": [ + { + "label": "Equinox Corporation", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/047xxvg44.json b/v1.43/047xxvg44.json new file mode 100644 index 000000000..b2b00225b --- /dev/null +++ b/v1.43/047xxvg44.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/047xxvg44", + "name": "Instituto Português de Oncologia de Coimbra Francisco Gentil", + "email_address": null, + "ip_addresses": [], + "established": 1927, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.20564, + "lng": -8.41955, + "state": null, + "state_code": null, + "city": "Coimbra", + "geonames_city": { + "id": 2740637, + "city": "Coimbra", + "geonames_admin1": { + "name": "Coimbra", + "id": 2740636, + "ascii_name": "Coimbra", + "code": "PT.07" + }, + "geonames_admin2": { + "name": "Coimbra Municipality", + "id": 8010483, + "ascii_name": "Coimbra Municipality", + "code": "PT.07.0603" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2264397 + } + ], + "links": [ + "https://www.ipocoimbra.min-saude.pt" + ], + "aliases": [ + "Francisco Gentil Portuguese Institute for Oncology" + ], + "acronyms": [ + "IPOCFG" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0631 0608", + "all": [ + "0000 0004 0631 0608" + ] + }, + "GRID": { + "preferred": "grid.435541.2", + "all": "grid.435541.2" + }, + "Wikidata": { + "preferred": "Q107279716", + "all": [ + "Q107279716" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/047yj9455.json b/v1.43/047yj9455.json new file mode 100644 index 000000000..ab684e575 --- /dev/null +++ b/v1.43/047yj9455.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/047yj9455", + "name": "Barcelona Media", + "email_address": null, + "ip_addresses": [], + "established": 2009, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.barcelonamedia.org/" + ], + "aliases": [], + "acronyms": [ + "BM" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1783 3287" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q8242526" + ] + }, + "GRID": { + "preferred": "grid.16388.34", + "all": "grid.16388.34" + } + } +} \ No newline at end of file diff --git a/v1.43/0483fn738.json b/v1.43/0483fn738.json new file mode 100644 index 000000000..e27379ab2 --- /dev/null +++ b/v1.43/0483fn738.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/0483fn738", + "name": "Institute of Communication and Computer Systems", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "National Technical University of Athens", + "type": "Related", + "id": "https://ror.org/03cx6bg69" + } + ], + "addresses": [ + { + "lat": 37.97574, + "lng": 23.76911, + "state": null, + "state_code": null, + "city": "Zografos", + "geonames_city": { + "id": 8358544, + "city": "Zografos", + "geonames_admin1": { + "name": "Attica", + "id": 6692632, + "ascii_name": "Attica", + "code": "GR.ESYE31" + }, + "geonames_admin2": { + "name": "Nomarchía Athínas", + "id": 445408, + "ascii_name": "Nomarchía Athínas", + "code": "GR.ESYE31.99" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 390903 + } + ], + "links": [ + "https://www.iccs.gr" + ], + "aliases": [ + "Institute of Communication & Computer Systems “ICCS”", + "Erevnitiko Panepistimiako Institouto Systimaton Epikoinonion Kai Ypologiston" + ], + "acronyms": [ + "ICCS" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Greece", + "country_code": "GR" + }, + "external_ids": { + "GRID": { + "preferred": "grid.435146.1", + "all": "grid.435146.1" + }, + "Wikidata": { + "preferred": "Q30289833", + "all": [ + "Q30289833" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/048tbm396.json b/v1.43/048tbm396.json new file mode 100644 index 000000000..f033a68bd --- /dev/null +++ b/v1.43/048tbm396.json @@ -0,0 +1,143 @@ +{ + "id": "https://ror.org/048tbm396", + "name": "University of Turin", + "email_address": null, + "ip_addresses": [], + "established": 1404, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "Multi-Modal Molecular Imaging Italian Node", + "type": "Child", + "id": "https://ror.org/0573ty638" + }, + { + "label": "NODES S.c.a.r.l", + "type": "Related", + "id": "https://ror.org/04hp1ky92" + } + ], + "addresses": [ + { + "lat": 45.07049, + "lng": 7.68682, + "state": null, + "state_code": null, + "city": "Turin", + "geonames_city": { + "id": 3165524, + "city": "Turin", + "geonames_admin1": { + "name": "Piedmont", + "id": 3170831, + "ascii_name": "Piedmont", + "code": "IT.12" + }, + "geonames_admin2": { + "name": "Turin", + "id": 3165523, + "ascii_name": "Turin", + "code": "IT.12.TO" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "http://en.unito.it/" + ], + "aliases": [], + "acronyms": [ + "UNITO" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Turin", + "labels": [ + { + "label": "Università degli Studi di Torino", + "iso639": "it" + }, + { + "label": "Universitat de Torí", + "iso639": "ca" + }, + { + "label": "Universität Turin", + "iso639": "de" + }, + { + "label": "Université de Turin", + "iso639": "fr" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2336 6580" + ] + }, + "FundRef": { + "preferred": "501100006692", + "all": [ + "501100006692" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "453828" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q499911" + ] + }, + "GRID": { + "preferred": "grid.7605.4", + "all": "grid.7605.4" + } + } +} \ No newline at end of file diff --git a/v1.43/04988re48.json b/v1.43/04988re48.json new file mode 100644 index 000000000..e4f019c67 --- /dev/null +++ b/v1.43/04988re48.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/04988re48", + "name": "Polytechnic Institute of Porto", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Instituto Superior de Engenharia do Porto", + "type": "Child", + "id": "https://ror.org/04h7zpy51" + } + ], + "addresses": [ + { + "lat": 41.14961, + "lng": -8.61099, + "state": null, + "state_code": null, + "city": "Porto", + "geonames_city": { + "id": 2735943, + "city": "Porto", + "geonames_admin1": { + "name": "Porto", + "id": 2735941, + "ascii_name": "Porto", + "code": "PT.17" + }, + "geonames_admin2": { + "name": "Porto", + "id": 6458924, + "ascii_name": "Porto", + "code": "PT.17.1312" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2264397 + } + ], + "links": [ + "https://www.ipp.pt/" + ], + "aliases": [ + "Porto Polytechnic" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Polytechnic_Institute_of_Porto", + "labels": [ + { + "label": "Instituto Politécnico do Porto", + "iso639": "pt" + } + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2191 8636" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100007157" + ] + }, + "Wikidata": { + "preferred": "Q4348556", + "all": [ + "Q4348556", + "Q3152860" + ] + }, + "GRID": { + "preferred": "grid.410926.8", + "all": "grid.410926.8" + } + } +} \ No newline at end of file diff --git a/v1.43/049ctcj40.json b/v1.43/049ctcj40.json new file mode 100644 index 000000000..8b9a10138 --- /dev/null +++ b/v1.43/049ctcj40.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "STMI" + ], + "links": [ + "https://stmi.ac.id" + ], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "name": "Politeknik STMI Jakarta", + "wikipedia_url": "https://id.wikipedia.org/wiki/Politeknik_STMI", + "addresses": [ + { + "lat": -6.21462, + "lng": 106.84513, + "state": null, + "state_code": null, + "country_geonames_id": 1643084, + "city": "Jakarta", + "geonames_city": { + "id": 1642911, + "city": "Jakarta", + "geonames_admin1": { + "name": "Jakarta", + "ascii_name": "Jakarta", + "id": 1642907, + "code": "ID.04" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q109911827", + "all": [ + "Q109911827" + ] + } + }, + "established": 1975, + "relationships": [], + "email_address": null, + "id": "https://ror.org/049ctcj40", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/049h9f890.json b/v1.43/049h9f890.json new file mode 100644 index 000000000..49bd51a86 --- /dev/null +++ b/v1.43/049h9f890.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://cegepgranby.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Cégep de Granby", + "wikipedia_url": "https://fr.wikipedia.org/wiki/C%C3%A9gep_de_Granby", + "addresses": [ + { + "lat": 45.40008, + "lng": -72.73243, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Granby", + "geonames_city": { + "id": 5964215, + "city": "Granby", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Montérégie", + "id": 6076966, + "ascii_name": "Montérégie", + "code": "CA.10.16" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0000 9536 9505", + "all": [ + "0000 0000 9536 9505" + ] + }, + "Wikidata": { + "preferred": "Q3009996", + "all": [ + "Q3009996" + ] + } + }, + "established": 1968, + "relationships": [], + "email_address": null, + "id": "https://ror.org/049h9f890", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/049s0rh22.json b/v1.43/049s0rh22.json new file mode 100644 index 000000000..3368b7053 --- /dev/null +++ b/v1.43/049s0rh22.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/049s0rh22", + "name": "Dartmouth College", + "email_address": null, + "ip_addresses": [], + "established": 1769, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Hubbard Brook Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/00mkh7345" + }, + { + "label": "Dartmouth Health", + "type": "Child", + "id": "https://ror.org/01pa9ed26" + }, + { + "label": "Center for Open Neuroscience", + "type": "Related", + "id": "https://ror.org/04tfhh831" + } + ], + "addresses": [ + { + "lat": 43.70229, + "lng": -72.28954, + "state": null, + "state_code": null, + "city": "Hanover", + "geonames_city": { + "id": 5087168, + "city": "Hanover", + "geonames_admin1": { + "name": "New Hampshire", + "id": 5090174, + "ascii_name": "New Hampshire", + "code": "US.NH" + }, + "geonames_admin2": { + "name": "Grafton", + "id": 5086767, + "ascii_name": "Grafton", + "code": "US.NH.009" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://dartmouth.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Dartmouth_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2179 2404" + ] + }, + "FundRef": { + "preferred": "100008299", + "all": [ + "100008299", + "100009231", + "100008300" + ] + }, + "OrgRef": { + "preferred": "8418", + "all": [ + "8418", + "668697", + "511305", + "981603" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q49116" + ] + }, + "GRID": { + "preferred": "grid.254880.3", + "all": "grid.254880.3" + } + } +} \ No newline at end of file diff --git a/v1.43/04b404920.json b/v1.43/04b404920.json new file mode 100644 index 000000000..ebde1851b --- /dev/null +++ b/v1.43/04b404920.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/04b404920", + "name": "Alice-Salomon-Hochschule Berlin", + "email_address": null, + "ip_addresses": [], + "established": 1899, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Institute for Productive Learning in Europe", + "type": "Child", + "id": "https://ror.org/042jh8155" + } + ], + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "name": "Berlin", + "id": 2950157, + "ascii_name": "Berlin", + "code": "DE.16" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.16.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.ash-berlin.eu" + ], + "aliases": [ + "Alice Salomon University", + "Alice Salomon Hochschule Berlin University of Applied Sciences", + "ASH Berlin", + "Alice Salomon University of Applied Sciences Berlin" + ], + "acronyms": [ + "ASH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Alice_Salomon_University_of_Applied_Sciences_Berlin", + "labels": [ + { + "label": "Alice Salomon Hochschule Berlin", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0144 8833" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "5960505" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2646956" + ] + }, + "GRID": { + "preferred": "grid.448744.f", + "all": "grid.448744.f" + } + } +} \ No newline at end of file diff --git a/v1.43/04b57z061.json b/v1.43/04b57z061.json new file mode 100644 index 000000000..a94819ef0 --- /dev/null +++ b/v1.43/04b57z061.json @@ -0,0 +1,96 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "CWC" + ], + "links": [ + "http://cwc.ucsd.edu" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Center for Wireless Communications", + "wikipedia_url": null, + "addresses": [ + { + "lat": 32.71571, + "lng": -117.16472, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "San Diego", + "geonames_city": { + "id": 5391811, + "city": "San Diego", + "geonames_admin1": { + "name": "California", + "ascii_name": "California", + "id": 5332921, + "code": "US.CA" + }, + "geonames_admin2": { + "name": "San Diego", + "id": 5391832, + "ascii_name": "San Diego", + "code": "US.CA.073" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9465 4856", + "all": [ + "0000 0004 9465 4856" + ] + }, + "Wikidata": { + "preferred": "Q45137754", + "all": [ + "Q45137754" + ] + }, + "FundRef": { + "preferred": "100011231", + "all": [ + "100011231" + ] + } + }, + "established": 1995, + "relationships": [ + { + "label": "University of California, San Diego", + "type": "Parent", + "id": "https://ror.org/0168r3w48" + } + ], + "email_address": null, + "id": "https://ror.org/04b57z061", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04b6nzv94.json b/v1.43/04b6nzv94.json new file mode 100644 index 000000000..903dbb484 --- /dev/null +++ b/v1.43/04b6nzv94.json @@ -0,0 +1,154 @@ +{ + "id": "https://ror.org/04b6nzv94", + "name": "Brigham and Women's Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1980, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "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": "Mass General Brigham", + "type": "Parent", + "id": "https://ror.org/04py2rh25" + }, + { + "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": "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" + } + ], + "addresses": [ + { + "lat": 42.35843, + "lng": -71.05977, + "state": null, + "state_code": null, + "city": "Boston", + "geonames_city": { + "id": 4930956, + "city": "Boston", + "geonames_admin1": { + "name": "Massachusetts", + "id": 6254926, + "ascii_name": "Massachusetts", + "code": "US.MA" + }, + "geonames_admin2": { + "name": "Suffolk", + "id": 4952349, + "ascii_name": "Suffolk", + "code": "US.MA.025" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.brighamandwomens.org/" + ], + "aliases": [ + "The Brigham" + ], + "acronyms": [ + "BWH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Brigham_and_Women%27s_Hospital", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0378 8294" + ] + }, + "FundRef": { + "preferred": "100005292", + "all": [ + "100005292", + "100008552" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "1608724" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2900977" + ] + }, + "GRID": { + "preferred": "grid.62560.37", + "all": "grid.62560.37" + } + } +} \ No newline at end of file diff --git a/v1.43/04b8d7j46.json b/v1.43/04b8d7j46.json new file mode 100644 index 000000000..3a9de9ce2 --- /dev/null +++ b/v1.43/04b8d7j46.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/04b8d7j46", + "name": "Anabaptist Mennonite Biblical Seminary", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 41.68199, + "lng": -85.97667, + "state": null, + "state_code": null, + "city": "Elkhart", + "geonames_city": { + "id": 4919987, + "city": "Elkhart", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Elkhart", + "id": 4919988, + "ascii_name": "Elkhart", + "code": "US.IN.039" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.ambs.edu/" + ], + "aliases": [ + "Associated Mennonite Biblical Seminary" + ], + "acronyms": [ + "AMBS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Anabaptist_Mennonite_Biblical_Seminary", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0719 9428" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "4147129" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q4750556" + ] + }, + "GRID": { + "preferred": "grid.431274.7", + "all": "grid.431274.7" + } + } +} \ No newline at end of file diff --git a/v1.43/04bdqq221.json b/v1.43/04bdqq221.json new file mode 100644 index 000000000..b65b45c88 --- /dev/null +++ b/v1.43/04bdqq221.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/04bdqq221", + "name": "Concello de Cervo", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.67019, + "lng": -7.41013, + "state": null, + "state_code": null, + "city": "Cervo", + "geonames_city": { + "id": 3125287, + "city": "Cervo", + "geonames_admin1": { + "name": "Galicia", + "id": 3336902, + "ascii_name": "Galicia", + "code": "ES.58" + }, + "geonames_admin2": { + "name": "Lugo", + "id": 3117813, + "ascii_name": "Lugo", + "code": "ES.58.LU" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.concellodecervo.com/" + ], + "aliases": [ + "Ayuntamiento de Cervo" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Cervo,_Lugo", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.466596.e", + "all": "grid.466596.e" + } + } +} \ No newline at end of file diff --git a/v1.43/04bgjpg77.json b/v1.43/04bgjpg77.json new file mode 100644 index 000000000..bb36a836e --- /dev/null +++ b/v1.43/04bgjpg77.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/04bgjpg77", + "name": "Laboratoire de Physique des Gaz et des Plasmas", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.lpgp.universite-paris-saclay.fr" + ], + "aliases": [ + "Laboratory of Gas and Plasma Physics" + ], + "acronyms": [ + "LPGP" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9792 877X" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR8578" + ] + }, + "Wikidata": { + "preferred": "Q30261542", + "all": [ + "Q30261542" + ] + }, + "GRID": { + "preferred": "grid.462744.7", + "all": "grid.462744.7" + } + } +} \ No newline at end of file diff --git a/v1.43/04bkzce69.json b/v1.43/04bkzce69.json new file mode 100644 index 000000000..4d8d2527e --- /dev/null +++ b/v1.43/04bkzce69.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/04bkzce69", + "name": "Laboratory Signaling and Cardiovascular Pathophysiology", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Délégation Paris 11", + "type": "Parent", + "id": "https://ror.org/0589k3111" + } + ], + "addresses": [ + { + "lat": 48.76507, + "lng": 2.26655, + "state": null, + "state_code": null, + "city": "Châtenay-Malabry", + "geonames_city": { + "id": 3026108, + "city": "Châtenay-Malabry", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Hauts-de-Seine", + "id": 3013657, + "ascii_name": "Hauts-de-Seine", + "code": "FR.11.92" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://inserm-u769.cep.u-psud.fr/index.php?lang=en" + ], + "aliases": [], + "acronyms": [ + "SCP" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Singnalisation et physiopathologie cardiaque", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "preferred": "grid.464070.1", + "all": "grid.464070.1" + } + } +} \ No newline at end of file diff --git a/v1.43/04cjmvv09.json b/v1.43/04cjmvv09.json new file mode 100644 index 000000000..b82868767 --- /dev/null +++ b/v1.43/04cjmvv09.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "JFEC" + ], + "links": [ + "http://www.jfec.org.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Japan Foundation Endowment Committee", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.9724, + "lng": 0.77488, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Bures Saint Mary", + "geonames_city": { + "id": 2654313, + "city": "Bures Saint Mary", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Suffolk", + "id": 2636561, + "ascii_name": "Suffolk", + "code": "GB.ENG.N5" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7782 485X", + "all": [ + "0000 0004 7782 485X" + ] + }, + "FundRef": { + "preferred": "100012354", + "all": [ + "100012354" + ] + } + }, + "established": 1974, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04cjmvv09", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04cwfse38.json b/v1.43/04cwfse38.json new file mode 100644 index 000000000..efe540a7b --- /dev/null +++ b/v1.43/04cwfse38.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/04cwfse38", + "name": "National Research Institute for Earth Science and Disaster Resilience", + "email_address": null, + "ip_addresses": [], + "established": 1963, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.2, + "lng": 140.1, + "state": null, + "state_code": null, + "city": "Tsukuba", + "geonames_city": { + "id": 2110683, + "city": "Tsukuba", + "geonames_admin1": { + "name": "Ibaraki", + "id": 2112669, + "ascii_name": "Ibaraki", + "code": "JP.14" + }, + "geonames_admin2": { + "name": "Tsukuba-shi", + "id": 7452809, + "ascii_name": "Tsukuba-shi", + "code": "JP.14.7452809" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1861060 + } + ], + "links": [ + "https://www.bosai.go.jp" + ], + "aliases": [ + "National Research Institute for Earth Science and Disaster Prevention", + "ぼうさいかがくぎじゅつけんきゅうしょ", + "ボウサイカガクギジュツケンキュウショ", + "Bōsai Kagaku Gijutsu Kenkyūsho", + "Bousai Kagaku Gijutsu Kenkyuusho" + ], + "acronyms": [ + "NIED" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "国立研究開発法人防災科学技術研究所", + "iso639": "ja" + } + ], + "country": { + "country_name": "Japan", + "country_code": "JP" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2151 1625" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100006328" + ] + }, + "GRID": { + "preferred": "grid.450301.3", + "all": "grid.450301.3" + }, + "Wikidata": { + "preferred": "Q11657051", + "all": [ + "Q11657051" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/04d2k2606.json b/v1.43/04d2k2606.json new file mode 100644 index 000000000..95141eab2 --- /dev/null +++ b/v1.43/04d2k2606.json @@ -0,0 +1,74 @@ +{ + "ip_addresses": [], + "aliases": [ + "Luto Research", + "Luto Research Limited", + "Luto Research Ltd.", + "Luto" + ], + "acronyms": [], + "links": [ + "https://www.luto.co.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Luto Research (United Kingdom)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 53.55, + "lng": -1.48333, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Barnsley", + "geonames_city": { + "id": 2656284, + "city": "Barnsley", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Barnsley", + "id": 3333122, + "ascii_name": "Barnsley", + "code": "GB.ENG.A3" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": 2004, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04d2k2606", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04d4pvt78.json b/v1.43/04d4pvt78.json new file mode 100644 index 000000000..0fb62a1d7 --- /dev/null +++ b/v1.43/04d4pvt78.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [ + "Johns Hopkins Center for Innovative Medicine" + ], + "acronyms": [ + "CIM" + ], + "links": [ + "https://www.hopkinscim.org" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Center for Innovative Medicine", + "wikipedia_url": null, + "addresses": [ + { + "lat": 39.29038, + "lng": -76.61219, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Baltimore", + "geonames_city": { + "id": 4347778, + "city": "Baltimore", + "geonames_admin1": { + "name": "Maryland", + "ascii_name": "Maryland", + "id": 4361885, + "code": "US.MD" + }, + "geonames_admin2": { + "name": "Baltimore", + "id": 4347820, + "ascii_name": "Baltimore", + "code": "US.MD.510" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "100012306", + "all": [ + "100012306" + ] + } + }, + "established": 2004, + "relationships": [ + { + "label": "Johns Hopkins Medicine", + "type": "Parent", + "id": "https://ror.org/037zgn354" + } + ], + "email_address": null, + "id": "https://ror.org/04d4pvt78", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04e582786.json b/v1.43/04e582786.json new file mode 100644 index 000000000..d430bae91 --- /dev/null +++ b/v1.43/04e582786.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04e582786", + "name": "Institut Universitari D'Estudis Europeus", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://iuee.eu/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30279561" + ] + }, + "GRID": { + "preferred": "grid.34966.3e", + "all": "grid.34966.3e" + } + } +} \ No newline at end of file diff --git a/v1.43/04e7rcy65.json b/v1.43/04e7rcy65.json new file mode 100644 index 000000000..cab565c39 --- /dev/null +++ b/v1.43/04e7rcy65.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [ + "Faculty of Dentistry of Recife" + ], + "acronyms": [ + "FOR" + ], + "links": [ + "http://www.for.edu.br" + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "name": "Faculdade de Odontologia do Recife", + "wikipedia_url": null, + "addresses": [ + { + "lat": -8.05389, + "lng": -34.88111, + "state": null, + "state_code": null, + "country_geonames_id": 3469034, + "city": "Recife", + "geonames_city": { + "id": 3390760, + "city": "Recife", + "geonames_admin1": { + "name": "Pernambuco", + "ascii_name": "Pernambuco", + "id": 3392268, + "code": "BR.30" + }, + "geonames_admin2": { + "name": "Recife", + "id": 6320570, + "ascii_name": "Recife", + "code": "BR.30.2611606" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0417 9458", + "all": [ + "0000 0004 0417 9458" + ] + }, + "Wikidata": { + "preferred": "Q56841516", + "all": [ + "Q56841516" + ] + } + }, + "established": 1980, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04e7rcy65", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04e874t64.json b/v1.43/04e874t64.json new file mode 100644 index 000000000..a7e46b34f --- /dev/null +++ b/v1.43/04e874t64.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/04e874t64", + "name": "Einaudi Institute for Economics and Finance", + "email_address": null, + "ip_addresses": [], + "established": 2008, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Bank of Italy", + "type": "Related", + "id": "https://ror.org/03v2nbx43" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "name": "Lazio", + "id": 3174976, + "ascii_name": "Lazio", + "code": "IT.07" + }, + "geonames_admin2": { + "name": "Rome", + "id": 3169069, + "ascii_name": "Rome", + "code": "IT.07.RM" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "https://www.eief.it/eief/" + ], + "aliases": [], + "acronyms": [ + "EIEF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Einaudi_Institute_for_Economics_and_Finance", + "labels": [ + { + "label": "Istituto Einaudi per l'Economia e la Finanza", + "iso639": "it" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1758 1809" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004808" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q16249630" + ] + }, + "GRID": { + "preferred": "grid.467365.5", + "all": "grid.467365.5" + } + } +} \ No newline at end of file diff --git a/v1.43/04ebbpp93.json b/v1.43/04ebbpp93.json new file mode 100644 index 000000000..1ab2feb7b --- /dev/null +++ b/v1.43/04ebbpp93.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/04ebbpp93", + "name": "Istituto Sperimentale Italiano Lazzaro Spallanzani", + "email_address": null, + "ip_addresses": [], + "established": 1941, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 45.46427, + "lng": 9.18951, + "state": null, + "state_code": null, + "city": "Milan", + "geonames_city": { + "id": 3173435, + "city": "Milan", + "geonames_admin1": { + "name": "Lombardy", + "id": 3174618, + "ascii_name": "Lombardy", + "code": "IT.09" + }, + "geonames_admin2": { + "name": "Milan", + "id": 3173434, + "ascii_name": "Milan", + "code": "IT.09.MI" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "https://www.istitutospallanzani.it" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Italian Experimental Institute Lazzaro Spallanzani", + "iso639": "en" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8865 1297" + ] + }, + "GRID": { + "preferred": "grid.433325.0", + "all": "grid.433325.0" + }, + "Wikidata": { + "preferred": "Q30255830", + "all": [ + "Q30255830" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/04ect1284.json b/v1.43/04ect1284.json new file mode 100644 index 000000000..79eb4aaba --- /dev/null +++ b/v1.43/04ect1284.json @@ -0,0 +1,90 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "AUKCAR" + ], + "links": [ + "https://www.ed.ac.uk/usher/aukcar" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Asthma UK Centre for Applied Research", + "wikipedia_url": null, + "addresses": [ + { + "lat": 55.95206, + "lng": -3.19648, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Edinburgh", + "geonames_city": { + "id": 2650225, + "city": "Edinburgh", + "geonames_admin1": { + "name": "Scotland", + "ascii_name": "Scotland", + "id": 2638360, + "code": "GB.SCT" + }, + "geonames_admin2": { + "name": "Edinburgh", + "id": 3333229, + "ascii_name": "Edinburgh", + "code": "GB.SCT.U8" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8306 8464", + "all": [ + "0000 0004 8306 8464" + ] + }, + "FundRef": { + "preferred": "501100014335", + "all": [ + "501100014335" + ] + } + }, + "established": 2014, + "relationships": [ + { + "label": "University of Edinburgh", + "type": "Parent", + "id": "https://ror.org/01nrxwf90" + } + ], + "email_address": null, + "id": "https://ror.org/04ect1284", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04emwm605.json b/v1.43/04emwm605.json new file mode 100644 index 000000000..c0fc24a73 --- /dev/null +++ b/v1.43/04emwm605.json @@ -0,0 +1,179 @@ +{ + "id": "https://ror.org/04emwm605", + "name": "Thales (France)", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Company" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.thalesgroup.com/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Thales_Group", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1754 8494" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100007034" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "277311" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1161666" + ] + }, + "GRID": { + "preferred": "grid.410363.3", + "all": "grid.410363.3" + } + } +} \ No newline at end of file diff --git a/v1.43/04eq6rh16.json b/v1.43/04eq6rh16.json new file mode 100644 index 000000000..3796182db --- /dev/null +++ b/v1.43/04eq6rh16.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/04eq6rh16", + "name": "Spanish Society of Biochemistry and Molecular Biology", + "email_address": null, + "ip_addresses": [], + "established": 1963, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://sebbm.es" + ], + "aliases": [], + "acronyms": [ + "SEBBM" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Sociedad Española de Bioquímica y Biología Molecular", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q67201734" + ] + }, + "GRID": { + "preferred": "grid.510867.d", + "all": "grid.510867.d" + } + } +} \ No newline at end of file diff --git a/v1.43/04ews3245.json b/v1.43/04ews3245.json new file mode 100644 index 000000000..8e2901d52 --- /dev/null +++ b/v1.43/04ews3245.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/04ews3245", + "name": "Deutsches Diabetes-Zentrum e.V.", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Heinrich Heine University Düsseldorf", + "type": "Parent", + "id": "https://ror.org/024z2rq82" + }, + { + "label": "Leibniz Association", + "type": "Parent", + "id": "https://ror.org/01n6r0e97" + } + ], + "addresses": [ + { + "lat": 51.22172, + "lng": 6.77616, + "state": null, + "state_code": null, + "city": "Düsseldorf", + "geonames_city": { + "id": 2934246, + "city": "Düsseldorf", + "geonames_admin1": { + "name": "North Rhine-Westphalia", + "id": 2861876, + "ascii_name": "North Rhine-Westphalia", + "code": "DE.07" + }, + "geonames_admin2": { + "name": "Düsseldorf District", + "id": 2934245, + "ascii_name": "Düsseldorf District", + "code": "DE.07.051" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://ddz.de" + ], + "aliases": [ + "Leibniz-Zentrum für Diabetes-Forschung an der Heinrich-Heine-Universität Düsseldorf", + "Leibniz Center for Diabetes Research at the Heinrich Heine University Düsseldorf", + "German Diabetes Center", + "DDFG e.V.", + "DDZ German Diabetes Center" + ], + "acronyms": [ + "DDZ" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Deutsches Diabetes-Zentrum", + "iso639": "de" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0492 602X" + ] + }, + "GRID": { + "preferred": "grid.429051.b", + "all": "grid.429051.b" + }, + "Wikidata": { + "preferred": "Q1205596", + "all": [ + "Q1205596" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/04f18cg29.json b/v1.43/04f18cg29.json new file mode 100644 index 000000000..f1cd1a992 --- /dev/null +++ b/v1.43/04f18cg29.json @@ -0,0 +1,89 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "IDI" + ], + "links": [ + "https://idi.org.il" + ], + "country": { + "country_name": "Israel", + "country_code": "IL" + }, + "name": "Israel Democracy Institute", + "wikipedia_url": null, + "addresses": [ + { + "lat": 31.78199, + "lng": 35.21961, + "state": null, + "state_code": null, + "country_geonames_id": 294640, + "city": "West Jerusalem", + "geonames_city": { + "id": 7498240, + "city": "West Jerusalem", + "geonames_admin1": { + "name": "Jerusalem", + "ascii_name": "Jerusalem", + "id": 293198, + "code": "IL.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0631 158X", + "all": [ + "0000 0004 0631 158X" + ] + }, + "Wikidata": { + "preferred": "Q12406716", + "all": [ + "Q12406716" + ] + } + }, + "established": 1991, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04f18cg29", + "labels": [ + { + "label": "המכון הישראלי לדמוקרטיה", + "iso639": "he" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04f6hmf16.json b/v1.43/04f6hmf16.json new file mode 100644 index 000000000..badc1b8db --- /dev/null +++ b/v1.43/04f6hmf16.json @@ -0,0 +1,137 @@ +{ + "id": "https://ror.org/04f6hmf16", + "name": "Languedoc-Roussillon Universities", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Other" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.languedoc-roussillon-universites.fr/index.php" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Languedoc-Roussillon_Universities", + "labels": [ + { + "label": "COMUE Languedoc-Roussillon Universités", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "47001016" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2476558" + ] + }, + "GRID": { + "preferred": "grid.468967.2", + "all": "grid.468967.2" + } + } +} \ No newline at end of file diff --git a/v1.43/04f7h3b65.json b/v1.43/04f7h3b65.json new file mode 100644 index 000000000..c619c1af1 --- /dev/null +++ b/v1.43/04f7h3b65.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/04f7h3b65", + "name": "University of San Andrés", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -34.45505, + "lng": -58.54614, + "state": null, + "state_code": null, + "city": "Victoria", + "geonames_city": { + "id": 3427500, + "city": "Victoria", + "geonames_admin1": { + "name": "Buenos Aires", + "id": 3435907, + "ascii_name": "Buenos Aires", + "code": "AR.01" + }, + "geonames_admin2": { + "name": "San Fernando Partido", + "id": 3429088, + "ascii_name": "San Fernando Partido", + "code": "AR.01.06749" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3865483 + } + ], + "links": [ + "https://www.udesa.edu.ar/" + ], + "aliases": [], + "acronyms": [ + "UDESA" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_San_Andr%C3%A9s", + "labels": [ + { + "label": "Universidad de San Andrés", + "iso639": "es" + }, + { + "label": "Université de san andrés", + "iso639": "fr" + } + ], + "country": { + "country_name": "Argentina", + "country_code": "AR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2325 2241" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "24972934" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5242548" + ] + }, + "GRID": { + "preferred": "grid.441741.3", + "all": "grid.441741.3" + } + } +} \ No newline at end of file diff --git a/v1.43/04fab7w85.json b/v1.43/04fab7w85.json new file mode 100644 index 000000000..8fec487b1 --- /dev/null +++ b/v1.43/04fab7w85.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [ + "Universidade de Coimbra Centro de Estudos Sociais", + "Centro de Estudos Sociais de Universidade de Coimbra", + "University of Coimbra Centre for Social Studies" + ], + "acronyms": [], + "links": [ + "https://www.ces.uc.pt" + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "name": "Centro de Estudos Sociais", + "wikipedia_url": null, + "addresses": [ + { + "lat": 40.20564, + "lng": -8.41955, + "state": null, + "state_code": null, + "country_geonames_id": 2264397, + "city": "Coimbra", + "geonames_city": { + "id": 2740637, + "city": "Coimbra", + "geonames_admin1": { + "name": "Coimbra", + "ascii_name": "Coimbra", + "id": 2740636, + "code": "PT.07" + }, + "geonames_admin2": { + "name": "Coimbra Municipality", + "id": 8010483, + "ascii_name": "Coimbra Municipality", + "code": "PT.07.0603" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "501100014071", + "all": [ + "501100014071" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "University of Coimbra", + "type": "Parent", + "id": "https://ror.org/04z8k9a98" + } + ], + "email_address": null, + "id": "https://ror.org/04fab7w85", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04feqxb79.json b/v1.43/04feqxb79.json new file mode 100644 index 000000000..e3c0f1778 --- /dev/null +++ b/v1.43/04feqxb79.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/04feqxb79", + "name": "Atomic Energy Organization of Iran", + "email_address": null, + "ip_addresses": [], + "established": 1974, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Nuclear Science and Technology Research Institute", + "type": "Child", + "id": "https://ror.org/05cebxq10" + } + ], + "addresses": [ + { + "lat": 35.69439, + "lng": 51.42151, + "state": null, + "state_code": null, + "city": "Tehran", + "geonames_city": { + "id": 112931, + "city": "Tehran", + "geonames_admin1": { + "name": "Tehran", + "id": 110791, + "ascii_name": "Tehran", + "code": "IR.26" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 130758 + } + ], + "links": [ + "http://www.aeoi.org.ir/Portal/Home/Default.aspx?CategoryID=3fe2bc57-c1a6-47dc-9d1d-e1290fe3ad77" + ], + "aliases": [], + "acronyms": [ + "AEOI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Atomic_Energy_Organization_of_Iran", + "labels": [ + { + "label": "سازمان انرژی اتمی ایران", + "iso639": "fa" + } + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0611 7306" + ] + }, + "FundRef": { + "preferred": "501100010604", + "all": [ + "501100010604" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "4667218" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1672389" + ] + }, + "GRID": { + "preferred": "grid.459846.2", + "all": "grid.459846.2" + } + } +} \ No newline at end of file diff --git a/v1.43/04fg9pk96.json b/v1.43/04fg9pk96.json new file mode 100644 index 000000000..0accdb538 --- /dev/null +++ b/v1.43/04fg9pk96.json @@ -0,0 +1,102 @@ +{ + "ip_addresses": [], + "aliases": [ + "Ministry of Education of Ontario", + "Ministry of Education, Government of Ontario", + "Ministère de l’Éducation, Gouvernement de l’Ontario", + "Ontario Ministry of Education", + "Ministère de l'Éducation de l'Ontario" + ], + "acronyms": [ + "EDU", + "MEO" + ], + "links": [ + "https://www.ontario.ca/page/ministry-education" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Ministry of Education", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Education_%28Ontario%29", + "addresses": [ + { + "lat": 43.70643, + "lng": -79.39864, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Toronto", + "geonames_city": { + "id": 6167865, + "city": "Toronto", + "geonames_admin1": { + "name": "Ontario", + "ascii_name": "Ontario", + "id": 6093943, + "code": "CA.08" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0721 7876", + "all": [ + "0000 0001 0721 7876" + ] + }, + "Wikidata": { + "preferred": "Q3315245", + "all": [ + "Q3315245" + ] + }, + "FundRef": { + "preferred": "100016329", + "all": [ + "100016329" + ] + } + }, + "established": 1999, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04fg9pk96", + "labels": [ + { + "label": "Ministère de l'Éducation", + "iso639": "fr" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04fpz9t23.json b/v1.43/04fpz9t23.json new file mode 100644 index 000000000..977d364ef --- /dev/null +++ b/v1.43/04fpz9t23.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/04fpz9t23", + "name": "BabelFamily", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 5901 7034" + ] + }, + "FundRef": { + "preferred": "501100005141", + "all": [ + "501100005141" + ] + }, + "GRID": { + "preferred": "grid.469326.c", + "all": "grid.469326.c" + } + } +} \ No newline at end of file diff --git a/v1.43/04frf8n21.json b/v1.43/04frf8n21.json new file mode 100644 index 000000000..10c7481e3 --- /dev/null +++ b/v1.43/04frf8n21.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/04frf8n21", + "name": "Kyrgyz-Türkish Manas Üniversity", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.87, + "lng": 74.59, + "state": null, + "state_code": null, + "city": "Bishkek", + "geonames_city": { + "id": 1528675, + "city": "Bishkek", + "geonames_admin1": { + "name": "Bishkek", + "id": 1528334, + "ascii_name": "Bishkek", + "code": "KG.01" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1527747 + } + ], + "links": [ + "https://manas.edu.kg" + ], + "aliases": [ + "Manas University", + "Kyrgyz-Turkish Manas University", + "Kırgızistan-Türkiye Manas Üniversitesi" + ], + "acronyms": [ + "KTMU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Manas_University", + "labels": [ + { + "label": "Кыргыз-Түрк «Манас» университети", + "iso639": "ky" + }, + { + "label": "Кыргызско-Турецкий университет «Манас»", + "iso639": "ru" + } + ], + "country": { + "country_name": "Kyrgyzstan", + "country_code": "KG" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0387 4627" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q52669993" + ] + }, + "GRID": { + "preferred": "grid.444269.9", + "all": "grid.444269.9" + } + } +} \ No newline at end of file diff --git a/v1.43/04frvgs13.json b/v1.43/04frvgs13.json new file mode 100644 index 000000000..87fc59e13 --- /dev/null +++ b/v1.43/04frvgs13.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/04frvgs13", + "name": "Ontario Veterinary College", + "email_address": null, + "ip_addresses": [], + "established": 1862, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of Guelph", + "type": "Parent", + "id": "https://ror.org/01r7awg59" + }, + { + "label": "OVC Pet Trust", + "type": "Child", + "id": "https://ror.org/02stdqb15" + } + ], + "addresses": [ + { + "lat": 43.54594, + "lng": -80.25599, + "state": null, + "state_code": null, + "city": "Guelph", + "geonames_city": { + "id": 5967629, + "city": "Guelph", + "geonames_admin1": { + "name": "Ontario", + "id": 6093943, + "ascii_name": "Ontario", + "code": "CA.08" + }, + "geonames_admin2": { + "name": "Wellington County", + "id": 6177913, + "ascii_name": "Wellington County", + "code": "CA.08.3523" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "https://ovc.uoguelph.ca" + ], + "aliases": [ + "University of Guelph Ontario Veterinary College" + ], + "acronyms": [ + "OVC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ontario_Veterinary_College", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2167 9954", + "all": [ + "0000 0001 2167 9954" + ] + }, + "FundRef": { + "preferred": "100014116", + "all": [ + "100014116" + ] + }, + "Wikidata": { + "preferred": "Q7094936", + "all": [ + "Q7094936" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/04fzs4293.json b/v1.43/04fzs4293.json new file mode 100644 index 000000000..90175084d --- /dev/null +++ b/v1.43/04fzs4293.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [ + "Motor Neuron Disease Scotland" + ], + "acronyms": [], + "links": [ + "https://mndscotland.org.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "MND Scotland", + "wikipedia_url": null, + "addresses": [ + { + "lat": 55.86515, + "lng": -4.25763, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Glasgow", + "geonames_city": { + "id": 2648579, + "city": "Glasgow", + "geonames_admin1": { + "name": "Scotland", + "ascii_name": "Scotland", + "id": 2638360, + "code": "GB.SCT" + }, + "geonames_admin2": { + "name": "Glasgow City", + "id": 3333231, + "ascii_name": "Glasgow City", + "code": "GB.SCT.V2" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0629 7087", + "all": [ + "0000 0004 0629 7087" + ] + }, + "FundRef": { + "preferred": "100011776", + "all": [ + "100011776" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04fzs4293", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04fzwnh64.json b/v1.43/04fzwnh64.json new file mode 100644 index 000000000..a6002a176 --- /dev/null +++ b/v1.43/04fzwnh64.json @@ -0,0 +1,124 @@ +{ + "id": "https://ror.org/04fzwnh64", + "name": "Northwestern Medicine", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "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" + } + ], + "addresses": [ + { + "lat": 41.85003, + "lng": -87.65005, + "state": null, + "state_code": null, + "city": "Chicago", + "geonames_city": { + "id": 4887398, + "city": "Chicago", + "geonames_admin1": { + "name": "Illinois", + "id": 4896861, + "ascii_name": "Illinois", + "code": "US.IL" + }, + "geonames_admin2": { + "name": "Cook", + "id": 4888671, + "ascii_name": "Cook", + "code": "US.IL.031" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.nm.org/" + ], + "aliases": [ + "Northwestern Memorial HealthCare" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 4683 9645" + ] + }, + "GRID": { + "preferred": "grid.490348.2", + "all": "grid.490348.2" + }, + "Wikidata": { + "preferred": "Q50036890", + "all": [ + "Q50036890" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/04g1a0w27.json b/v1.43/04g1a0w27.json new file mode 100644 index 000000000..4f37b0c49 --- /dev/null +++ b/v1.43/04g1a0w27.json @@ -0,0 +1,92 @@ +{ + "ip_addresses": [], + "aliases": [ + "University of Oklahoma - Tulsa Schusterman Center", + "OU - Tulsa Schusterman Center", + "University of Oklahoma at Tulsa" + ], + "acronyms": [], + "links": [ + "https://www.ou.edu/tulsa" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "University of Oklahoma - Tulsa", + "wikipedia_url": null, + "addresses": [ + { + "lat": 36.15398, + "lng": -95.99277, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Tulsa", + "geonames_city": { + "id": 4553433, + "city": "Tulsa", + "geonames_admin1": { + "name": "Oklahoma", + "ascii_name": "Oklahoma", + "id": 4544379, + "code": "US.OK" + }, + "geonames_admin2": { + "name": "Tulsa", + "id": 4553440, + "ascii_name": "Tulsa", + "code": "US.OK.143" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0386 8892", + "all": [ + "0000 0004 0386 8892" + ] + }, + "Wikidata": { + "preferred": "Q39056078", + "all": [ + "Q39056078" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "University of Oklahoma", + "type": "Parent", + "id": "https://ror.org/02aqsxs83" + } + ], + "email_address": null, + "id": "https://ror.org/04g1a0w27", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04gww2j56.json b/v1.43/04gww2j56.json new file mode 100644 index 000000000..ad0a1d7bb --- /dev/null +++ b/v1.43/04gww2j56.json @@ -0,0 +1,96 @@ +{ + "ip_addresses": [], + "aliases": [ + "Aage og Johanne Louis-Hansens Familiefond", + "Aage og Johanne Louis-Hansen ApS" + ], + "acronyms": [], + "links": [ + "https://louis-hansenfonden.dk" + ], + "country": { + "country_name": "Denmark", + "country_code": "DK" + }, + "name": "Aage og Johanne Louis-Hansens Fond", + "wikipedia_url": null, + "addresses": [ + { + "lat": 55.67594, + "lng": 12.56553, + "state": null, + "state_code": null, + "country_geonames_id": 2623032, + "city": "Copenhagen", + "geonames_city": { + "id": 2618425, + "city": "Copenhagen", + "geonames_admin1": { + "name": "Capital Region", + "ascii_name": "Capital Region", + "id": 6418538, + "code": "DK.17" + }, + "geonames_admin2": { + "name": "Copenhagen", + "id": 2618424, + "ascii_name": "Copenhagen", + "code": "DK.17.101" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7478 7897", + "all": [ + "0000 0004 7478 7897" + ] + }, + "Wikidata": { + "preferred": "Q27430020", + "all": [ + "Q27430020" + ] + }, + "FundRef": { + "preferred": "501100010344", + "all": [ + "501100010344" + ] + } + }, + "established": 1982, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04gww2j56", + "labels": [ + { + "label": "Aage and Johanne Louis-Hansen's Foundation", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04gz5mr64.json b/v1.43/04gz5mr64.json new file mode 100644 index 000000000..8d2b1aef4 --- /dev/null +++ b/v1.43/04gz5mr64.json @@ -0,0 +1,81 @@ +{ + "ip_addresses": [], + "aliases": [ + "National Institute for the Humanities and Social Sciences, South Africa" + ], + "acronyms": [ + "NIHSS" + ], + "links": [ + "https://www.nihss.ac.za" + ], + "country": { + "country_name": "South Africa", + "country_code": "ZA" + }, + "name": "National Institute for the Humanities and Social Sciences", + "wikipedia_url": null, + "addresses": [ + { + "lat": -26.20227, + "lng": 28.04363, + "state": null, + "state_code": null, + "country_geonames_id": 953987, + "city": "Johannesburg", + "geonames_city": { + "id": 993800, + "city": "Johannesburg", + "geonames_admin1": { + "name": "Gauteng", + "ascii_name": "Gauteng", + "id": 1085594, + "code": "ZA.06" + }, + "geonames_admin2": { + "name": "City of Johannesburg Metropolitan Municipality", + "id": 8347354, + "ascii_name": "City of Johannesburg Metropolitan Municipality", + "code": "ZA.06.JHB" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility", + "Government" + ], + "external_ids": { + "FundRef": { + "preferred": "100016961", + "all": [ + "100016961" + ] + } + }, + "established": 2013, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04gz5mr64", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04h7zpy51.json b/v1.43/04h7zpy51.json new file mode 100644 index 000000000..dc8d33eb3 --- /dev/null +++ b/v1.43/04h7zpy51.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://www.isep.pt" + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "name": "Instituto Superior de Engenharia do Porto", + "wikipedia_url": "https://en.wikipedia.org/wiki/Instituto_Superior_de_Engenharia_do_Porto", + "addresses": [ + { + "lat": 41.17289, + "lng": -8.59931, + "state": null, + "state_code": null, + "country_geonames_id": 2264397, + "city": "Paranhos", + "geonames_city": { + "id": 2736680, + "city": "Paranhos", + "geonames_admin1": { + "name": "Porto", + "ascii_name": "Porto", + "id": 2735941, + "code": "PT.17" + }, + "geonames_admin2": { + "name": "Porto", + "id": 6458924, + "ascii_name": "Porto", + "code": "PT.17.1312" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q3152860", + "all": [ + "Q3152860" + ] + } + }, + "established": 1852, + "relationships": [ + { + "label": "Polytechnic Institute of Porto", + "type": "Parent", + "id": "https://ror.org/04988re48" + } + ], + "email_address": null, + "id": "https://ror.org/04h7zpy51", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04hh1k009.json b/v1.43/04hh1k009.json new file mode 100644 index 000000000..c22ebb960 --- /dev/null +++ b/v1.43/04hh1k009.json @@ -0,0 +1,90 @@ +{ + "ip_addresses": [], + "aliases": [ + "International Progressive Multiple Sclerosis Alliance" + ], + "acronyms": [], + "links": [ + "https://www.progressivemsalliance.org" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "International Progressive MS Alliance", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0281 4136", + "all": [ + "0000 0005 0281 4136" + ] + }, + "FundRef": { + "preferred": "100017147", + "all": [ + "100017147" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Multiple Sclerosis International Federation", + "type": "Parent", + "id": "https://ror.org/052gp0981" + } + ], + "email_address": null, + "id": "https://ror.org/04hh1k009", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04hp1ky92.json b/v1.43/04hp1ky92.json new file mode 100644 index 000000000..89699aded --- /dev/null +++ b/v1.43/04hp1ky92.json @@ -0,0 +1,101 @@ +{ + "ip_addresses": [], + "aliases": [ + "NODES - Nord Ovest Digitale E Sostenibile", + "Nord Ovest Digitale E Sostenibile", + "HUB NODES S.c.a.r.l" + ], + "acronyms": [ + "NODES" + ], + "links": [ + "https://www.ecs-nodes.eu" + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "name": "NODES S.c.a.r.l", + "wikipedia_url": null, + "addresses": [ + { + "lat": 45.07049, + "lng": 7.68682, + "state": null, + "state_code": null, + "country_geonames_id": 3175395, + "city": "Turin", + "geonames_city": { + "id": 3165524, + "city": "Turin", + "geonames_admin1": { + "name": "Piedmont", + "ascii_name": "Piedmont", + "id": 3170831, + "code": "IT.12" + }, + "geonames_admin2": { + "name": "Turin", + "id": 3165523, + "ascii_name": "Turin", + "code": "IT.12.TO" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": {}, + "established": 2021, + "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" + } + ], + "email_address": null, + "id": "https://ror.org/04hp1ky92", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04htg4q18.json b/v1.43/04htg4q18.json new file mode 100644 index 000000000..2a7040b4d --- /dev/null +++ b/v1.43/04htg4q18.json @@ -0,0 +1,80 @@ +{ + "ip_addresses": [], + "aliases": [ + "زانکۆی چەرموو" + ], + "acronyms": [ + "ChU" + ], + "links": [ + "https://chu.edu.iq" + ], + "country": { + "country_name": "Iraq", + "country_code": "IQ" + }, + "name": "Charmo University", + "wikipedia_url": null, + "addresses": [ + { + "lat": 35.56496, + "lng": 45.4329, + "state": null, + "state_code": null, + "country_geonames_id": 99237, + "city": "Sulaymaniyah", + "geonames_city": { + "id": 98463, + "city": "Sulaymaniyah", + "geonames_admin1": { + "name": "Sulaymaniyah", + "ascii_name": "Sulaymaniyah", + "id": 98465, + "code": "IQ.05" + }, + "geonames_admin2": { + "name": "Qaḑā’ as Sulaymānīyah", + "id": 98464, + "ascii_name": "Qaḑā’ as Sulaymānīyah", + "code": "IQ.05.98464" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0277 0727", + "all": [ + "0000 0005 0277 0727" + ] + } + }, + "established": 2014, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04htg4q18", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04hwsx993.json b/v1.43/04hwsx993.json new file mode 100644 index 000000000..11a66ba86 --- /dev/null +++ b/v1.43/04hwsx993.json @@ -0,0 +1,88 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://www.kerkut-trust.org.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Gerald Kerkut Charitable Trust", + "wikipedia_url": null, + "addresses": [ + { + "lat": 50.90395, + "lng": -1.40428, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Southampton", + "geonames_city": { + "id": 2637487, + "city": "Southampton", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Southampton", + "id": 3333196, + "ascii_name": "Southampton", + "code": "GB.ENG.M4" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6428 5500", + "all": [ + "0000 0004 6428 5500" + ] + }, + "Wikidata": { + "preferred": "Q45136919", + "all": [ + "Q45136919" + ] + }, + "FundRef": { + "preferred": "100012166", + "all": [ + "100012166" + ] + } + }, + "established": 1968, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04hwsx993", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04jhswv08.json b/v1.43/04jhswv08.json new file mode 100644 index 000000000..2a21a364a --- /dev/null +++ b/v1.43/04jhswv08.json @@ -0,0 +1,117 @@ +{ + "id": "https://ror.org/04jhswv08", + "name": "Fundação Oswaldo Cruz", + "email_address": null, + "ip_addresses": [], + "established": 1900, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": -22.90642, + "lng": -43.18223, + "state": null, + "state_code": null, + "city": "Rio de Janeiro", + "geonames_city": { + "id": 3451190, + "city": "Rio de Janeiro", + "geonames_admin1": { + "name": "Rio de Janeiro", + "id": 3451189, + "ascii_name": "Rio de Janeiro", + "code": "BR.21" + }, + "geonames_admin2": { + "name": "Rio de Janeiro", + "id": 6322060, + "ascii_name": "Rio de Janeiro", + "code": "BR.21.3304557" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3469034 + } + ], + "links": [ + "https://portal.fiocruz.br" + ], + "aliases": [], + "acronyms": [ + "FIOCRUZ" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Oswaldo_Cruz_Foundation", + "labels": [ + { + "label": "Oswaldo Cruz Foundation", + "iso639": "en" + } + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0723 0931" + ] + }, + "FundRef": { + "preferred": "501100006507", + "all": [ + "501100006507", + "501100006508" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "1557626" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2474815" + ] + }, + "GRID": { + "preferred": "grid.418068.3", + "all": "grid.418068.3" + } + } +} \ No newline at end of file diff --git a/v1.43/04k1qv985.json b/v1.43/04k1qv985.json new file mode 100644 index 000000000..d2287cf6b --- /dev/null +++ b/v1.43/04k1qv985.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04k1qv985", + "name": "Lipotec (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Lubrizol Life Science Health (United States)", + "type": "Successor", + "id": "https://ror.org/03kp1tb17" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.lipotec.com/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 6096 8320" + ] + }, + "GRID": { + "preferred": "grid.509567.8", + "all": "grid.509567.8" + } + } +} \ No newline at end of file diff --git a/v1.43/04k8k6n84.json b/v1.43/04k8k6n84.json new file mode 100644 index 000000000..a01f9eacb --- /dev/null +++ b/v1.43/04k8k6n84.json @@ -0,0 +1,145 @@ +{ + "id": "https://ror.org/04k8k6n84", + "name": "University of Upper Alsace", + "email_address": "", + "ip_addresses": [], + "established": 1975, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 47.75205, + "lng": 7.32866, + "state": null, + "state_code": null, + "city": "Mulhouse", + "geonames_city": { + "id": 2991214, + "city": "Mulhouse", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Haut-Rhin", + "id": 3013663, + "ascii_name": "Haut-Rhin", + "code": "FR.44.68" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.serfa.fr/" + ], + "aliases": [], + "acronyms": [ + "UHA" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Upper_Alsace", + "labels": [ + { + "label": "Université de Haute-Alsace", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0473 5039" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "14271867" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q280183" + ] + }, + "GRID": { + "preferred": "grid.9156.b", + "all": "grid.9156.b" + } + } +} \ No newline at end of file diff --git a/v1.43/04kdfz702.json b/v1.43/04kdfz702.json new file mode 100644 index 000000000..e76855109 --- /dev/null +++ b/v1.43/04kdfz702.json @@ -0,0 +1,389 @@ +{ + "id": "https://ror.org/04kdfz702", + "name": "Institut National des Sciences de l'Univers", + "email_address": null, + "ip_addresses": [], + "established": 1985, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "French National Centre for Scientific Research", + "type": "Parent", + "id": "https://ror.org/02feahw73" + }, + { + "label": "Astrophysique, Instrumentation et Modélisation", + "type": "Child", + "id": "https://ror.org/0015h8611" + }, + { + "label": "Besançon Astronomical Observatory", + "type": "Child", + "id": "https://ror.org/032582s48" + }, + { + "label": "Centre National de Recherches Météorologiques", + "type": "Child", + "id": "https://ror.org/004rej139" + }, + { + "label": "Centre d'Études Spatiales de la Biosphère", + "type": "Child", + "id": "https://ror.org/01225hq90" + }, + { + "label": "Centre de Formation et de Recherche sur les Environnements Méditerranéens", + "type": "Child", + "id": "https://ror.org/01jt5ms28" + }, + { + "label": "Centre de Recherches Pétrographiques et Géochimiques", + "type": "Child", + "id": "https://ror.org/011nqat45" + }, + { + "label": "Centre for Astronomical Reseach of Lyon", + "type": "Child", + "id": "https://ror.org/0084x3h80" + }, + { + "label": "Centre for Research and Teaching in Environmental Geoscience", + "type": "Child", + "id": "https://ror.org/01pa4h393" + }, + { + "label": "Division Technique de I'INSU", + "type": "Child", + "id": "https://ror.org/01s48fc08" + }, + { + "label": "Environnements et Paléoenvironnements Océaniques et Continentaux", + "type": "Child", + "id": "https://ror.org/01tsa0x55" + }, + { + "label": "Galaxies, Etoiles, Physique et Instrumentation", + "type": "Child", + "id": "https://ror.org/01920cw75" + }, + { + "label": "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" + } + ], + "addresses": [ + { + "lat": 48.79395, + "lng": 2.49323, + "state": null, + "state_code": null, + "city": "Saint-Maur-des-Fossés", + "geonames_city": { + "id": 2978179, + "city": "Saint-Maur-des-Fossés", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Val-de-Marne", + "id": 2971090, + "ascii_name": "Val-de-Marne", + "code": "FR.11.94" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.insu.cnrs.fr/en" + ], + "aliases": [], + "acronyms": [ + "INSU" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2154 1736" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100004617" + ] + }, + "GRID": { + "preferred": "grid.452348.c", + "all": "grid.452348.c" + } + } +} \ No newline at end of file diff --git a/v1.43/04kn56m50.json b/v1.43/04kn56m50.json new file mode 100644 index 000000000..f92c5b429 --- /dev/null +++ b/v1.43/04kn56m50.json @@ -0,0 +1,103 @@ +{ + "ip_addresses": [], + "aliases": [ + "China Academy of Chinese Medical Sciences Institute of Materia Medica" + ], + "acronyms": [ + "IMM", + "CAMS&PUMC IMM", + "CAMS IMM" + ], + "links": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "Institute of Chinese Materia Medica", + "wikipedia_url": "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", + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "name": "Beijing", + "ascii_name": "Beijing", + "id": 2038349, + "code": "CN.22" + }, + "geonames_admin2": { + "name": "Beijing", + "id": 11876380, + "ascii_name": "Beijing", + "code": "CN.22.11876380" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 4670 2593", + "all": [ + "0000 0004 4670 2593" + ] + }, + "Wikidata": { + "preferred": "Q105169356", + "all": [ + "Q105169356" + ] + }, + "FundRef": { + "preferred": "501100002418", + "all": [ + "501100002418" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Chinese Academy of Medical Sciences & Peking Union Medical College", + "type": "Parent", + "id": "https://ror.org/02drdmm93" + } + ], + "email_address": null, + "id": "https://ror.org/04kn56m50", + "labels": [ + { + "label": "中国医学科学院药物研究所", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04kpdmm83.json b/v1.43/04kpdmm83.json new file mode 100644 index 000000000..748bd04e0 --- /dev/null +++ b/v1.43/04kpdmm83.json @@ -0,0 +1,87 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://ardakan.ac.ir" + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "name": "Ardakan University", + "wikipedia_url": null, + "addresses": [ + { + "lat": 32.31001, + "lng": 54.01747, + "state": null, + "state_code": null, + "country_geonames_id": 130758, + "city": "Ardakān", + "geonames_city": { + "id": 143073, + "city": "Ardakān", + "geonames_admin1": { + "name": "Yazd", + "ascii_name": "Yazd", + "id": 111821, + "code": "IR.40" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7425 0037", + "all": [ + "0000 0004 7425 0037" + ] + }, + "FundRef": { + "preferred": "100019272", + "all": [ + "100019272" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04kpdmm83", + "labels": [ + { + "label": "دانشگاه اردکان", + "iso639": "fa" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04m2z2476.json b/v1.43/04m2z2476.json new file mode 100644 index 000000000..532d77c76 --- /dev/null +++ b/v1.43/04m2z2476.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "The Aga Khan University in the United Kingdom", + "Aga Khan University in the United Kingdom" + ], + "acronyms": [], + "links": [ + "https://www.aku.edu" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "The Aga Khan University (International) in the United Kingdom", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": {}, + "established": null, + "relationships": [ + { + "label": "Aga Khan University", + "type": "Parent", + "id": "https://ror.org/03gd0dm95" + } + ], + "email_address": null, + "id": "https://ror.org/04m2z2476", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04ma29860.json b/v1.43/04ma29860.json new file mode 100644 index 000000000..ecf8a2ac3 --- /dev/null +++ b/v1.43/04ma29860.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04ma29860", + "name": "Fishing in Ireland", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Inland Fisheries Ireland", + "type": "Successor", + "id": "https://ror.org/022rydv31" + } + ], + "addresses": [ + { + "lat": 53.33306, + "lng": -6.24889, + "state": null, + "state_code": null, + "city": "Dublin", + "geonames_city": { + "id": 2964574, + "city": "Dublin", + "geonames_admin1": { + "name": "Leinster", + "id": 7521314, + "ascii_name": "Leinster", + "code": "IE.L" + }, + "geonames_admin2": { + "name": "Dublin City", + "id": 7778677, + "ascii_name": "Dublin City", + "code": "IE.L.33" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2963597 + } + ], + "links": [ + "http://www.fishinginireland.info/" + ], + "aliases": [ + "Central Fisheries Board" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Ireland", + "country_code": "IE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0510 4503" + ] + }, + "GRID": { + "preferred": "grid.494077.9", + "all": "grid.494077.9" + } + } +} \ No newline at end of file diff --git a/v1.43/04marky29.json b/v1.43/04marky29.json new file mode 100644 index 000000000..aaa4615bb --- /dev/null +++ b/v1.43/04marky29.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/04marky29", + "name": "Bundesministerium für Klimaschutz, Umwelt, Energie, Mobilität, Innovation und Technologie", + "email_address": null, + "ip_addresses": [], + "established": 1970, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "name": "Vienna", + "id": 2761367, + "ascii_name": "Vienna", + "code": "AT.09" + }, + "geonames_admin2": { + "name": "Vienna", + "id": 2761333, + "ascii_name": "Vienna", + "code": "AT.09.900" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2782113 + } + ], + "links": [ + "http://bmk.gv.at" + ], + "aliases": [ + "Ministry of Transport", + "Federal Ministry for Climate Action, Environment, Energy, Mobility, Innovation and Technology", + "Austrian Ministry of Climate Action, Environment, Energy, Mobility, Innovation and Technology", + "Federal Ministry for Transport, Innovation and Technology", + "Bundesministerium für Verkehr, Innovation und Technologie" + ], + "acronyms": [ + "BMVIT" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Transport_(Austria)", + "labels": [ + { + "label": "Ministry of Climate Action, Environment, Energy, Mobility, Innovation and Technology", + "iso639": "en" + } + ], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0005 1089 9897", + "all": [ + "0000 0004 0515 0868", + "0000 0005 1089 9897" + ] + }, + "FundRef": { + "preferred": "100018774", + "all": [ + "501100004956", + "100018774" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q871765" + ] + }, + "GRID": { + "preferred": "grid.454185.9", + "all": "grid.454185.9" + } + } +} \ No newline at end of file diff --git a/v1.43/04mb62065.json b/v1.43/04mb62065.json new file mode 100644 index 000000000..b78c18081 --- /dev/null +++ b/v1.43/04mb62065.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/04mb62065", + "name": "Direktorat Riset Dan Pengabdian Kepada Masyarakat", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "National Research and Innovation Agency", + "type": "Parent", + "id": "https://ror.org/02hmjzt55" + } + ], + "addresses": [ + { + "lat": -7.24917, + "lng": 112.75083, + "state": null, + "state_code": null, + "city": "Surabaya", + "geonames_city": { + "id": 1625822, + "city": "Surabaya", + "geonames_admin1": { + "name": "East Java", + "id": 1642668, + "ascii_name": "East Java", + "code": "ID.08" + }, + "geonames_admin2": { + "name": "Kota Surabaya", + "id": 1625820, + "ascii_name": "Kota Surabaya", + "code": "ID.08.3578" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1643084 + } + ], + "links": [], + "aliases": [ + "DRPM – Kemenristekdikti", + "Directorate of Research and Community Service – Ministry of Research, Technology and Higher Education" + ], + "acronyms": [ + "DRPM" + ], + "status": "active", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "Indonesia", + "country_code": "ID" + }, + "external_ids": { + "FundRef": { + "preferred": "501100016139", + "all": [ + "501100016139", + "501100014823" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/04n0g0b29.json b/v1.43/04n0g0b29.json new file mode 100644 index 000000000..ed6cb88f6 --- /dev/null +++ b/v1.43/04n0g0b29.json @@ -0,0 +1,187 @@ +{ + "id": "https://ror.org/04n0g0b29", + "name": "Pompeu Fabra University", + "email_address": null, + "ip_addresses": [], + "established": 1990, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.upf.edu/en/" + ], + "aliases": [ + "Universitat Pompeu Fabra, Barcelona" + ], + "acronyms": [ + "UPF" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Pompeu_Fabra_University", + "labels": [ + { + "label": "Universitat Pompeu Fabra", + "iso639": "ca" + }, + { + "label": "Universidad Pompeu Fabra", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2172 2676" + ] + }, + "FundRef": { + "preferred": "100018967", + "all": [ + "100018967" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "63872" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q24543" + ] + }, + "GRID": { + "preferred": "grid.5612.0", + "all": "grid.5612.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..3a4536e65 --- /dev/null +++ b/v1.43/04n3e7v86.json @@ -0,0 +1,81 @@ +{ + "ip_addresses": [], + "aliases": [ + "The Fourth Affiliated Hospital of Soochow University", + "Suzhou Dushu Lake Hospital", + "苏州大学附属第四医院", + "苏州市独墅湖医院" + ], + "acronyms": [ + "SDH" + ], + "links": [ + "https://www.sdhmdp.com" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "The Fourth Affiliated Hospital of Soochow University (Suzhou Dushu Lake Hospital)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 31.30408, + "lng": 120.59538, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Suzhou", + "geonames_city": { + "id": 1886760, + "city": "Suzhou", + "geonames_admin1": { + "name": "Jiangsu", + "ascii_name": "Jiangsu", + "id": 1806260, + "code": "CN.04" + }, + "geonames_admin2": { + "name": "Suzhou Shi", + "id": 1881771, + "ascii_name": "Suzhou Shi", + "code": "CN.04.3205" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": {}, + "established": 2020, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04n3e7v86", + "labels": [ + { + "label": "苏州大学附属第四医院 (苏州市独墅湖医院)", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04nm1cv11.json b/v1.43/04nm1cv11.json new file mode 100644 index 000000000..e8df2f80a --- /dev/null +++ b/v1.43/04nm1cv11.json @@ -0,0 +1,154 @@ +{ + "id": "https://ror.org/04nm1cv11", + "name": "University Hospitals Bristol NHS Foundation Trust", + "email_address": "", + "ip_addresses": [], + "established": 1991, + "types": [ + "Healthcare" + ], + "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" + } + ], + "addresses": [ + { + "lat": 51.45523, + "lng": -2.59665, + "state": null, + "state_code": null, + "city": "Bristol", + "geonames_city": { + "id": 2654675, + "city": "Bristol", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bristol", + "id": 3333134, + "ascii_name": "Bristol", + "code": "GB.ENG.B7" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.uhbristol.nhs.uk/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_Hospitals_Bristol_NHS_Foundation_Trust", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0380 7336" + ] + }, + "FundRef": { + "preferred": "100012141", + "all": [ + "100012141" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "40907549" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q17028004" + ] + }, + "GRID": { + "preferred": "grid.410421.2", + "all": "grid.410421.2" + } + } +} \ No newline at end of file diff --git a/v1.43/04nqtfa57.json b/v1.43/04nqtfa57.json new file mode 100644 index 000000000..36d7a5e37 --- /dev/null +++ b/v1.43/04nqtfa57.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/04nqtfa57", + "name": "Technical Services and Supplies (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.sts-e.com/index.php?lang=en" + ], + "aliases": [], + "acronyms": [ + "STS" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "Servicios Técnicos y Suministros", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.494474.e", + "all": "grid.494474.e" + } + } +} \ No newline at end of file diff --git a/v1.43/04ns7ha44.json b/v1.43/04ns7ha44.json new file mode 100644 index 000000000..e31d455e8 --- /dev/null +++ b/v1.43/04ns7ha44.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [ + "Steven and Alexandra Cohen Foundation" + ], + "acronyms": [], + "links": [ + "https://www.steveandalex.org" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Steven & Alexandra Cohen Foundation", + "wikipedia_url": null, + "addresses": [ + { + "lat": 41.05343, + "lng": -73.53873, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Stamford", + "geonames_city": { + "id": 4843564, + "city": "Stamford", + "geonames_admin1": { + "name": "Connecticut", + "ascii_name": "Connecticut", + "id": 4831725, + "code": "US.CT" + }, + "geonames_admin2": { + "name": "Fairfield", + "id": 4834162, + "ascii_name": "Fairfield", + "code": "US.CT.001" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q96272921", + "all": [ + "Q96272921" + ] + }, + "FundRef": { + "preferred": "100016230", + "all": [ + "100016230" + ] + } + }, + "established": 2001, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04ns7ha44", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04nwt4928.json b/v1.43/04nwt4928.json new file mode 100644 index 000000000..bd9f8fbd9 --- /dev/null +++ b/v1.43/04nwt4928.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04nwt4928", + "name": "Ayuntamiento de Valladolid", + "email_address": null, + "ip_addresses": [], + "established": 1908, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.65518, + "lng": -4.72372, + "state": null, + "state_code": null, + "city": "Valladolid", + "geonames_city": { + "id": 3106672, + "city": "Valladolid", + "geonames_admin1": { + "name": "Castille and León", + "id": 3336900, + "ascii_name": "Castille and León", + "code": "ES.55" + }, + "geonames_admin2": { + "name": "Valladolid", + "id": 3106671, + "ascii_name": "Valladolid", + "code": "ES.55.VA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.valladolid.es" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 1789 4151", + "all": [ + "0000 0004 1789 4151" + ] + }, + "GRID": { + "preferred": "grid.423855.d", + "all": "grid.423855.d" + } + } +} \ No newline at end of file diff --git a/v1.43/04q4ppz72.json b/v1.43/04q4ppz72.json new file mode 100644 index 000000000..6b88a5480 --- /dev/null +++ b/v1.43/04q4ppz72.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/04q4ppz72", + "name": "Complejo Hospitalario Universitario de Toledo", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Healthcare" + ], + "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" + } + ], + "addresses": [ + { + "lat": 39.8581, + "lng": -4.02263, + "state": null, + "state_code": null, + "city": "Toledo", + "geonames_city": { + "id": 2510409, + "city": "Toledo", + "geonames_admin1": { + "name": "Castille-La Mancha", + "id": 2593111, + "ascii_name": "Castille-La Mancha", + "code": "ES.54" + }, + "geonames_admin2": { + "name": "Toledo", + "id": 2510407, + "ascii_name": "Toledo", + "code": "ES.54.TO" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://toledo.sanidad.castillalamancha.es" + ], + "aliases": [ + "Complejo Hospitalario de Toledo" + ], + "acronyms": [ + "CHT", + "CHUT" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1766 1075" + ] + }, + "GRID": { + "preferred": "grid.418888.5", + "all": "grid.418888.5" + } + } +} \ No newline at end of file diff --git a/v1.43/04qdwq068.json b/v1.43/04qdwq068.json new file mode 100644 index 000000000..207354988 --- /dev/null +++ b/v1.43/04qdwq068.json @@ -0,0 +1,87 @@ +{ + "ip_addresses": [], + "aliases": [ + "QuantIC – UK Quantum Technology Hub in Quantum Enhanced Imaging", + "QuantIC – UK QT Hub in Quantum Enhanced Imaging", + "QuantIC Advanced Research Centre", + "QuantIC ARC" + ], + "acronyms": [], + "links": [ + "https://www.quantic.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "QuantIC", + "wikipedia_url": null, + "addresses": [ + { + "lat": 55.86515, + "lng": -4.25763, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Glasgow", + "geonames_city": { + "id": 2648579, + "city": "Glasgow", + "geonames_admin1": { + "name": "Scotland", + "ascii_name": "Scotland", + "id": 2638360, + "code": "GB.SCT" + }, + "geonames_admin2": { + "name": "Glasgow City", + "id": 3333231, + "ascii_name": "Glasgow City", + "code": "GB.SCT.V2" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "100012927", + "all": [ + "100012927" + ] + } + }, + "established": 2014, + "relationships": [ + { + "label": "University of Glasgow", + "type": "Parent", + "id": "https://ror.org/00vtgdb53" + } + ], + "email_address": null, + "id": "https://ror.org/04qdwq068", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04qekdn52.json b/v1.43/04qekdn52.json new file mode 100644 index 000000000..8a562423c --- /dev/null +++ b/v1.43/04qekdn52.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "CISSS de la Montérégie-Centre" + ], + "acronyms": [], + "links": [ + "https://www.santemonteregie.qc.ca/centre" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Centre intégré de santé et de services sociaux de la Montérégie-Centre", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux", + "addresses": [ + { + "lat": 45.5152, + "lng": -73.46818, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Longueuil", + "geonames_city": { + "id": 6059891, + "city": "Longueuil", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Montérégie", + "id": 6076966, + "ascii_name": "Montérégie", + "code": "CA.10.16" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8064 4091", + "all": [ + "0000 0004 8064 4091" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04qekdn52", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04qtk4r03.json b/v1.43/04qtk4r03.json new file mode 100644 index 000000000..086bea387 --- /dev/null +++ b/v1.43/04qtk4r03.json @@ -0,0 +1,72 @@ +{ + "ip_addresses": [], + "aliases": [ + "Institute of History “Ali Hadri” Prishtina" + ], + "acronyms": [], + "links": [ + "https://ih-rks.org" + ], + "country": { + "country_name": "Kosovo", + "country_code": "XK" + }, + "name": "Instituti i Historisë \"Ali Hadri\" Prishtinë", + "wikipedia_url": null, + "addresses": [ + { + "lat": 42.67272, + "lng": 21.16688, + "state": null, + "state_code": null, + "country_geonames_id": 831053, + "city": "Pristina", + "geonames_city": { + "id": 786714, + "city": "Pristina", + "geonames_admin1": { + "name": "Pristina", + "ascii_name": "Pristina", + "id": 10097360, + "code": "XK.10097360" + }, + "geonames_admin2": { + "name": "Komuna e Prishtinës", + "id": 786713, + "ascii_name": "Komuna e Prishtinës", + "code": "XK.10097360.20" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility", + "Government" + ], + "external_ids": {}, + "established": 1967, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04qtk4r03", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04qxsrb28.json b/v1.43/04qxsrb28.json new file mode 100644 index 000000000..381ae453b --- /dev/null +++ b/v1.43/04qxsrb28.json @@ -0,0 +1,128 @@ +{ + "id": "https://ror.org/04qxsrb28", + "name": "Flemish Government", + "email_address": null, + "ip_addresses": [], + "established": 1928, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 50.85045, + "lng": 4.34878, + "state": null, + "state_code": null, + "city": "Brussels", + "geonames_city": { + "id": 2800866, + "city": "Brussels", + "geonames_admin1": { + "name": "Brussels Capital", + "id": 2800867, + "ascii_name": "Brussels Capital", + "code": "BE.BRU" + }, + "geonames_admin2": { + "name": "Bruxelles-Capitale", + "id": 6693370, + "ascii_name": "Bruxelles-Capitale", + "code": "BE.BRU.BRU" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2802361 + } + ], + "links": [ + "http://www.flanders.be/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Flemish_Government", + "labels": [ + { + "label": "Vlaamse Overheid", + "iso639": "nl" + }, + { + "label": "Flämische Regierung", + "iso639": "de" + }, + { + "label": "Gouvernement flamand", + "iso639": "fr" + } + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2174 3776" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100002913", + "501100011878" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2279963" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1186029" + ] + }, + "GRID": { + "preferred": "grid.453158.e", + "all": "grid.453158.e" + } + } +} \ No newline at end of file diff --git a/v1.43/04r5ma125.json b/v1.43/04r5ma125.json new file mode 100644 index 000000000..d5544d95b --- /dev/null +++ b/v1.43/04r5ma125.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "Southwest Research and Design Institute of the Chemical Industry" + ], + "acronyms": [ + "SWRDICI" + ], + "links": [ + "http://www.hhxny.chemchina.com" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "Southwest Research & Design Institute of the Chemical Industry", + "wikipedia_url": null, + "addresses": [ + { + "lat": 30.66667, + "lng": 104.06667, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Chengdu", + "geonames_city": { + "id": 1815286, + "city": "Chengdu", + "geonames_admin1": { + "name": "Sichuan", + "ascii_name": "Sichuan", + "id": 1794299, + "code": "CN.32" + }, + "geonames_admin2": { + "name": "Chengdu Shi", + "id": 1815285, + "ascii_name": "Chengdu Shi", + "code": "CN.32.5101" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": 1958, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04r5ma125", + "labels": [ + { + "label": "西南化工研究设计院有限公司", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04rf54t04.json b/v1.43/04rf54t04.json new file mode 100644 index 000000000..6a3d155ba --- /dev/null +++ b/v1.43/04rf54t04.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://www.kongehuset.dk/om-kongehuset/fonde-og-legater/kong-christian-den-tiendes-fond/" + ], + "country": { + "country_name": "Denmark", + "country_code": "DK" + }, + "name": "Kong Christian den Tiendes Fond", + "wikipedia_url": null, + "addresses": [ + { + "lat": 55.67594, + "lng": 12.56553, + "state": null, + "state_code": null, + "country_geonames_id": 2623032, + "city": "Copenhagen", + "geonames_city": { + "id": 2618425, + "city": "Copenhagen", + "geonames_admin1": { + "name": "Capital Region", + "ascii_name": "Capital Region", + "id": 6418538, + "code": "DK.17" + }, + "geonames_admin2": { + "name": "Copenhagen", + "id": 2618424, + "ascii_name": "Copenhagen", + "code": "DK.17.101" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6091 1914", + "all": [ + "0000 0004 6091 1914" + ] + }, + "Wikidata": { + "preferred": "Q45135950", + "all": [ + "Q45135950" + ] + }, + "FundRef": { + "preferred": "501100008267", + "all": [ + "501100008267" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04rf54t04", + "labels": [ + { + "label": "King Christian the Tenth Foundation", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04rhqkc66.json b/v1.43/04rhqkc66.json new file mode 100644 index 000000000..46892c6e1 --- /dev/null +++ b/v1.43/04rhqkc66.json @@ -0,0 +1,73 @@ +{ + "ip_addresses": [], + "aliases": [ + "Landesministerium für Landwirtschaft, Umwelt und Klimaschutz Brandenburg" + ], + "acronyms": [ + "MLUK" + ], + "links": [ + "https://mluk.brandenburg.de/mluk/" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "Ministerium für Landwirtschaft, Umwelt und Klimaschutz des Landes Brandenburg", + "wikipedia_url": null, + "addresses": [ + { + "lat": 52.39886, + "lng": 13.06566, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Potsdam", + "geonames_city": { + "id": 2852458, + "city": "Potsdam", + "geonames_admin1": { + "name": "Brandenburg", + "ascii_name": "Brandenburg", + "id": 2945356, + "code": "DE.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.11.00" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04rhqkc66", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04rswvr48.json b/v1.43/04rswvr48.json new file mode 100644 index 000000000..1fdbd14d8 --- /dev/null +++ b/v1.43/04rswvr48.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://fundacionaraucariafoundation.com" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Fundacion Araucaria Foundation", + "wikipedia_url": null, + "addresses": [ + { + "lat": 32.71571, + "lng": -117.16472, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "San Diego", + "geonames_city": { + "id": 5391811, + "city": "San Diego", + "geonames_admin1": { + "name": "California", + "ascii_name": "California", + "id": 5332921, + "code": "US.CA" + }, + "geonames_admin2": { + "name": "San Diego", + "id": 5391832, + "ascii_name": "San Diego", + "code": "US.CA.073" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9230 1205", + "all": [ + "0000 0004 9230 1205" + ] + }, + "FundRef": { + "preferred": "100016136", + "all": [ + "100016136" + ] + } + }, + "established": 1995, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04rswvr48", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04rzqnw97.json b/v1.43/04rzqnw97.json new file mode 100644 index 000000000..f0c65b70a --- /dev/null +++ b/v1.43/04rzqnw97.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/04rzqnw97", + "name": "Conservatorio Profesional de Música “Teresa Berganza”", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.conservatorioteresaberganza.com/" + ], + "aliases": [ + "Conservatorio de Música Teresa Berganza" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q47457486" + ] + }, + "GRID": { + "preferred": "grid.501550.4", + "all": "grid.501550.4" + } + } +} \ No newline at end of file diff --git a/v1.43/04shwth06.json b/v1.43/04shwth06.json new file mode 100644 index 000000000..b43e4577d --- /dev/null +++ b/v1.43/04shwth06.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "Maghnia University Center", + "CU Maghnia", + "UC Maghnia" + ], + "acronyms": [], + "links": [ + "http://www.cu-maghnia.edu.dz" + ], + "country": { + "country_name": "Algeria", + "country_code": "DZ" + }, + "name": "University Centre of Maghnia", + "wikipedia_url": null, + "addresses": [ + { + "lat": 34.84969, + "lng": -1.72753, + "state": null, + "state_code": null, + "country_geonames_id": 2589581, + "city": "Maghnia", + "geonames_city": { + "id": 2490584, + "city": "Maghnia", + "geonames_admin1": { + "name": "Tlemcen", + "ascii_name": "Tlemcen", + "id": 2475683, + "code": "DZ.15" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": {}, + "established": 2006, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04shwth06", + "labels": [ + { + "label": "المركز الجامعي مغنية", + "iso639": "ar" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04sk0bj73.json b/v1.43/04sk0bj73.json new file mode 100644 index 000000000..b2e030a07 --- /dev/null +++ b/v1.43/04sk0bj73.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/04sk0bj73", + "name": "Fresenius Medical Care (Germany)", + "email_address": null, + "ip_addresses": [], + "established": 1996, + "types": [ + "Company" + ], + "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" + } + ], + "addresses": [ + { + "lat": 50.22683, + "lng": 8.61816, + "state": null, + "state_code": null, + "city": "Bad Homburg", + "geonames_city": { + "id": 2953436, + "city": "Bad Homburg", + "geonames_admin1": { + "name": "Hesse", + "id": 2905330, + "ascii_name": "Hesse", + "code": "DE.05" + }, + "geonames_admin2": { + "name": "Regierungsbezirk Darmstadt", + "id": 2938912, + "ascii_name": "Regierungsbezirk Darmstadt", + "code": "DE.05.064" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "http://www.freseniusmedicalcare.us/en/home/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Fresenius_Medical_Care", + "labels": [], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q650259" + ] + }, + "GRID": { + "preferred": "grid.415062.4", + "all": "grid.415062.4" + } + } +} \ No newline at end of file diff --git a/v1.43/04sqh8108.json b/v1.43/04sqh8108.json new file mode 100644 index 000000000..4cd79829c --- /dev/null +++ b/v1.43/04sqh8108.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/04sqh8108", + "name": "Astronomical Observatory of Mallorca", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.65675, + "lng": 2.94953, + "state": null, + "state_code": null, + "city": "Costitx", + "geonames_city": { + "id": 2519139, + "city": "Costitx", + "geonames_admin1": { + "name": "Balearic Islands", + "id": 2521383, + "ascii_name": "Balearic Islands", + "code": "ES.07" + }, + "geonames_admin2": { + "name": "Balearic Islands", + "id": 6424360, + "ascii_name": "Balearic Islands", + "code": "ES.07.PM" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.oam.es/" + ], + "aliases": [], + "acronyms": [ + "OAM" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Astronomical_Observatory_of_Mallorca", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q357639" + ] + }, + "GRID": { + "preferred": "grid.440324.5", + "all": "grid.440324.5" + } + } +} \ No newline at end of file diff --git a/v1.43/04t0gwh46.json b/v1.43/04t0gwh46.json new file mode 100644 index 000000000..2acf11c6a --- /dev/null +++ b/v1.43/04t0gwh46.json @@ -0,0 +1,181 @@ +{ + "id": "https://ror.org/04t0gwh46", + "name": "Institute Curie", + "email_address": null, + "ip_addresses": [], + "established": 1909, + "types": [ + "Nonprofit" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.institut-curie.org/" + ], + "aliases": [ + "Institut Curie" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Curie_Institute_(Paris)", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0639 6384" + ] + }, + "FundRef": { + "preferred": "501100010463", + "all": [ + "501100010463" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "323973" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2451973" + ] + }, + "GRID": { + "preferred": "grid.418596.7", + "all": "grid.418596.7" + } + } +} \ No newline at end of file diff --git a/v1.43/04t4b6y41.json b/v1.43/04t4b6y41.json new file mode 100644 index 000000000..0bf22af20 --- /dev/null +++ b/v1.43/04t4b6y41.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/04t4b6y41", + "name": "Instituto Nacional de la Salud", + "email_address": null, + "ip_addresses": [], + "established": 1978, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [], + "aliases": [], + "acronyms": [ + "INSALUD" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8497 6529" + ] + }, + "GRID": { + "preferred": "grid.417198.2", + "all": "grid.417198.2" + } + } +} \ No newline at end of file diff --git a/v1.43/04tfhh831.json b/v1.43/04tfhh831.json new file mode 100644 index 000000000..76a48eac9 --- /dev/null +++ b/v1.43/04tfhh831.json @@ -0,0 +1,77 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "CON" + ], + "links": [ + "https://centerforopenneuroscience.org" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Center for Open Neuroscience", + "wikipedia_url": null, + "addresses": [ + { + "lat": 42.11316, + "lng": -70.81199, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Hanover", + "geonames_city": { + "id": 4938836, + "city": "Hanover", + "geonames_admin1": { + "name": "Massachusetts", + "ascii_name": "Massachusetts", + "id": 6254926, + "code": "US.MA" + }, + "geonames_admin2": { + "name": "Plymouth", + "id": 4947607, + "ascii_name": "Plymouth", + "code": "US.MA.023" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": 2015, + "relationships": [ + { + "label": "Dartmouth College", + "type": "Related", + "id": "https://ror.org/049s0rh22" + } + ], + "email_address": null, + "id": "https://ror.org/04tfhh831", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04tfzc498.json b/v1.43/04tfzc498.json new file mode 100644 index 000000000..9ae727e9d --- /dev/null +++ b/v1.43/04tfzc498.json @@ -0,0 +1,312 @@ +{ + "id": "https://ror.org/04tfzc498", + "name": "Istituti di Ricovero e Cura a Carattere Scientifico", + "email_address": "", + "ip_addresses": [], + "established": 2003, + "types": [ + "Healthcare" + ], + "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" + } + ], + "addresses": [ + { + "lat": 41.89193, + "lng": 12.51133, + "state": null, + "state_code": null, + "city": "Rome", + "geonames_city": { + "id": 3169070, + "city": "Rome", + "geonames_admin1": { + "name": "Lazio", + "id": 3174976, + "ascii_name": "Lazio", + "code": "IT.07" + }, + "geonames_admin2": { + "name": "Rome", + "id": 3169069, + "ascii_name": "Rome", + "code": "IT.07.RM" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "http://www.salute.gov.it/portale/temi/p2_6.jsp?lingua=italiano&id=794&area=Ricerca%20sanitaria&menu=ssn" + ], + "aliases": [], + "acronyms": [ + "IRCCS" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "GRID": { + "preferred": "grid.414603.4", + "all": "grid.414603.4" + } + } +} \ No newline at end of file diff --git a/v1.43/04tj63d06.json b/v1.43/04tj63d06.json new file mode 100644 index 000000000..c75bcd63a --- /dev/null +++ b/v1.43/04tj63d06.json @@ -0,0 +1,163 @@ +{ + "id": "https://ror.org/04tj63d06", + "name": "North Carolina State University", + "email_address": "", + "ip_addresses": [], + "established": 1887, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "University of North Carolina System", + "type": "Parent", + "id": "https://ror.org/0566a8c54" + }, + { + "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": "The Nonwovens Institute", + "type": "Child", + "id": "https://ror.org/0568g2481" + } + ], + "addresses": [ + { + "lat": 35.7721, + "lng": -78.63861, + "state": null, + "state_code": null, + "city": "Raleigh", + "geonames_city": { + "id": 4487042, + "city": "Raleigh", + "geonames_admin1": { + "name": "North Carolina", + "id": 4482348, + "ascii_name": "North Carolina", + "code": "US.NC" + }, + "geonames_admin2": { + "name": "Wake", + "id": 4497286, + "ascii_name": "Wake", + "code": "US.NC.183" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.ncsu.edu/" + ], + "aliases": [], + "acronyms": [ + "NCSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/North_Carolina_State_University", + "labels": [ + { + "label": "Universidad Estatal de Carolina del Norte", + "iso639": "es" + }, + { + "label": "Université d'État de caroline du nord", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2173 6074" + ] + }, + "FundRef": { + "preferred": "100007703", + "all": [ + "100007703", + "100005904", + "100006446", + "100010541", + "100009591", + "100003203", + "100002260", + "100005568", + "100011490" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "72544" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1132346" + ] + }, + "GRID": { + "preferred": "grid.40803.3f", + "all": "grid.40803.3f" + } + } +} \ No newline at end of file diff --git a/v1.43/04tjemt46.json b/v1.43/04tjemt46.json new file mode 100644 index 000000000..6b80e7b80 --- /dev/null +++ b/v1.43/04tjemt46.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/04tjemt46", + "name": "Institute of Genetics", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "HUN-REN Szegedi Biológiai Kutatóközpont", + "type": "Parent", + "id": "https://ror.org/016gb1631" + } + ], + "addresses": [ + { + "lat": 46.253, + "lng": 20.14824, + "state": null, + "state_code": null, + "city": "Szeged", + "geonames_city": { + "id": 715429, + "city": "Szeged", + "geonames_admin1": { + "name": "Csongrád", + "id": 721589, + "ascii_name": "Csongrád", + "code": "HU.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 719819 + } + ], + "links": [ + "http://www.brc.hu/genetics.php?change_lang=en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Genetikai Intézet Szegedi Biológiai Kutatóközpont Magyar Tudományos Akadémia", + "iso639": "hu" + } + ], + "country": { + "country_name": "Hungary", + "country_code": "HU" + }, + "external_ids": { + "GRID": { + "preferred": "grid.481815.1", + "all": "grid.481815.1" + } + } +} \ No newline at end of file diff --git a/v1.43/04v2q5t19.json b/v1.43/04v2q5t19.json new file mode 100644 index 000000000..0e85b5d7e --- /dev/null +++ b/v1.43/04v2q5t19.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/04v2q5t19", + "name": "Barcelona Digital Centro Tecnológico", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.bcndigital.org" + ], + "aliases": [ + "BDigital" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.424747.6", + "all": "grid.424747.6" + } + } +} \ No newline at end of file diff --git a/v1.43/04vdnev70.json b/v1.43/04vdnev70.json new file mode 100644 index 000000000..f9c266fc3 --- /dev/null +++ b/v1.43/04vdnev70.json @@ -0,0 +1,76 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "http://www.archer.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "ARCHER Service", + "wikipedia_url": null, + "addresses": [ + { + "lat": 55.95206, + "lng": -3.19648, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Edinburgh", + "geonames_city": { + "id": 2650225, + "city": "Edinburgh", + "geonames_admin1": { + "name": "Scotland", + "ascii_name": "Scotland", + "id": 2638360, + "code": "GB.SCT" + }, + "geonames_admin2": { + "name": "Edinburgh", + "id": 3333229, + "ascii_name": "Edinburgh", + "code": "GB.SCT.U8" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "501100016989", + "all": [ + "501100016989" + ] + } + }, + "established": 2013, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04vdnev70", + "labels": [], + "status": "inactive" +} \ No newline at end of file diff --git a/v1.43/04vh24428.json b/v1.43/04vh24428.json new file mode 100644 index 000000000..3a7b7fb5a --- /dev/null +++ b/v1.43/04vh24428.json @@ -0,0 +1,71 @@ +{ + "ip_addresses": [], + "aliases": [ + "NOVA.id.FCT" + ], + "acronyms": [], + "links": [ + "https://www.novaidfct.pt" + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "name": "NOVA.id.FCT - Associação para a Inovação e Desenvolvimento da FCT", + "wikipedia_url": null, + "addresses": [ + { + "lat": 38.71667, + "lng": -9.13333, + "state": null, + "state_code": null, + "country_geonames_id": 2264397, + "city": "Lisbon", + "geonames_city": { + "id": 2267057, + "city": "Lisbon", + "geonames_admin1": { + "name": "Lisbon", + "ascii_name": "Lisbon", + "id": 2267056, + "code": "PT.14" + }, + "geonames_admin2": { + "name": "Lisbon", + "id": 6458923, + "ascii_name": "Lisbon", + "code": "PT.14.1106" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/04vh24428", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04vzm8988.json b/v1.43/04vzm8988.json new file mode 100644 index 000000000..8f0807b71 --- /dev/null +++ b/v1.43/04vzm8988.json @@ -0,0 +1,88 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://furthermore.org" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "FURTHERMORE grants in publishing", + "wikipedia_url": null, + "addresses": [ + { + "lat": 42.25286, + "lng": -73.79096, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Hudson", + "geonames_city": { + "id": 5121509, + "city": "Hudson", + "geonames_admin1": { + "name": "New York", + "ascii_name": "New York", + "id": 5128638, + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Columbia", + "id": 5113366, + "ascii_name": "Columbia", + "code": "US.NY.021" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7863 3094", + "all": [ + "0000 0004 7863 3094" + ] + }, + "FundRef": { + "preferred": "100014337", + "all": [ + "100014337" + ] + } + }, + "established": 1945, + "relationships": [ + { + "label": "J.M. Kaplan Fund", + "type": "Parent", + "id": "https://ror.org/03cn98e27" + } + ], + "email_address": null, + "id": "https://ror.org/04vzm8988", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04w07sc25.json b/v1.43/04w07sc25.json new file mode 100644 index 000000000..aab5dcb3a --- /dev/null +++ b/v1.43/04w07sc25.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/04w07sc25", + "name": "Sciences pour L’Œnologie", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www6.montpellier.inra.fr/spo/" + ], + "aliases": [], + "acronyms": [ + "SPO" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0445 8043" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q51780435" + ] + }, + "GRID": { + "preferred": "grid.503407.5", + "all": "grid.503407.5" + } + } +} \ No newline at end of file diff --git a/v1.43/04w0a0617.json b/v1.43/04w0a0617.json new file mode 100644 index 000000000..156b33d17 --- /dev/null +++ b/v1.43/04w0a0617.json @@ -0,0 +1,92 @@ +{ + "ip_addresses": [], + "aliases": [ + "TecNM campus San Luis Potosí" + ], + "acronyms": [ + "ITSLP" + ], + "links": [ + "https://slp.tecnm.mx" + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "name": "Instituto Tecnológico de San Luis Potosí", + "wikipedia_url": "https://es.wikipedia.org/wiki/Instituto_Tecnol%C3%B3gico_de_San_Luis_Potos%C3%AD", + "addresses": [ + { + "lat": 22.14982, + "lng": -100.97916, + "state": null, + "state_code": null, + "country_geonames_id": 3996063, + "city": "San Luis Potosí City", + "geonames_city": { + "id": 3985606, + "city": "San Luis Potosí City", + "geonames_admin1": { + "name": "San Luis Potosí", + "ascii_name": "San Luis Potosí", + "id": 3985605, + "code": "MX.24" + }, + "geonames_admin2": { + "name": "San Luis Potosí", + "id": 8583317, + "ascii_name": "San Luis Potosí", + "code": "MX.24.028" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0369 8555", + "all": [ + "0000 0004 0369 8555" + ] + }, + "Wikidata": { + "preferred": "Q5917885", + "all": [ + "Q5917885" + ] + } + }, + "established": 1970, + "relationships": [ + { + "label": "National Technological Institute of Mexico", + "type": "Parent", + "id": "https://ror.org/00davry38" + } + ], + "email_address": null, + "id": "https://ror.org/04w0a0617", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04w30w390.json b/v1.43/04w30w390.json new file mode 100644 index 000000000..54b7d9603 --- /dev/null +++ b/v1.43/04w30w390.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/04w30w390", + "name": "Biomendi (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.biomendi.com/" + ], + "aliases": [ + "Laboratorios Biomendi SAU" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.476529.b", + "all": "grid.476529.b" + } + } +} \ No newline at end of file diff --git a/v1.43/04wcn4e27.json b/v1.43/04wcn4e27.json new file mode 100644 index 000000000..833600344 --- /dev/null +++ b/v1.43/04wcn4e27.json @@ -0,0 +1,137 @@ +{ + "ip_addresses": [], + "aliases": [ + "League of European Accelerator-based Photon Sources" + ], + "acronyms": [], + "links": [ + "https://leaps-initiative.eu" + ], + "country": { + "country_name": "Netherlands", + "country_code": "NL" + }, + "name": "LEAPS", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.8425, + "lng": 5.85278, + "state": null, + "state_code": null, + "country_geonames_id": 2750405, + "city": "Nijmegen", + "geonames_city": { + "id": 2750053, + "city": "Nijmegen", + "geonames_admin1": { + "name": "Gelderland", + "ascii_name": "Gelderland", + "id": 2755634, + "code": "NL.03" + }, + "geonames_admin2": { + "name": "Nijmegen Municipality", + "id": 2750052, + "ascii_name": "Nijmegen Municipality", + "code": "NL.03.0268" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": {}, + "established": 2017, + "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" + } + ], + "email_address": null, + "id": "https://ror.org/04wcn4e27", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04x05p558.json b/v1.43/04x05p558.json new file mode 100644 index 000000000..a9d81b3b8 --- /dev/null +++ b/v1.43/04x05p558.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/04x05p558", + "name": "Autobuses Urbanos Elche", + "email_address": null, + "ip_addresses": [], + "established": 1988, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.26218, + "lng": -0.70107, + "state": null, + "state_code": null, + "city": "Elche", + "geonames_city": { + "id": 2518559, + "city": "Elche", + "geonames_admin1": { + "name": "Valencia", + "id": 2593113, + "ascii_name": "Valencia", + "code": "ES.60" + }, + "geonames_admin2": { + "name": "Alicante", + "id": 2521976, + "ascii_name": "Alicante", + "code": "ES.60.A" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://elche.avanzagrupo.com" + ], + "aliases": [], + "acronyms": [ + "AUESA" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.431984.3", + "all": "grid.431984.3" + } + } +} \ No newline at end of file diff --git a/v1.43/04x2nq985.json b/v1.43/04x2nq985.json new file mode 100644 index 000000000..6477a8bdc --- /dev/null +++ b/v1.43/04x2nq985.json @@ -0,0 +1,85 @@ +{ + "ip_addresses": [], + "aliases": [ + "The Second People's Hospital of Shunde", + "Affiliated Shunde Hospital of Jinan University", + "Second People's Hospital of Shunde", + "顺德第二人民医院" + ], + "acronyms": [], + "links": [ + "https://www.sddermyy.com" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "The Affiliated Shunde Hospital of Jinan University", + "wikipedia_url": null, + "addresses": [ + { + "lat": 23.02677, + "lng": 113.13148, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Foshan", + "geonames_city": { + "id": 1811103, + "city": "Foshan", + "geonames_admin1": { + "name": "Guangdong", + "ascii_name": "Guangdong", + "id": 1809935, + "code": "CN.30" + }, + "geonames_admin2": { + "name": "Foshan Shi", + "id": 1811102, + "ascii_name": "Foshan Shi", + "code": "CN.30.4406" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": {}, + "established": 1958, + "relationships": [ + { + "label": "Jinan University", + "type": "Parent", + "id": "https://ror.org/02xe5ns62" + } + ], + "email_address": null, + "id": "https://ror.org/04x2nq985", + "labels": [ + { + "label": "暨南大学附属顺德医院", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04xcq9q51.json b/v1.43/04xcq9q51.json new file mode 100644 index 000000000..8c409d481 --- /dev/null +++ b/v1.43/04xcq9q51.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/04xcq9q51", + "name": "Corewell Health Reed City Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "Parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "addresses": [ + { + "lat": 43.87502, + "lng": -85.51005, + "state": null, + "state_code": null, + "city": "Reed City", + "geonames_city": { + "id": 5006946, + "city": "Reed City", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Osceola", + "id": 5004611, + "ascii_name": "Osceola", + "code": "US.MI.133" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.spectrumhealth.org/locations/spectrum-health-reed-city-hospital" + ], + "aliases": [ + "Spectrum Health Reed City Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0450 5807" + ] + }, + "GRID": { + "preferred": "grid.490520.a", + "all": "grid.490520.a" + } + } +} \ No newline at end of file diff --git a/v1.43/04xk0dc21.json b/v1.43/04xk0dc21.json new file mode 100644 index 000000000..7a90a8a04 --- /dev/null +++ b/v1.43/04xk0dc21.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/04xk0dc21", + "name": "Burdur Mehmet Akif Ersoy Üniversitesi", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.72028, + "lng": 30.29083, + "state": null, + "state_code": null, + "city": "Burdur", + "geonames_city": { + "id": 320392, + "city": "Burdur", + "geonames_admin1": { + "name": "Burdur", + "id": 320390, + "ascii_name": "Burdur", + "code": "TR.15" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 298795 + } + ], + "links": [ + "https://www.mehmetakif.edu.tr" + ], + "aliases": [ + "Mehmet Akif Ersoy Üniversitesi", + "Mehmet Akif Ersoy University" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Mehmet_Akif_Ersoy_University", + "labels": [ + { + "label": "Burdur Mehmet Akif Ersoy University", + "iso639": "en" + } + ], + "country": { + "country_name": "Turkey", + "country_code": "TR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0386 420X" + ] + }, + "FundRef": { + "preferred": "501100016210", + "all": [ + "501100016210" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "40151321" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q924465" + ] + }, + "GRID": { + "preferred": "grid.411761.4", + "all": "grid.411761.4" + } + } +} \ No newline at end of file diff --git a/v1.43/04xrsn650.json b/v1.43/04xrsn650.json new file mode 100644 index 000000000..f38ca2a00 --- /dev/null +++ b/v1.43/04xrsn650.json @@ -0,0 +1,89 @@ +{ + "ip_addresses": [], + "aliases": [ + "Ninja Theory", + "Ninja Theory Ltd.", + "Ninja Theory Limited", + "Just Add Monsters", + "Just Add Monsters Ltd.", + "Just Add Monsters Limited" + ], + "acronyms": [], + "links": [ + "https://ninjatheory.com" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Ninja Theory (United Kingdom)", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ninja_Theory", + "addresses": [ + { + "lat": 52.2, + "lng": 0.11667, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Cambridge", + "geonames_city": { + "id": 2653941, + "city": "Cambridge", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Cambridgeshire", + "id": 2653940, + "ascii_name": "Cambridgeshire", + "code": "GB.ENG.C3" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q1783815", + "all": [ + "Q1783815" + ] + } + }, + "established": 2000, + "relationships": [ + { + "label": "Microsoft (United States)", + "type": "Parent", + "id": "https://ror.org/00d0nc645" + } + ], + "email_address": null, + "id": "https://ror.org/04xrsn650", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04yyy0y35.json b/v1.43/04yyy0y35.json new file mode 100644 index 000000000..b12855859 --- /dev/null +++ b/v1.43/04yyy0y35.json @@ -0,0 +1,90 @@ +{ + "id": "https://ror.org/04yyy0y35", + "name": "Bloomsbury Publishing (United Kingdom)", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Bloomsbury (United States)", + "type": "Child", + "id": "https://ror.org/042vxm455" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.bloomsbury.com/uk/" + ], + "aliases": [ + "Bloomsbury Publishing" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Bloomsbury_Publishing", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0000 8803 7203", + "all": [ + "0000 0000 8803 7203" + ] + }, + "Wikidata": { + "preferred": "Q568642", + "all": [ + "Q568642" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/04yznqr36.json b/v1.43/04yznqr36.json new file mode 100644 index 000000000..bcc2b33cc --- /dev/null +++ b/v1.43/04yznqr36.json @@ -0,0 +1,233 @@ +{ + "id": "https://ror.org/04yznqr36", + "name": "Jean Monnet University", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 45.43389, + "lng": 4.39, + "state": null, + "state_code": null, + "city": "Saint-Etienne", + "geonames_city": { + "id": 2980291, + "city": "Saint-Etienne", + "geonames_admin1": { + "name": "Auvergne-Rhône-Alpes", + "id": 11071625, + "ascii_name": "Auvergne-Rhône-Alpes", + "code": "FR.84" + }, + "geonames_admin2": { + "name": "Loire", + "id": 2997870, + "ascii_name": "Loire", + "code": "FR.84.42" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://portail.univ-st-etienne.fr/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Jean_Monnet_University", + "labels": [ + { + "label": "Université Jean Monnet", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2158 1682" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "13469211" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q623154" + ] + }, + "GRID": { + "preferred": "grid.6279.a", + "all": "grid.6279.a" + } + } +} \ No newline at end of file diff --git a/v1.43/04z22qz54.json b/v1.43/04z22qz54.json new file mode 100644 index 000000000..52d4c4755 --- /dev/null +++ b/v1.43/04z22qz54.json @@ -0,0 +1,255 @@ +{ + "id": "https://ror.org/04z22qz54", + "name": "Institut des Sciences de l'Information et de leurs Interactions", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.cnrs.fr/ins2i/" + ], + "aliases": [], + "acronyms": [ + "INS2I" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0387 1581" + ] + }, + "FundRef": { + "preferred": "501100017211", + "all": [ + "501100017211" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q24935922" + ] + }, + "GRID": { + "preferred": "grid.457015.2", + "all": "grid.457015.2" + } + } +} \ No newline at end of file diff --git a/v1.43/04z2hsy54.json b/v1.43/04z2hsy54.json new file mode 100644 index 000000000..f596b726b --- /dev/null +++ b/v1.43/04z2hsy54.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "NVIDIA Italy", + "Nvidia Italy S.R.L." + ], + "acronyms": [], + "links": [ + "https://www.nvidia.com/it-it/" + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "name": "NVIDIA (Italy)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 45.46427, + "lng": 9.18951, + "state": null, + "state_code": null, + "country_geonames_id": 3175395, + "city": "Milan", + "geonames_city": { + "id": 3173435, + "city": "Milan", + "geonames_admin1": { + "name": "Lombardy", + "ascii_name": "Lombardy", + "id": 3174618, + "code": "IT.09" + }, + "geonames_admin2": { + "name": "Milan", + "id": 3173434, + "ascii_name": "Milan", + "code": "IT.09.MI" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": null, + "relationships": [ + { + "label": "Nvidia (United States)", + "type": "Parent", + "id": "https://ror.org/03jdj4y14" + } + ], + "email_address": null, + "id": "https://ror.org/04z2hsy54", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/04z8k9a98.json b/v1.43/04z8k9a98.json new file mode 100644 index 000000000..98b1c2f39 --- /dev/null +++ b/v1.43/04z8k9a98.json @@ -0,0 +1,135 @@ +{ + "id": "https://ror.org/04z8k9a98", + "name": "University of Coimbra", + "email_address": "", + "ip_addresses": [], + "established": 1290, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Hospitais da Universidade de Coimbra", + "type": "Related", + "id": "https://ror.org/04032fz76" + }, + { + "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": "Instituto de Telecomunicações", + "type": "Related", + "id": "https://ror.org/02ht4fk33" + }, + { + "label": "Centro de Estudos Sociais", + "type": "Child", + "id": "https://ror.org/04fab7w85" + } + ], + "addresses": [ + { + "lat": 40.20564, + "lng": -8.41955, + "state": null, + "state_code": null, + "city": "Coimbra", + "geonames_city": { + "id": 2740637, + "city": "Coimbra", + "geonames_admin1": { + "name": "Coimbra", + "id": 2740636, + "ascii_name": "Coimbra", + "code": "PT.07" + }, + "geonames_admin2": { + "name": "Coimbra Municipality", + "id": 8010483, + "ascii_name": "Coimbra Municipality", + "code": "PT.07.0603" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2264397 + } + ], + "links": [ + "http://www.uc.pt/en" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Coimbra", + "labels": [ + { + "label": "Universidade de Coimbra", + "iso639": "pt" + } + ], + "country": { + "country_name": "Portugal", + "country_code": "PT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9511 4342" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100005727", + "501100007474" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "715164" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q368643" + ] + }, + "GRID": { + "preferred": "grid.8051.c", + "all": "grid.8051.c" + } + } +} \ No newline at end of file diff --git a/v1.43/04zbc6m03.json b/v1.43/04zbc6m03.json new file mode 100644 index 000000000..d51167a72 --- /dev/null +++ b/v1.43/04zbc6m03.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/04zbc6m03", + "name": "Museo Nacional de Sanidad", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Archive" + ], + "relationships": [ + { + "label": "Instituto de Salud Carlos III", + "type": "Parent", + "id": "https://ror.org/00ca2c886" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.isciii.es/QuienesSomos/CentrosPropios/MuseoISCIII" + ], + "aliases": [], + "acronyms": [ + "Museo ISCIII" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "ISCIII Museum", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.512902.d", + "all": "grid.512902.d" + } + } +} \ No newline at end of file diff --git a/v1.43/04zw2sa68.json b/v1.43/04zw2sa68.json new file mode 100644 index 000000000..ec18debde --- /dev/null +++ b/v1.43/04zw2sa68.json @@ -0,0 +1,81 @@ +{ + "id": "https://ror.org/04zw2sa68", + "name": "Spanish Ovarian Cancer Research Group", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.geicogroup.com" + ], + "aliases": [], + "acronyms": [ + "GEICO" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Grupo Español de Cáncer de Ovario", + "iso639": "es" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.488304.3", + "all": "grid.488304.3" + } + } +} \ No newline at end of file diff --git a/v1.43/0508kew31.json b/v1.43/0508kew31.json new file mode 100644 index 000000000..62103b3aa --- /dev/null +++ b/v1.43/0508kew31.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/0508kew31", + "name": "Department of Water and Environmental Regulation", + "email_address": null, + "ip_addresses": [], + "established": 2013, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Government of Western Australia", + "type": "Parent", + "id": "https://ror.org/00wqdbc63" + }, + { + "label": "Department of Water", + "type": "Predecessor", + "id": "https://ror.org/017wrhq72" + } + ], + "addresses": [ + { + "lat": -31.95224, + "lng": 115.8614, + "state": null, + "state_code": null, + "city": "Perth", + "geonames_city": { + "id": 2063523, + "city": "Perth", + "geonames_admin1": { + "name": "Western Australia", + "id": 2058645, + "ascii_name": "Western Australia", + "code": "AU.08" + }, + "geonames_admin2": { + "name": "Perth", + "id": 2063522, + "ascii_name": "Perth", + "code": "AU.08.57080" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2077456 + } + ], + "links": [ + "https://www.der.wa.gov.au" + ], + "aliases": [ + "Department of Environment Regulation" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "external_ids": { + "FundRef": { + "preferred": "501100014110", + "all": [ + "501100002288", + "501100014110" + ] + }, + "GRID": { + "preferred": "grid.468100.b", + "all": "grid.468100.b" + } + } +} \ No newline at end of file diff --git a/v1.43/050gm3a53.json b/v1.43/050gm3a53.json new file mode 100644 index 000000000..9a388c43b --- /dev/null +++ b/v1.43/050gm3a53.json @@ -0,0 +1,80 @@ +{ + "ip_addresses": [], + "aliases": [ + "Chaudhry Pervaiz Elahi Institute of Cardiology, Multan", + "CPE Institute of Cardiology, Multan", + "CPEIC Multan" + ], + "acronyms": [], + "links": [ + "https://cpeic.punjab.gov.pk" + ], + "country": { + "country_name": "Pakistan", + "country_code": "PK" + }, + "name": "Ch. Pervaiz Elahi Institute of Cardiology, Multan", + "wikipedia_url": null, + "addresses": [ + { + "lat": 30.19679, + "lng": 71.47824, + "state": null, + "state_code": null, + "country_geonames_id": 1168579, + "city": "Multan", + "geonames_city": { + "id": 1169825, + "city": "Multan", + "geonames_admin1": { + "name": "Punjab", + "ascii_name": "Punjab", + "id": 1167710, + "code": "PK.04" + }, + "geonames_admin2": { + "name": "Multan District", + "id": 1169821, + "ascii_name": "Multan District", + "code": "PK.04.1169821" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0397 1697", + "all": [ + "0000 0004 0397 1697" + ] + } + }, + "established": 2007, + "relationships": [], + "email_address": null, + "id": "https://ror.org/050gm3a53", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/050gn5214.json b/v1.43/050gn5214.json new file mode 100644 index 000000000..e20b4e30e --- /dev/null +++ b/v1.43/050gn5214.json @@ -0,0 +1,119 @@ +{ + "id": "https://ror.org/050gn5214", + "name": "Institut du Cerveau", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://institutducerveau-icm.org" + ], + "aliases": [], + "acronyms": [ + "ICM" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Paris Brain Institute", + "iso639": "en" + }, + { + "label": "Institut du Cerveau et de la Moelle épinière", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0620 5939" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR7225" + ] + }, + "Wikidata": { + "preferred": "Q3152211", + "all": [ + "Q3152211" + ] + }, + "GRID": { + "preferred": "grid.425274.2", + "all": "grid.425274.2" + } + } +} \ No newline at end of file diff --git a/v1.43/050jcm728.json b/v1.43/050jcm728.json new file mode 100644 index 000000000..249706512 --- /dev/null +++ b/v1.43/050jcm728.json @@ -0,0 +1,240 @@ +{ + "id": "https://ror.org/050jcm728", + "name": "Institut National des Sciences Mathématiques et de leurs Interactions", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.cnrs.fr/insmi/" + ], + "aliases": [], + "acronyms": [ + "INSMI" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0387 052X" + ] + }, + "FundRef": { + "preferred": "501100017213", + "all": [ + "501100017213" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q24935942" + ] + }, + "GRID": { + "preferred": "grid.457017.0", + "all": "grid.457017.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..7535875ec --- /dev/null +++ b/v1.43/050qj5m48.json @@ -0,0 +1,141 @@ +{ + "id": "https://ror.org/050qj5m48", + "name": "University of Maine System", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 44.79884, + "lng": -68.77265, + "state": null, + "state_code": null, + "city": "Bangor", + "geonames_city": { + "id": 4957280, + "city": "Bangor", + "geonames_admin1": { + "name": "Maine", + "id": 4971068, + "ascii_name": "Maine", + "code": "US.ME" + }, + "geonames_admin2": { + "name": "Penobscot", + "id": 4974977, + "ascii_name": "Penobscot", + "code": "US.ME.019" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.maine.edu/" + ], + "aliases": [], + "acronyms": [ + "UMS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Maine_System", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9905 4447" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100010066" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "428918" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2495861" + ] + }, + "GRID": { + "preferred": "grid.411025.3", + "all": "grid.411025.3" + } + } +} \ No newline at end of file diff --git a/v1.43/051777d98.json b/v1.43/051777d98.json new file mode 100644 index 000000000..9be3e9d95 --- /dev/null +++ b/v1.43/051777d98.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/051777d98", + "name": "United Nations Development Programme", + "email_address": null, + "ip_addresses": [], + "established": 1965, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "United Nations Economic and Social Council", + "type": "Parent", + "id": "https://ror.org/01eb8ek77" + }, + { + "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": "Special Programme for Research and Training in Tropical Diseases", + "type": "Child", + "id": "https://ror.org/046j7pv84" + } + ], + "addresses": [ + { + "lat": 40.71427, + "lng": -74.00597, + "state": null, + "state_code": null, + "city": "New York", + "geonames_city": { + "id": 5128581, + "city": "New York", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.undp.org/" + ], + "aliases": [], + "acronyms": [ + "UNDP" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/United_Nations_Development_Programme", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2215 6303" + ] + }, + "FundRef": { + "preferred": "100016195", + "all": [ + "100016195" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q161718" + ] + }, + "GRID": { + "preferred": "grid.467088.5", + "all": "grid.467088.5" + } + } +} \ No newline at end of file diff --git a/v1.43/051eysy15.json b/v1.43/051eysy15.json new file mode 100644 index 000000000..8c7e46310 --- /dev/null +++ b/v1.43/051eysy15.json @@ -0,0 +1,92 @@ +{ + "ip_addresses": [], + "aliases": [ + "Max-Buchner-Forschungsstiftung" + ], + "acronyms": [ + "MBF", + "MBFSt" + ], + "links": [ + "https://dechema.de/mbf.html" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "Max Buchner Forschungsstiftung", + "wikipedia_url": null, + "addresses": [ + { + "lat": 50.11552, + "lng": 8.68417, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Frankfurt am Main", + "geonames_city": { + "id": 2925533, + "city": "Frankfurt am Main", + "geonames_admin1": { + "name": "Hesse", + "ascii_name": "Hesse", + "id": 2905330, + "code": "DE.05" + }, + "geonames_admin2": { + "name": "Regierungsbezirk Darmstadt", + "id": 2938912, + "ascii_name": "Regierungsbezirk Darmstadt", + "code": "DE.05.064" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9236 090X", + "all": [ + "0000 0004 9236 090X" + ] + }, + "FundRef": { + "preferred": "100015931", + "all": [ + "100015931" + ] + } + }, + "established": 1936, + "relationships": [], + "email_address": null, + "id": "https://ror.org/051eysy15", + "labels": [ + { + "label": "Max Buchner Research Foundation", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/051g75b06.json b/v1.43/051g75b06.json new file mode 100644 index 000000000..6aa39cde6 --- /dev/null +++ b/v1.43/051g75b06.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/051g75b06", + "name": "Kharkov State Academy of Design and Arts", + "email_address": null, + "ip_addresses": [], + "established": 1921, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 49.98081, + "lng": 36.25272, + "state": null, + "state_code": null, + "city": "Kharkiv", + "geonames_city": { + "id": 706483, + "city": "Kharkiv", + "geonames_admin1": { + "name": "Kharkiv", + "id": 706482, + "ascii_name": "Kharkiv", + "code": "UA.07" + }, + "geonames_admin2": { + "name": "Kharkiv City Council", + "id": 9114284, + "ascii_name": "Kharkiv City Council", + "code": "UA.07.6312" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 690791 + } + ], + "links": [ + "https://ksada.org" + ], + "aliases": [], + "acronyms": [ + "KSADA" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Харківська державна академія дизайну і мистецтв", + "iso639": "uk" + } + ], + "country": { + "country_name": "Ukraine", + "country_code": "UA" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30257440" + ] + }, + "GRID": { + "preferred": "grid.445530.3", + "all": "grid.445530.3" + } + } +} \ No newline at end of file diff --git a/v1.43/051z6e826.json b/v1.43/051z6e826.json new file mode 100644 index 000000000..122e98ac7 --- /dev/null +++ b/v1.43/051z6e826.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/051z6e826", + "name": "Arcadia Fund", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Lund Trust", + "type": "Related", + "id": "https://ror.org/017d4c820" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.arcadiafund.org.uk/" + ], + "aliases": [ + "Lisbet Rausing Charitable Fund" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 6425 8422" + ] + }, + "FundRef": { + "preferred": "100012088", + "all": [ + "100012088" + ] + }, + "GRID": { + "preferred": "grid.497360.f", + "all": "grid.497360.f" + } + } +} \ No newline at end of file diff --git a/v1.43/052133d12.json b/v1.43/052133d12.json new file mode 100644 index 000000000..d2bc74616 --- /dev/null +++ b/v1.43/052133d12.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/052133d12", + "name": "University of Indianapolis", + "email_address": null, + "ip_addresses": [], + "established": 1902, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 39.76838, + "lng": -86.15804, + "state": null, + "state_code": null, + "city": "Indianapolis", + "geonames_city": { + "id": 4259418, + "city": "Indianapolis", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Marion", + "id": 4260977, + "ascii_name": "Marion", + "code": "US.IN.097" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.uindy.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Indianapolis", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0413 3513" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "444279" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7895554" + ] + }, + "GRID": { + "preferred": "grid.266471.0", + "all": "grid.266471.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0526zh358.json b/v1.43/0526zh358.json new file mode 100644 index 000000000..4a4060a8f --- /dev/null +++ b/v1.43/0526zh358.json @@ -0,0 +1,95 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "LSRNW" + ], + "links": [ + "https://www.lsrnw.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Life Sciences Research Network Wales", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.48, + "lng": -3.18, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Cardiff", + "geonames_city": { + "id": 2653822, + "city": "Cardiff", + "geonames_admin1": { + "name": "Wales", + "ascii_name": "Wales", + "id": 2634895, + "code": "GB.WLS" + }, + "geonames_admin2": { + "name": "Cardiff", + "id": 3333241, + "ascii_name": "Cardiff", + "code": "GB.WLS.X5" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8306 8544", + "all": [ + "0000 0004 8306 8544" + ] + }, + "FundRef": { + "preferred": "501100014332", + "all": [ + "501100014332" + ] + } + }, + "established": 2014, + "relationships": [ + { + "label": "Cardiff University", + "type": "Parent", + "id": "https://ror.org/03kk7td41" + } + ], + "email_address": null, + "id": "https://ror.org/0526zh358", + "labels": [ + { + "label": "Rhwydwaith Gwyddorau Bywyd Cymru", + "iso639": "cy" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/052g8jq94.json b/v1.43/052g8jq94.json new file mode 100644 index 000000000..e55f8adff --- /dev/null +++ b/v1.43/052g8jq94.json @@ -0,0 +1,239 @@ +{ + "id": "https://ror.org/052g8jq94", + "name": "Universitat Autònoma de Barcelona", + "email_address": null, + "ip_addresses": [], + "established": 1968, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 41.49109, + "lng": 2.14079, + "state": null, + "state_code": null, + "city": "Cerdanyola del Vallès", + "geonames_city": { + "id": 3109402, + "city": "Cerdanyola del Vallès", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.uab.cat" + ], + "aliases": [], + "acronyms": [ + "UAB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Autonomous_University_of_Barcelona", + "labels": [ + { + "label": "Universidad Autónoma de Barcelona", + "iso639": "es" + }, + { + "label": "Bartzelonako Unibertsitate Autonomoa", + "iso639": "eu" + }, + { + "label": "Universidade Autónoma de Barcelona", + "iso639": "gl" + }, + { + "label": "Autonomous University of Barcelona", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2296 0625", + "all": [ + "0000 0001 2296 0625", + "0000 0001 2097 0205" + ] + }, + "FundRef": { + "preferred": "501100011104", + "all": [ + "501100011104" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "61407" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q43452" + ] + }, + "GRID": { + "preferred": "grid.7080.f", + "all": "grid.7080.f" + } + } +} \ No newline at end of file diff --git a/v1.43/052gp0981.json b/v1.43/052gp0981.json new file mode 100644 index 000000000..2ef37d75a --- /dev/null +++ b/v1.43/052gp0981.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/052gp0981", + "name": "Multiple Sclerosis International Federation", + "email_address": null, + "ip_addresses": [], + "established": 1967, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "International Progressive MS Alliance", + "type": "Child", + "id": "https://ror.org/04hh1k009" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "https://www.msif.org/" + ], + "aliases": [], + "acronyms": [ + "MSIF" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Multiple_Sclerosis_International_Federation", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "FundRef": { + "preferred": null, + "all": [ + "501100007459" + ] + }, + "GRID": { + "preferred": "grid.480944.5", + "all": "grid.480944.5" + } + } +} \ No newline at end of file diff --git a/v1.43/052ss8w32.json b/v1.43/052ss8w32.json new file mode 100644 index 000000000..69662a3e4 --- /dev/null +++ b/v1.43/052ss8w32.json @@ -0,0 +1,102 @@ +{ + "id": "https://ror.org/052ss8w32", + "name": "Ghana Health Service", + "email_address": null, + "ip_addresses": [], + "established": 1993, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ministry of Health", + "type": "Parent", + "id": "https://ror.org/05c7h4935" + } + ], + "addresses": [ + { + "lat": 5.55602, + "lng": -0.1969, + "state": null, + "state_code": null, + "city": "Accra", + "geonames_city": { + "id": 2306104, + "city": "Accra", + "geonames_admin1": { + "name": "Greater Accra", + "id": 2300569, + "ascii_name": "Greater Accra", + "code": "GH.01" + }, + "geonames_admin2": { + "name": "Accra", + "id": 7648922, + "ascii_name": "Accra", + "code": "GH.01.304" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2300660 + } + ], + "links": [ + "https://ghs.gov.gh" + ], + "aliases": [ + "Ghanaian Health Service" + ], + "acronyms": [ + "GHS" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0582 2706" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "31404955" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5555350" + ] + }, + "GRID": { + "preferred": "grid.434994.7", + "all": "grid.434994.7" + } + } +} \ No newline at end of file diff --git a/v1.43/0538nf417.json b/v1.43/0538nf417.json new file mode 100644 index 000000000..17578b7f0 --- /dev/null +++ b/v1.43/0538nf417.json @@ -0,0 +1,71 @@ +{ + "ip_addresses": [], + "aliases": [ + "InnoRenew CoE Center odličnosti za raziskave in inovacije na področju obnovljivih materialov in zdravega bivanjskega okolja" + ], + "acronyms": [], + "links": [ + "https://innorenew.eu" + ], + "country": { + "country_name": "Slovenia", + "country_code": "SI" + }, + "name": "InnoRenew CoE", + "wikipedia_url": null, + "addresses": [ + { + "lat": 45.51123, + "lng": 13.65655, + "state": null, + "state_code": null, + "country_geonames_id": 3190538, + "city": "Izola", + "geonames_city": { + "id": 3199016, + "city": "Izola", + "geonames_admin1": { + "name": "Izola-Isola", + "ascii_name": "Izola-Isola", + "id": 3199016, + "code": "SI.40" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/0538nf417", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/053jm8142.json b/v1.43/053jm8142.json new file mode 100644 index 000000000..693de0878 --- /dev/null +++ b/v1.43/053jm8142.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/053jm8142", + "name": "Corewell Health Zeeland Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "Parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "addresses": [ + { + "lat": 42.81252, + "lng": -86.01865, + "state": null, + "state_code": null, + "city": "Zeeland", + "geonames_city": { + "id": 5015701, + "city": "Zeeland", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Ottawa", + "id": 5004681, + "ascii_name": "Ottawa", + "code": "US.MI.139" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.spectrumhealth.org/locations/spectrum-health-zeeland-community-hospital" + ], + "aliases": [ + "Zeeland Community Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "GRID": { + "preferred": "grid.492550.f", + "all": "grid.492550.f" + } + } +} \ No newline at end of file diff --git a/v1.43/054225q67.json b/v1.43/054225q67.json new file mode 100644 index 000000000..587e0c91e --- /dev/null +++ b/v1.43/054225q67.json @@ -0,0 +1,151 @@ +{ + "id": "https://ror.org/054225q67", + "name": "Cancer Research UK", + "email_address": "", + "ip_addresses": [], + "established": 2002, + "types": [ + "Nonprofit" + ], + "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" + } + ], + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.cancerresearchuk.org/" + ], + "aliases": [], + "acronyms": [ + "CRUK" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Cancer_Research_UK", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0422 0975" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100000289" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "615793" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q326079" + ] + }, + "GRID": { + "preferred": "grid.11485.39", + "all": "grid.11485.39" + } + } +} \ No newline at end of file diff --git a/v1.43/054a6d704.json b/v1.43/054a6d704.json new file mode 100644 index 000000000..8e18007d6 --- /dev/null +++ b/v1.43/054a6d704.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/054a6d704", + "name": "Sociedad Estatal de Participaciones Industriales", + "email_address": null, + "ip_addresses": [], + "established": 1995, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.sepi.es" + ], + "aliases": [], + "acronyms": [ + "SEPI" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Sociedad_Estatal_de_Participaciones_Industriales", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1960 2720" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1436777" + ] + }, + "GRID": { + "preferred": "grid.425604.1", + "all": "grid.425604.1" + } + } +} \ No newline at end of file diff --git a/v1.43/054wajj09.json b/v1.43/054wajj09.json new file mode 100644 index 000000000..fa4f7a6db --- /dev/null +++ b/v1.43/054wajj09.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/054wajj09", + "name": "Huntington University", + "email_address": "", + "ip_addresses": [], + "established": 1897, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 40.8831, + "lng": -85.49748, + "state": null, + "state_code": null, + "city": "Huntington", + "geonames_city": { + "id": 4921725, + "city": "Huntington", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Huntington", + "id": 4921729, + "ascii_name": "Huntington", + "code": "US.IN.069" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.huntington.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Huntington_University_(United_States)", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0412 9856" + ] + }, + "OrgRef": { + "preferred": "2486144", + "all": [ + "2486144", + "25575845" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5945524" + ] + }, + "GRID": { + "preferred": "grid.431789.0", + "all": "grid.431789.0" + } + } +} \ No newline at end of file diff --git a/v1.43/0551gkb08.json b/v1.43/0551gkb08.json new file mode 100644 index 000000000..00bbee2e1 --- /dev/null +++ b/v1.43/0551gkb08.json @@ -0,0 +1,92 @@ +{ + "ip_addresses": [], + "aliases": [ + "Center for Integrated Systems" + ], + "acronyms": [ + "CIS" + ], + "links": [ + "https://systemx.stanford.edu" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Stanford SystemX Alliance", + "wikipedia_url": null, + "addresses": [ + { + "lat": 37.42411, + "lng": -122.16608, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Stanford", + "geonames_city": { + "id": 5398563, + "city": "Stanford", + "geonames_admin1": { + "name": "California", + "ascii_name": "California", + "id": 5332921, + "code": "US.CA" + }, + "geonames_admin2": { + "name": "Santa Clara", + "id": 5393021, + "ascii_name": "Santa Clara", + "code": "US.CA.085" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8307 2922", + "all": [ + "0000 0004 8307 2922" + ] + }, + "FundRef": { + "preferred": "100015269", + "all": [ + "100015269" + ] + } + }, + "established": 1978, + "relationships": [ + { + "label": "Stanford University", + "type": "Parent", + "id": "https://ror.org/00f54p054" + } + ], + "email_address": null, + "id": "https://ror.org/0551gkb08", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05591te55.json b/v1.43/05591te55.json new file mode 100644 index 000000000..224c0e89d --- /dev/null +++ b/v1.43/05591te55.json @@ -0,0 +1,142 @@ +{ + "id": "https://ror.org/05591te55", + "name": "Ludwig-Maximilians-Universität München", + "email_address": null, + "ip_addresses": [], + "established": 1472, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.13743, + "lng": 11.57549, + "state": null, + "state_code": null, + "city": "Munich", + "geonames_city": { + "id": 2867714, + "city": "Munich", + "geonames_admin1": { + "name": "Bavaria", + "id": 2951839, + "ascii_name": "Bavaria", + "code": "DE.02" + }, + "geonames_admin2": { + "name": "Upper Bavaria", + "id": 2861322, + "ascii_name": "Upper Bavaria", + "code": "DE.02.091" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.lmu.de" + ], + "aliases": [ + "University of Munich", + "Universität München", + "Ludwig Maximilian University of Munich" + ], + "acronyms": [ + "LMU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Ludwig_Maximilian_University_of_Munich", + "labels": [ + { + "label": "Ludwig-Maximilians-Universität in Munich", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1936 973X" + ] + }, + "FundRef": { + "preferred": "501100005722", + "all": [ + "501100005722", + "501100006192", + "501100009401" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "252750" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q55044" + ] + }, + "GRID": { + "preferred": "grid.5252.0", + "all": "grid.5252.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..898838ff2 --- /dev/null +++ b/v1.43/055rh9p75.json @@ -0,0 +1,83 @@ +{ + "ip_addresses": [], + "aliases": [ + "State Key Lab of Aerodynamics", + "空气动力学国家重点实验室", + "State Key Laboratory of Aerodynamic Science and Technology", + "State Key Lab of Aerodynamic Science and Technology" + ], + "acronyms": [], + "links": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "State Key Laboratory of Aerodynamics", + "wikipedia_url": null, + "addresses": [ + { + "lat": 31.46784, + "lng": 104.68168, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Mianyang", + "geonames_city": { + "id": 1800627, + "city": "Mianyang", + "geonames_admin1": { + "name": "Sichuan", + "ascii_name": "Sichuan", + "id": 1794299, + "code": "CN.32" + }, + "geonames_admin2": { + "name": "Mianyang Shi", + "id": 1800626, + "ascii_name": "Mianyang Shi", + "code": "CN.32.5107" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": 2007, + "relationships": [ + { + "label": "China Aerodynamics Research and Development Center", + "type": "Parent", + "id": "https://ror.org/00jma8s40" + } + ], + "email_address": null, + "id": "https://ror.org/055rh9p75", + "labels": [ + { + "label": "空天飞行空气动力科学与技术全国重点实验室", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/055s8hs34.json b/v1.43/055s8hs34.json new file mode 100644 index 000000000..9086ed401 --- /dev/null +++ b/v1.43/055s8hs34.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/055s8hs34", + "name": "Stabilité génétique et oncogenèse", + "email_address": null, + "ip_addresses": [], + "established": 2010, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.7939, + "lng": 2.35992, + "state": null, + "state_code": null, + "city": "Villejuif", + "geonames_city": { + "id": 2968705, + "city": "Villejuif", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Val-de-Marne", + "id": 2971090, + "ascii_name": "Val-de-Marne", + "code": "FR.11.94" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.gustaveroussy.fr/en/content/umr-8200-0" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "Genetic Stability and Oncogenesis", + "iso639": "en" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0480 0128" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR 8200" + ] + }, + "GRID": { + "preferred": "grid.493856.5", + "all": "grid.493856.5" + } + } +} \ No newline at end of file diff --git a/v1.43/0561n6946.json b/v1.43/0561n6946.json new file mode 100644 index 000000000..fedfeac67 --- /dev/null +++ b/v1.43/0561n6946.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/0561n6946", + "name": "Romanian Academy", + "email_address": null, + "ip_addresses": [], + "established": 1866, + "types": [ + "Archive" + ], + "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" + } + ], + "addresses": [ + { + "lat": 44.43225, + "lng": 26.10626, + "state": null, + "state_code": null, + "city": "Bucharest", + "geonames_city": { + "id": 683506, + "city": "Bucharest", + "geonames_admin1": { + "name": "București", + "id": 683504, + "ascii_name": "București", + "code": "RO.10" + }, + "geonames_admin2": { + "name": "Municipiul Bucureşti", + "id": 8335003, + "ascii_name": "Municipiul Bucureşti", + "code": "RO.10.179132" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 798549 + } + ], + "links": [ + "http://www.academiaromana.ro/def2002eng.htm" + ], + "aliases": [ + "Academia Română", + "Societatea Literară Română", + "Societatea Academică Romînă" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Romanian_Academy", + "labels": [], + "country": { + "country_name": "Romania", + "country_code": "RO" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1937 1389" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100006476" + ] + }, + "Wikidata": { + "preferred": "Q901677", + "all": [ + "Q901677", + "Q10302891", + "Q26690209", + "Q39418041" + ] + }, + "GRID": { + "preferred": "grid.418333.e", + "all": "grid.418333.e" + } + } +} \ No newline at end of file diff --git a/v1.43/0566sj483.json b/v1.43/0566sj483.json new file mode 100644 index 000000000..486f8940f --- /dev/null +++ b/v1.43/0566sj483.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/0566sj483", + "name": "Earlham College", + "email_address": null, + "ip_addresses": [], + "established": 1847, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 39.82894, + "lng": -84.89024, + "state": null, + "state_code": null, + "city": "Richmond", + "geonames_city": { + "id": 4263681, + "city": "Richmond", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Wayne", + "id": 4266673, + "ascii_name": "Wayne", + "code": "US.IN.177" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.earlham.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Earlham_College", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1960 0522" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "643375" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5326502" + ] + }, + "GRID": { + "preferred": "grid.255360.7", + "all": "grid.255360.7" + } + } +} \ No newline at end of file diff --git a/v1.43/05679z329.json b/v1.43/05679z329.json new file mode 100644 index 000000000..3032540cc --- /dev/null +++ b/v1.43/05679z329.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [ + "Washington State Grain Commission" + ], + "acronyms": [ + "WGC" + ], + "links": [ + "https://wagrains.org" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Washington Grain Commission", + "wikipedia_url": null, + "addresses": [ + { + "lat": 47.65966, + "lng": -117.42908, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Spokane", + "geonames_city": { + "id": 5811696, + "city": "Spokane", + "geonames_admin1": { + "name": "Washington", + "ascii_name": "Washington", + "id": 5815135, + "code": "US.WA" + }, + "geonames_admin2": { + "name": "Spokane", + "id": 5811704, + "ascii_name": "Spokane", + "code": "US.WA.063" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6087 9942", + "all": [ + "0000 0004 6087 9942" + ] + }, + "FundRef": { + "preferred": "100011502", + "all": [ + "100011502" + ] + } + }, + "established": 2009, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05679z329", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/0568g2481.json b/v1.43/0568g2481.json new file mode 100644 index 000000000..fc45f851c --- /dev/null +++ b/v1.43/0568g2481.json @@ -0,0 +1,87 @@ +{ + "ip_addresses": [], + "aliases": [ + "Nonwovens Institute", + "North Carolina State University Nonwovens Institute" + ], + "acronyms": [ + "NWI NCSU" + ], + "links": [ + "https://thenonwovensinstitute.com" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "The Nonwovens Institute", + "wikipedia_url": null, + "addresses": [ + { + "lat": 35.7721, + "lng": -78.63861, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Raleigh", + "geonames_city": { + "id": 4487042, + "city": "Raleigh", + "geonames_admin1": { + "name": "North Carolina", + "ascii_name": "North Carolina", + "id": 4482348, + "code": "US.NC" + }, + "geonames_admin2": { + "name": "Wake", + "id": 4497286, + "ascii_name": "Wake", + "code": "US.NC.183" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "100012671", + "all": [ + "100012671" + ] + } + }, + "established": 2007, + "relationships": [ + { + "label": "North Carolina State University", + "type": "Parent", + "id": "https://ror.org/04tj63d06" + } + ], + "email_address": null, + "id": "https://ror.org/0568g2481", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05691ev83.json b/v1.43/05691ev83.json new file mode 100644 index 000000000..192f6b70e --- /dev/null +++ b/v1.43/05691ev83.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/05691ev83", + "name": "Alexandria Archive Institute", + "email_address": null, + "ip_addresses": [], + "established": 2001, + "types": [ + "Archive" + ], + "relationships": [], + "addresses": [ + { + "lat": 37.77493, + "lng": -122.41942, + "state": null, + "state_code": null, + "city": "San Francisco", + "geonames_city": { + "id": 5391959, + "city": "San Francisco", + "geonames_admin1": { + "name": "California", + "id": 5332921, + "ascii_name": "California", + "code": "US.CA" + }, + "geonames_admin2": { + "name": "San Francisco County", + "id": 5391997, + "ascii_name": "San Francisco County", + "code": "US.CA.075" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://alexandriaarchive.org/" + ], + "aliases": [ + "Open Context", + "OpenContext", + "OpenContext.org" + ], + "acronyms": [ + "AAI" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 6073 3003" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30257865" + ] + }, + "GRID": { + "preferred": "grid.446377.5", + "all": "grid.446377.5" + } + } +} \ No newline at end of file diff --git a/v1.43/056nnzb78.json b/v1.43/056nnzb78.json new file mode 100644 index 000000000..305c6e496 --- /dev/null +++ b/v1.43/056nnzb78.json @@ -0,0 +1,90 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "RAS" + ], + "links": [ + "https://www.rasny.org" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Rochester Academy of Science", + "wikipedia_url": null, + "addresses": [ + { + "lat": 43.15478, + "lng": -77.61556, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Rochester", + "geonames_city": { + "id": 5134086, + "city": "Rochester", + "geonames_admin1": { + "name": "New York", + "ascii_name": "New York", + "id": 5128638, + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Monroe", + "id": 5127305, + "ascii_name": "Monroe", + "code": "US.NY.055" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0940 8270", + "all": [ + "0000 0001 0940 8270" + ] + }, + "Wikidata": { + "preferred": "Q70060834", + "all": [ + "Q70060834" + ] + }, + "FundRef": { + "preferred": "100011435", + "all": [ + "100011435" + ] + } + }, + "established": 1881, + "relationships": [], + "email_address": null, + "id": "https://ror.org/056nnzb78", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/056vjed89.json b/v1.43/056vjed89.json new file mode 100644 index 000000000..5e29e476c --- /dev/null +++ b/v1.43/056vjed89.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/056vjed89", + "name": "Centro Multidisciplinar de Tecnologías para la Industria", + "email_address": null, + "ip_addresses": [], + "established": 1992, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 42.81687, + "lng": -1.64323, + "state": null, + "state_code": null, + "city": "Pamplona", + "geonames_city": { + "id": 3114472, + "city": "Pamplona", + "geonames_admin1": { + "name": "Navarre", + "id": 3115609, + "ascii_name": "Navarre", + "code": "ES.32" + }, + "geonames_admin2": { + "name": "Navarre", + "id": 6355235, + "ascii_name": "Navarre", + "code": "ES.32.NA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.cemitec.com/" + ], + "aliases": [], + "acronyms": [ + "CEMITEC" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [ + { + "label": "Cetena Foundation´s Multidisciplinary Innovation and Technology Centre of Navarre", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 4687 7107" + ] + }, + "GRID": { + "preferred": "grid.424804.e", + "all": "grid.424804.e" + } + } +} \ No newline at end of file diff --git a/v1.43/0576by029.json b/v1.43/0576by029.json new file mode 100644 index 000000000..700d3490f --- /dev/null +++ b/v1.43/0576by029.json @@ -0,0 +1,85 @@ +{ + "id": "https://ror.org/0576by029", + "name": "Athena Research and Innovation Center In Information Communication & Knowledge Technologies", + "email_address": null, + "ip_addresses": [], + "established": 2003, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": 38.05, + "lng": 23.8, + "state": null, + "state_code": null, + "city": "Marousi", + "geonames_city": { + "id": 265243, + "city": "Marousi", + "geonames_admin1": { + "name": "Attica", + "id": 6692632, + "ascii_name": "Attica", + "code": "GR.ESYE31" + }, + "geonames_admin2": { + "name": "Nomarchía Athínas", + "id": 445408, + "ascii_name": "Nomarchía Athínas", + "code": "GR.ESYE31.99" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 390903 + } + ], + "links": [ + "https://www.athena-innovation.gr/el/announce/pressreleases.html" + ], + "aliases": [ + "Athena RIC", + "Athena Research and Innovation Center", + "Athena Research Center", + "Athena RC" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Greece", + "country_code": "GR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0393 5688" + ] + }, + "GRID": { + "preferred": "grid.19843.37", + "all": "grid.19843.37" + } + } +} \ No newline at end of file diff --git a/v1.43/057apef51.json b/v1.43/057apef51.json new file mode 100644 index 000000000..b17d27d3e --- /dev/null +++ b/v1.43/057apef51.json @@ -0,0 +1,90 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "CQMF", + "QCAM" + ], + "links": [ + "http://cqmf-qcam.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Centre québécois sur les matériaux fonctionnels", + "wikipedia_url": null, + "addresses": [ + { + "lat": 45.50884, + "lng": -73.58781, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Montreal", + "geonames_city": { + "id": 6077243, + "city": "Montreal", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Montréal", + "id": 6077246, + "ascii_name": "Montréal", + "code": "CA.10.06" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 1088 8602", + "all": [ + "0000 0005 1088 8602" + ] + }, + "FundRef": { + "preferred": "100015427", + "all": [ + "100015427" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/057apef51", + "labels": [ + { + "label": "Quebec Centre for Advanced Materials", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/057c1ry34.json b/v1.43/057c1ry34.json new file mode 100644 index 000000000..991fb0efa --- /dev/null +++ b/v1.43/057c1ry34.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "CISSS de la Montérégie-Est" + ], + "acronyms": [], + "links": [ + "https://www.santemonteregie.qc.ca/est" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Centre intégré de santé et de services sociaux de la Montérégie-Est", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux", + "addresses": [ + { + "lat": 45.63076, + "lng": -72.95699, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Saint-Hyacinthe", + "geonames_city": { + "id": 6138374, + "city": "Saint-Hyacinthe", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Montérégie", + "id": 6076966, + "ascii_name": "Montérégie", + "code": "CA.10.16" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 4910 5137", + "all": [ + "0000 0004 4910 5137" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/057c1ry34", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/057k6gq03.json b/v1.43/057k6gq03.json new file mode 100644 index 000000000..7c0e7ff5f --- /dev/null +++ b/v1.43/057k6gq03.json @@ -0,0 +1,77 @@ +{ + "ip_addresses": [], + "aliases": [ + "Fundacion Centro de Servicios y Promocion Forestal y de su Industria de Castilla y Leon" + ], + "acronyms": [], + "links": [ + "https://www.cesefor.com" + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "name": "Cesefor", + "wikipedia_url": null, + "addresses": [ + { + "lat": 41.76401, + "lng": -2.46883, + "state": null, + "state_code": null, + "country_geonames_id": 2510769, + "city": "Soria", + "geonames_city": { + "id": 3108681, + "city": "Soria", + "geonames_admin1": { + "name": "Castille and León", + "ascii_name": "Castille and León", + "id": 3336900, + "code": "ES.55" + }, + "geonames_admin2": { + "name": "Soria", + "id": 3108680, + "ascii_name": "Soria", + "code": "ES.55.SO" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": {}, + "established": null, + "relationships": [ + { + "label": "Instituto de Biotecnología de León", + "type": "Predecessor", + "id": "https://ror.org/03ry8wj79" + } + ], + "email_address": null, + "id": "https://ror.org/057k6gq03", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/057p7e749.json b/v1.43/057p7e749.json new file mode 100644 index 000000000..d12f983c7 --- /dev/null +++ b/v1.43/057p7e749.json @@ -0,0 +1,97 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "PCAARRD", + "DOST-PCAARRD" + ], + "links": [ + "https://www.pcaarrd.dost.gov.ph" + ], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "name": "Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development", + "wikipedia_url": "https://en.wikipedia.org/wiki/Philippine_Council_for_Agriculture%2C_Aquatic%2C_and_Natural_Resources_Research_and_Development", + "addresses": [ + { + "lat": 14.17025, + "lng": 121.24181, + "state": null, + "state_code": null, + "country_geonames_id": 1694008, + "city": "Los Baños", + "geonames_city": { + "id": 1705536, + "city": "Los Baños", + "geonames_admin1": { + "name": "Calabarzon", + "ascii_name": "Calabarzon", + "id": 7521303, + "code": "PH.40" + }, + "geonames_admin2": { + "name": "Laguna", + "id": 1708026, + "ascii_name": "Laguna", + "code": "PH.40.33" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0095 710X", + "all": [ + "0000 0001 0095 710X" + ] + }, + "Wikidata": { + "preferred": "Q7185026", + "all": [ + "Q7185026" + ] + }, + "FundRef": { + "preferred": "501100014166", + "all": [ + "501100014166" + ] + } + }, + "established": 1972, + "relationships": [ + { + "label": "Department of Science and Technology", + "type": "Parent", + "id": "https://ror.org/05tgxx705" + } + ], + "email_address": null, + "id": "https://ror.org/057p7e749", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/057yy7z71.json b/v1.43/057yy7z71.json new file mode 100644 index 000000000..bb6e41dfa --- /dev/null +++ b/v1.43/057yy7z71.json @@ -0,0 +1,92 @@ +{ + "id": "https://ror.org/057yy7z71", + "name": "Ramem (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 1958, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Arquimea (Spain)", + "type": "Successor", + "id": "https://ror.org/04mnaqe33" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://ramem.com/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0496 3568" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30291296" + ] + }, + "GRID": { + "preferred": "grid.437178.e", + "all": "grid.437178.e" + } + } +} \ No newline at end of file diff --git a/v1.43/0589k3111.json b/v1.43/0589k3111.json new file mode 100644 index 000000000..2593d0ff1 --- /dev/null +++ b/v1.43/0589k3111.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/0589k3111", + "name": "Délégation Paris 11", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.idf.inserm.fr/rubriques/l-inserm-en-ile-de-france/delegation-paris-11" + ], + "aliases": [ + "DR PARIS 11" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30299499" + ] + }, + "GRID": { + "preferred": "grid.457369.a", + "all": "grid.457369.a" + } + } +} \ No newline at end of file diff --git a/v1.43/058cmwb06.json b/v1.43/058cmwb06.json new file mode 100644 index 000000000..b7885af00 --- /dev/null +++ b/v1.43/058cmwb06.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/058cmwb06", + "name": "Organización Nacional de Ciegos Españoles", + "email_address": null, + "ip_addresses": [], + "established": 1938, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.once.es" + ], + "aliases": [], + "acronyms": [ + "ONCE" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/ONCE", + "labels": [ + { + "label": "National Organization of Spanish blind people", + "iso639": "en" + } + ], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0132 5286" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1750397" + ] + }, + "GRID": { + "preferred": "grid.426205.7", + "all": "grid.426205.7" + } + } +} \ No newline at end of file diff --git a/v1.43/058ne9w36.json b/v1.43/058ne9w36.json new file mode 100644 index 000000000..860f88e5c --- /dev/null +++ b/v1.43/058ne9w36.json @@ -0,0 +1,88 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://www.royalmarsden.org" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Royal Marsden Cancer Charity", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0490 965X", + "all": [ + "0000 0004 0490 965X" + ] + }, + "FundRef": { + "preferred": "100016916", + "all": [ + "100016916" + ] + } + }, + "established": 2002, + "relationships": [ + { + "label": "Royal Marsden Hospital", + "type": "Parent", + "id": "https://ror.org/034vb5t35" + } + ], + "email_address": null, + "id": "https://ror.org/058ne9w36", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/058sakv40.json b/v1.43/058sakv40.json new file mode 100644 index 000000000..3d30d3fea --- /dev/null +++ b/v1.43/058sakv40.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/058sakv40", + "name": "Corewell Health William Beaumont University Hospital", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Corewell Health", + "type": "Parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "addresses": [ + { + "lat": 42.13949, + "lng": -83.17826, + "state": null, + "state_code": null, + "city": "Trenton", + "geonames_city": { + "id": 5012521, + "city": "Trenton", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Wayne", + "id": 5014227, + "ascii_name": "Wayne", + "code": "US.MI.163" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.beaumont.org/locations/beaumont-hospital-trenton" + ], + "aliases": [ + "Oakwood Southshore Medical Center", + "Beaumont Hospital, Trenton" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0458 375X" + ] + }, + "GRID": { + "preferred": "grid.416679.b", + "all": "grid.416679.b" + } + } +} \ No newline at end of file diff --git a/v1.43/059gc9s81.json b/v1.43/059gc9s81.json new file mode 100644 index 000000000..a57dd8fb1 --- /dev/null +++ b/v1.43/059gc9s81.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/059gc9s81", + "name": "United Nations University Institute on Globalization, Culture and Mobility", + "email_address": null, + "ip_addresses": [], + "established": 1973, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "United Nations University", + "type": "Parent", + "id": "https://ror.org/01cdrde68" + } + ], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://gcm.unu.edu/" + ], + "aliases": [], + "acronyms": [ + "UNU-GCM" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/United_Nations_University", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 4679 2779" + ] + }, + "GRID": { + "preferred": "grid.473816.f", + "all": "grid.473816.f" + } + } +} \ No newline at end of file diff --git a/v1.43/059wz5438.json b/v1.43/059wz5438.json new file mode 100644 index 000000000..b1a17b403 --- /dev/null +++ b/v1.43/059wz5438.json @@ -0,0 +1,91 @@ +{ + "ip_addresses": [], + "aliases": [ + "China Huaneng Group Co., Ltd.", + "China Huaneng Group Co.", + "China Huaneng Group" + ], + "acronyms": [], + "links": [ + "http://www.chng.com.cn" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "China Huaneng Group Co., Ltd. (China)", + "wikipedia_url": "https://en.wikipedia.org/wiki/China_Huaneng_Group", + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "name": "Beijing", + "ascii_name": "Beijing", + "id": 2038349, + "code": "CN.22" + }, + "geonames_admin2": { + "name": "Beijing", + "id": 11876380, + "ascii_name": "Beijing", + "code": "CN.22.11876380" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0512 5953", + "all": [ + "0000 0004 0512 5953" + ] + }, + "Wikidata": { + "preferred": "Q842509", + "all": [ + "Q842509" + ] + } + }, + "established": 1989, + "relationships": [], + "email_address": null, + "id": "https://ror.org/059wz5438", + "labels": [ + { + "label": "中国华能集团", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/059zf1d45.json b/v1.43/059zf1d45.json new file mode 100644 index 000000000..9e66666ee --- /dev/null +++ b/v1.43/059zf1d45.json @@ -0,0 +1,82 @@ +{ + "id": "https://ror.org/059zf1d45", + "name": "Institut Universitari de Ciencia i Tecnologia (Spain)", + "email_address": "", + "ip_addresses": [], + "established": 1997, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.55222, + "lng": 2.20901, + "state": null, + "state_code": null, + "city": "Mollet del Vallès", + "geonames_city": { + "id": 6356153, + "city": "Mollet del Vallès", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "http://www.iuct.com/en/" + ], + "aliases": [], + "acronyms": [ + "IUCT" + ], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0507 1975" + ] + }, + "GRID": { + "preferred": "grid.434941.f", + "all": "grid.434941.f" + } + } +} \ No newline at end of file diff --git a/v1.43/05a0dhs15.json b/v1.43/05a0dhs15.json new file mode 100644 index 000000000..7f17eb502 --- /dev/null +++ b/v1.43/05a0dhs15.json @@ -0,0 +1,309 @@ +{ + "id": "https://ror.org/05a0dhs15", + "name": "École Normale Supérieure - PSL", + "email_address": null, + "ip_addresses": [], + "established": 1794, + "types": [ + "Other" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.ens.psl.eu/" + ], + "aliases": [ + "Normale sup", + "ENS Paris" + ], + "acronyms": [ + "ENS" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/%C3%89cole_Normale_Sup%C3%A9rieure", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2353 2622", + "all": [ + "0000 0001 2353 2622" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100007649" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "317478" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q83259" + ] + }, + "GRID": { + "preferred": "grid.5607.4", + "all": "grid.5607.4" + } + } +} \ No newline at end of file diff --git a/v1.43/05a0ya142.json b/v1.43/05a0ya142.json new file mode 100644 index 000000000..3c4ee9f50 --- /dev/null +++ b/v1.43/05a0ya142.json @@ -0,0 +1,142 @@ +{ + "id": "https://ror.org/05a0ya142", + "name": "Broad Institute", + "email_address": "", + "ip_addresses": [], + "established": 2004, + "types": [ + "Nonprofit" + ], + "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" + } + ], + "addresses": [ + { + "lat": 42.3751, + "lng": -71.10561, + "state": null, + "state_code": null, + "city": "Cambridge", + "geonames_city": { + "id": 4931972, + "city": "Cambridge", + "geonames_admin1": { + "name": "Massachusetts", + "id": 6254926, + "ascii_name": "Massachusetts", + "code": "US.MA" + }, + "geonames_admin2": { + "name": "Middlesex", + "id": 4943909, + "ascii_name": "Middlesex", + "code": "US.MA.017" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.broadinstitute.org/" + ], + "aliases": [ + "Broad Institute of MIT and Harvard", + "Eli and Edythe L. Broad Institute of MIT and Harvard" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Broad_Institute", + "labels": [ + { + "label": "El Instituto Broad", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0546 1623", + "all": [ + "0000 0004 0546 1623" + ] + }, + "FundRef": { + "preferred": "100013114", + "all": [ + "100013114" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2447768" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q4971893" + ] + }, + "GRID": { + "preferred": "grid.66859.34", + "all": "grid.66859.34" + } + } +} \ No newline at end of file diff --git a/v1.43/05a28rw58.json b/v1.43/05a28rw58.json new file mode 100644 index 000000000..7f1e94a33 --- /dev/null +++ b/v1.43/05a28rw58.json @@ -0,0 +1,149 @@ +{ + "id": "https://ror.org/05a28rw58", + "name": "ETH Zurich", + "email_address": null, + "ip_addresses": [], + "established": 1855, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Board of the Swiss Federal Institutes of Technology", + "type": "Parent", + "id": "https://ror.org/01rvn4p91" + }, + { + "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": "ETH Zürich Foundation", + "type": "Related", + "id": "https://ror.org/03nqkz164" + }, + { + "label": "CSCS - Swiss National Supercomputing Centre", + "type": "Child", + "id": "https://ror.org/04rzmms09" + }, + { + "label": "NCCR SwissMAP", + "type": "Child", + "id": "https://ror.org/00xzacp61" + } + ], + "addresses": [ + { + "lat": 47.36667, + "lng": 8.55, + "state": null, + "state_code": null, + "city": "Zurich", + "geonames_city": { + "id": 2657896, + "city": "Zurich", + "geonames_admin1": { + "name": "Zurich", + "id": 2657895, + "ascii_name": "Zurich", + "code": "CH.ZH" + }, + "geonames_admin2": { + "name": "Zürich District", + "id": 6458798, + "ascii_name": "Zürich District", + "code": "CH.ZH.112" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://ethz.ch" + ], + "aliases": [ + "Swiss Federal Institute of Technology in Zurich", + "Eidgenössische Technische Hochschule Zürich", + "École Polytechnique Fédérale de Zurich", + "Politecnico Federale di Zurigo" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/ETH_Zurich", + "labels": [ + { + "label": "ETH Zürich", + "iso639": "de" + }, + { + "label": "ETH Zurich", + "iso639": "fr" + }, + { + "label": "ETH di Zurigo", + "iso639": "it" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2156 2780" + ] + }, + "FundRef": { + "preferred": "501100003006", + "all": [ + "501100003006", + "501100001710", + "501100003070" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "210910" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q11942" + ] + }, + "GRID": { + "preferred": "grid.5801.c", + "all": "grid.5801.c" + } + } +} \ No newline at end of file diff --git a/v1.43/05a4pj207.json b/v1.43/05a4pj207.json new file mode 100644 index 000000000..18906bf92 --- /dev/null +++ b/v1.43/05a4pj207.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/05a4pj207", + "name": "State University of New York College at Cortland", + "email_address": "", + "ip_addresses": [], + "established": 1868, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 42.60118, + "lng": -76.18048, + "state": null, + "state_code": null, + "city": "Cortland", + "geonames_city": { + "id": 5113790, + "city": "Cortland", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Cortland", + "id": 5113792, + "ascii_name": "Cortland", + "code": "US.NY.023" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www2.cortland.edu/home/" + ], + "aliases": [ + "SUNY Cortland" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/State_University_of_New_York_at_Cortland", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9340 0716" + ] + }, + "FundRef": { + "preferred": "100010962", + "all": [ + "100010962" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "527837" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7603623" + ] + }, + "GRID": { + "preferred": "grid.264266.2", + "all": "grid.264266.2" + } + } +} \ No newline at end of file diff --git a/v1.43/05b0g2v72.json b/v1.43/05b0g2v72.json new file mode 100644 index 000000000..51a9dc285 --- /dev/null +++ b/v1.43/05b0g2v72.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [ + "Real Colegio Complutense at Harvard University", + "RCC at Harvard University" + ], + "acronyms": [ + "RCCHU" + ], + "links": [ + "https://rcc.harvard.edu" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Real Colegio Complutense", + "wikipedia_url": "https://en.wikipedia.org/wiki/Real_Colegio_Complutense", + "addresses": [ + { + "lat": 42.3751, + "lng": -71.10561, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Cambridge", + "geonames_city": { + "id": 4931972, + "city": "Cambridge", + "geonames_admin1": { + "name": "Massachusetts", + "ascii_name": "Massachusetts", + "id": 6254926, + "code": "US.MA" + }, + "geonames_admin2": { + "name": "Middlesex", + "id": 4943909, + "ascii_name": "Middlesex", + "code": "US.MA.017" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q7300869", + "all": [ + "Q7300869" + ] + }, + "FundRef": { + "preferred": "100013721", + "all": [ + "100013721" + ] + } + }, + "established": 1990, + "relationships": [ + { + "label": "Harvard University", + "type": "Parent", + "id": "https://ror.org/03vek6s52" + } + ], + "email_address": null, + "id": "https://ror.org/05b0g2v72", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05bjr0y28.json b/v1.43/05bjr0y28.json new file mode 100644 index 000000000..2c7d7b94d --- /dev/null +++ b/v1.43/05bjr0y28.json @@ -0,0 +1,76 @@ +{ + "ip_addresses": [], + "aliases": [ + "Neurotech" + ], + "acronyms": [], + "links": [ + "https://www.neurotecheeg.com" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Neurotech, LLC (United States)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 43.01168, + "lng": -88.23148, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Waukesha", + "geonames_city": { + "id": 5278052, + "city": "Waukesha", + "geonames_admin1": { + "name": "Wisconsin", + "ascii_name": "Wisconsin", + "id": 5279468, + "code": "US.WI" + }, + "geonames_admin2": { + "name": "Waukesha", + "id": 5278054, + "ascii_name": "Waukesha", + "code": "US.WI.133" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Company" + ], + "external_ids": {}, + "established": 2006, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05bjr0y28", + "labels": [ + { + "label": "Neurotech, LLC", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05bnh6r87.json b/v1.43/05bnh6r87.json new file mode 100644 index 000000000..086393d2c --- /dev/null +++ b/v1.43/05bnh6r87.json @@ -0,0 +1,254 @@ +{ + "id": "https://ror.org/05bnh6r87", + "name": "Cornell University", + "email_address": null, + "ip_addresses": [], + "established": 1865, + "types": [ + "Education" + ], + "relationships": [ + { + "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": "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": "Hubbard Brook Long Term Ecological Research", + "type": "Related", + "id": "https://ror.org/00mkh7345" + }, + { + "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": "Cornell University Agricultural Experiment Station", + "type": "Child", + "id": "https://ror.org/012qsrr25" + }, + { + "label": "Great Lakes Research Consortium", + "type": "Related", + "id": "https://ror.org/05cshtm26" + } + ], + "addresses": [ + { + "lat": 42.44063, + "lng": -76.49661, + "state": null, + "state_code": null, + "city": "Ithaca", + "geonames_city": { + "id": 5122432, + "city": "Ithaca", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Tompkins", + "id": 5141153, + "ascii_name": "Tompkins", + "code": "US.NY.109" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.cornell.edu/" + ], + "aliases": [], + "acronyms": [ + "CU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Cornell_University", + "labels": [ + { + "label": "Universidad Cornell", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1936 877X" + ] + }, + "FundRef": { + "preferred": "100007231", + "all": [ + "100007231", + "100007604", + "100006480", + "100006077", + "100006471", + "100006923", + "100007272", + "100008586", + "100007232", + "100009083", + "100008674", + "100008585" + ] + }, + "OrgRef": { + "preferred": "7954422", + "all": [ + "7954422", + "329738", + "2551571" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q49115" + ] + }, + "GRID": { + "preferred": "grid.5386.8", + "all": "grid.5386.8" + } + } +} \ No newline at end of file diff --git a/v1.43/05bvkb649.json b/v1.43/05bvkb649.json new file mode 100644 index 000000000..42a99644e --- /dev/null +++ b/v1.43/05bvkb649.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05bvkb649", + "name": "Diputación Foral de Gipuzkoa", + "email_address": null, + "ip_addresses": [], + "established": 1976, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 43.36859, + "lng": -1.79622, + "state": null, + "state_code": null, + "city": "Hondarribia", + "geonames_city": { + "id": 3121881, + "city": "Hondarribia", + "geonames_admin1": { + "name": "Basque Country", + "id": 3336903, + "ascii_name": "Basque Country", + "code": "ES.59" + }, + "geonames_admin2": { + "name": "Gipuzkoa", + "id": 3120935, + "ascii_name": "Gipuzkoa", + "code": "ES.59.SS" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.gipuzkoa.eus" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0666 8923" + ] + }, + "FundRef": { + "preferred": "501100019124", + "all": [ + "501100019124" + ] + }, + "GRID": { + "preferred": "grid.484077.8", + "all": "grid.484077.8" + } + } +} \ No newline at end of file diff --git a/v1.43/05c7h4935.json b/v1.43/05c7h4935.json new file mode 100644 index 000000000..372ccf978 --- /dev/null +++ b/v1.43/05c7h4935.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/05c7h4935", + "name": "Ministry of Health", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Ghana Health Service", + "type": "Child", + "id": "https://ror.org/052ss8w32" + } + ], + "addresses": [ + { + "lat": 5.55602, + "lng": -0.1969, + "state": null, + "state_code": null, + "city": "Accra", + "geonames_city": { + "id": 2306104, + "city": "Accra", + "geonames_admin1": { + "name": "Greater Accra", + "id": 2300569, + "ascii_name": "Greater Accra", + "code": "GH.01" + }, + "geonames_admin2": { + "name": "Accra", + "id": 7648922, + "ascii_name": "Accra", + "code": "GH.01.304" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2300660 + } + ], + "links": [ + "https://www.moh.gov.gh" + ], + "aliases": [ + "Ministry of Health of Ghana", + "Ghanaian Ministry of Health" + ], + "acronyms": [ + "MoH" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Health_(Ghana)", + "labels": [], + "country": { + "country_name": "Ghana", + "country_code": "GH" + }, + "external_ids": { + "OrgRef": { + "preferred": null, + "all": [ + "21162922" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6867086" + ] + }, + "GRID": { + "preferred": "grid.415765.4", + "all": "grid.415765.4" + }, + "ISNI": { + "preferred": "0000 0001 0721 5002", + "all": [ + "0000 0001 0721 5002" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/05c8abs18.json b/v1.43/05c8abs18.json new file mode 100644 index 000000000..afaab5aa9 --- /dev/null +++ b/v1.43/05c8abs18.json @@ -0,0 +1,74 @@ +{ + "id": "https://ror.org/05c8abs18", + "name": "Barcelona Activa", + "email_address": null, + "ip_addresses": [], + "established": 1986, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.barcelonactiva.cat" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.432388.6", + "all": "grid.432388.6" + } + } +} \ No newline at end of file diff --git a/v1.43/05cebxq10.json b/v1.43/05cebxq10.json new file mode 100644 index 000000000..9321b68d1 --- /dev/null +++ b/v1.43/05cebxq10.json @@ -0,0 +1,99 @@ +{ + "ip_addresses": [], + "aliases": [ + "Nuclear Science and Technology Research Institute of Iran" + ], + "acronyms": [ + "NSTRI" + ], + "links": [ + "https://aeoi.org.ir/en/portal/home/?47916/%D8%B5%D9%81%D8%AD%D9%87-nuclear-science-and-technology-research" + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "name": "Nuclear Science and Technology Research Institute", + "wikipedia_url": null, + "addresses": [ + { + "lat": 35.69439, + "lng": 51.42151, + "state": null, + "state_code": null, + "country_geonames_id": 130758, + "city": "Tehran", + "geonames_city": { + "id": 112931, + "city": "Tehran", + "geonames_admin1": { + "name": "Tehran", + "ascii_name": "Tehran", + "id": 110791, + "code": "IR.26" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility", + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7433 9111", + "all": [ + "0000 0004 7433 9111" + ] + }, + "Wikidata": { + "preferred": "Q112085401", + "all": [ + "Q112085401" + ] + }, + "FundRef": { + "preferred": "501100010606", + "all": [ + "501100010606" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Atomic Energy Organization of Iran", + "type": "Parent", + "id": "https://ror.org/04feqxb79" + } + ], + "email_address": null, + "id": "https://ror.org/05cebxq10", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05cmj5t40.json b/v1.43/05cmj5t40.json new file mode 100644 index 000000000..fab449db0 --- /dev/null +++ b/v1.43/05cmj5t40.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "CISSS de la Montérégie-Ouest" + ], + "acronyms": [], + "links": [ + "https://www.santemonteregie.qc.ca/ouest" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Centre intégré de santé et de services sociaux de la Montérégie-Ouest", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux", + "addresses": [ + { + "lat": 45.38338, + "lng": -73.74919, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Châteauguay", + "geonames_city": { + "id": 5920433, + "city": "Châteauguay", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Montérégie", + "id": 6076966, + "ascii_name": "Montérégie", + "code": "CA.10.16" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 4910 5129", + "all": [ + "0000 0004 4910 5129" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05cmj5t40", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05cshtm26.json b/v1.43/05cshtm26.json new file mode 100644 index 000000000..95116baf3 --- /dev/null +++ b/v1.43/05cshtm26.json @@ -0,0 +1,170 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "GLRC" + ], + "links": [ + "https://www.esf.edu/glrc/index.php" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Great Lakes Research Consortium", + "wikipedia_url": null, + "addresses": [ + { + "lat": 43.04812, + "lng": -76.14742, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Syracuse", + "geonames_city": { + "id": 5140405, + "city": "Syracuse", + "geonames_admin1": { + "name": "New York", + "ascii_name": "New York", + "id": 5128638, + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Onondaga", + "id": 5129867, + "ascii_name": "Onondaga", + "code": "US.NY.067" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 1483 9309", + "all": [ + "0000 0004 1483 9309" + ] + }, + "FundRef": { + "preferred": "100013115", + "all": [ + "100013115" + ] + } + }, + "established": 2012, + "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" + } + ], + "email_address": null, + "id": "https://ror.org/05cshtm26", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05d6tb673.json b/v1.43/05d6tb673.json new file mode 100644 index 000000000..f74f906f4 --- /dev/null +++ b/v1.43/05d6tb673.json @@ -0,0 +1,95 @@ +{ + "ip_addresses": [], + "aliases": [ + "Liguria Region" + ], + "acronyms": [], + "links": [ + "https://www.regione.liguria.it" + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "name": "Regione Liguria", + "wikipedia_url": "https://it.wikipedia.org/wiki/Giunta_regionale_della_Liguria", + "addresses": [ + { + "lat": 44.40478, + "lng": 8.94439, + "state": null, + "state_code": null, + "country_geonames_id": 3175395, + "city": "Genoa", + "geonames_city": { + "id": 3176219, + "city": "Genoa", + "geonames_admin1": { + "name": "Liguria", + "ascii_name": "Liguria", + "id": 3174725, + "code": "IT.08" + }, + "geonames_admin2": { + "name": "Province of Genoa", + "id": 3176217, + "ascii_name": "Province of Genoa", + "code": "IT.08.GE" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 1530 5008", + "all": [ + "0000 0001 1530 5008" + ] + }, + "Wikidata": { + "preferred": "Q30888334", + "all": [ + "Q30888334" + ] + }, + "FundRef": { + "preferred": "501100009881", + "all": [ + "501100009881" + ] + } + }, + "established": 1948, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05d6tb673", + "labels": [ + { + "label": "Region of Liguria", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05d8cac05.json b/v1.43/05d8cac05.json new file mode 100644 index 000000000..6d25bb524 --- /dev/null +++ b/v1.43/05d8cac05.json @@ -0,0 +1,72 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "Shanghai Institute of Pollution Control and Ecological Security", + "wikipedia_url": null, + "addresses": [ + { + "lat": 31.22222, + "lng": 121.45806, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Shanghai", + "geonames_city": { + "id": 1796236, + "city": "Shanghai", + "geonames_admin1": { + "name": "Shanghai", + "ascii_name": "Shanghai", + "id": 1796231, + "code": "CN.23" + }, + "geonames_admin2": { + "name": "Shanghai Municipality", + "id": 12324204, + "ascii_name": "Shanghai Municipality", + "code": "CN.23.12324204" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05d8cac05", + "labels": [ + { + "label": "上海污染控制与生态安全研究院", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05dch6316.json b/v1.43/05dch6316.json new file mode 100644 index 000000000..39fb85555 --- /dev/null +++ b/v1.43/05dch6316.json @@ -0,0 +1,208 @@ +{ + "ip_addresses": [], + "aliases": [ + "Private Academic Library Network of Indiana, Inc.", + "Private Academic Library Network of Indiana" + ], + "acronyms": [ + "PALNI" + ], + "links": [ + "https://palni.org" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "wikipedia_url": null, + "addresses": [ + { + "lat": 39.76838, + "lng": -86.15804, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Indianapolis", + "geonames_city": { + "id": 4259418, + "city": "Indianapolis", + "geonames_admin1": { + "name": "Indiana", + "ascii_name": "Indiana", + "id": 4921868, + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Marion", + "id": 4260977, + "ascii_name": "Marion", + "code": "US.IN.097" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0431 6096", + "all": [ + "0000 0004 0431 6096" + ] + }, + "Wikidata": { + "preferred": "Q73495380", + "all": [ + "Q73495380" + ] + } + }, + "established": 1992, + "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" + } + ], + "email_address": null, + "id": "https://ror.org/05dch6316", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05dnzrj50.json b/v1.43/05dnzrj50.json new file mode 100644 index 000000000..9fb1922b0 --- /dev/null +++ b/v1.43/05dnzrj50.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/05dnzrj50", + "name": "Materials Sciences and Engineering Division", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "name": "Washington, D.C.", + "id": 4138106, + "ascii_name": "Washington, D.C.", + "code": "US.DC" + }, + "geonames_admin2": { + "name": "Washington", + "id": 4140987, + "ascii_name": "Washington", + "code": "US.DC.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://science.osti.gov/bes/mse" + ], + "aliases": [ + "Division of Materials Sciences and Engineering", + "Materials Sciences and Engineering (MSE) Division" + ], + "acronyms": [ + "DMSE", + "MSE" + ], + "status": "withdrawn", + "wikipedia_url": null, + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "FundRef": { + "preferred": "100013055", + "all": [ + "100013055" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/05dpfhh73.json b/v1.43/05dpfhh73.json new file mode 100644 index 000000000..653408299 --- /dev/null +++ b/v1.43/05dpfhh73.json @@ -0,0 +1,87 @@ +{ + "id": "https://ror.org/05dpfhh73", + "name": "Interactions Cellulaires et Physiopathologie Hépathique", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.scicf.universite-paris-saclay.fr" + ], + "aliases": [], + "acronyms": [ + "ICPH" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "GRID": { + "preferred": "grid.464067.7", + "all": "grid.464067.7" + } + } +} \ No newline at end of file diff --git a/v1.43/05dpwde09.json b/v1.43/05dpwde09.json new file mode 100644 index 000000000..f87a38a5d --- /dev/null +++ b/v1.43/05dpwde09.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://lupusuk.org.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "LUPUS UK", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.57515, + "lng": 0.18582, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Romford", + "geonames_city": { + "id": 2639192, + "city": "Romford", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 4904 9470", + "all": [ + "0000 0004 4904 9470" + ] + }, + "FundRef": { + "preferred": "501100018817", + "all": [ + "501100018817" + ] + } + }, + "established": 1990, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05dpwde09", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05dr3r825.json b/v1.43/05dr3r825.json new file mode 100644 index 000000000..14eda71cc --- /dev/null +++ b/v1.43/05dr3r825.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/05dr3r825", + "name": "ReumaNederland", + "email_address": null, + "ip_addresses": [], + "established": 1926, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 52.37403, + "lng": 4.88969, + "state": null, + "state_code": null, + "city": "Amsterdam", + "geonames_city": { + "id": 2759794, + "city": "Amsterdam", + "geonames_admin1": { + "name": "North Holland", + "id": 2749879, + "ascii_name": "North Holland", + "code": "NL.07" + }, + "geonames_admin2": { + "name": "Gemeente Amsterdam", + "id": 2759793, + "ascii_name": "Gemeente Amsterdam", + "code": "NL.07.0363" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2750405 + } + ], + "links": [ + "http://www.reumafonds.nl/" + ], + "aliases": [ + "Reumafonds" + ], + "acronyms": [ + "DAF" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Dutch Arthritis Foundation", + "iso639": "en" + } + ], + "country": { + "country_name": "The Netherlands", + "country_code": "NL" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0501 3257" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100006315", + "501100022115" + ] + }, + "GRID": { + "preferred": "grid.454756.1", + "all": "grid.454756.1" + } + } +} \ No newline at end of file diff --git a/v1.43/05dy6wv04.json b/v1.43/05dy6wv04.json new file mode 100644 index 000000000..c388160d7 --- /dev/null +++ b/v1.43/05dy6wv04.json @@ -0,0 +1,93 @@ +{ + "id": "https://ror.org/05dy6wv04", + "name": "Inflammation, Microbiome and Immunosurveillance", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Inserm", + "type": "Parent", + "id": "https://ror.org/02vjkv261" + }, + { + "label": "University of Paris-Saclay", + "type": "Parent", + "id": "https://ror.org/03xjwb503" + } + ], + "addresses": [ + { + "lat": 48.80299, + "lng": 2.26692, + "state": null, + "state_code": null, + "city": "Clamart", + "geonames_city": { + "id": 3024783, + "city": "Clamart", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Hauts-de-Seine", + "id": 3013657, + "ascii_name": "Hauts-de-Seine", + "code": "FR.11.92" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://umr996.inserm.fr/" + ], + "aliases": [ + "Inflammation, Chemokines and Immunopathology" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "CNRS": { + "preferred": null, + "all": [ + "UMR996" + ] + }, + "GRID": { + "preferred": "grid.503203.7", + "all": "grid.503203.7" + } + } +} \ No newline at end of file diff --git a/v1.43/05ehpzy81.json b/v1.43/05ehpzy81.json new file mode 100644 index 000000000..f75226bf3 --- /dev/null +++ b/v1.43/05ehpzy81.json @@ -0,0 +1,99 @@ +{ + "ip_addresses": [], + "aliases": [ + "中国电力科学研究院", + "China Electric Power Research Institute Co.", + "China Electric Power Research Institute Co., Ltd." + ], + "acronyms": [ + "CEPRI" + ], + "links": [ + "http://www.epri.sgcc.com.cn" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "China Electric Power Research Institute", + "wikipedia_url": null, + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "name": "Beijing", + "ascii_name": "Beijing", + "id": 2038349, + "code": "CN.22" + }, + "geonames_admin2": { + "name": "Beijing", + "id": 11876380, + "ascii_name": "Beijing", + "code": "CN.22.11876380" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 5928 1249", + "all": [ + "0000 0004 5928 1249" + ] + }, + "FundRef": { + "preferred": "501100015648", + "all": [ + "501100015648" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "State Grid Corporation of China (China)", + "type": "Parent", + "id": "https://ror.org/05twwhs70" + } + ], + "email_address": null, + "id": "https://ror.org/05ehpzy81", + "labels": [ + { + "label": "中国电力科学研究院有限公司", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05eky6607.json b/v1.43/05eky6607.json new file mode 100644 index 000000000..84ab6ad55 --- /dev/null +++ b/v1.43/05eky6607.json @@ -0,0 +1,78 @@ +{ + "ip_addresses": [], + "aliases": [ + "CISSS de l'Outaouais" + ], + "acronyms": [], + "links": [ + "https://cisss-outaouais.gouv.qc.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Centre intégré de santé et des services sociaux de l’Outaouais", + "wikipedia_url": "https://fr.wikipedia.org/wiki/Centre_int%C3%A9gr%C3%A9_de_sant%C3%A9_et_de_services_sociaux", + "addresses": [ + { + "lat": 45.47723, + "lng": -75.70164, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Gatineau", + "geonames_city": { + "id": 5959974, + "city": "Gatineau", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Outaouais", + "id": 6095306, + "ascii_name": "Outaouais", + "code": "CA.10.07" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Healthcare" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 8063 3499", + "all": [ + "0000 0004 8063 3499" + ] + } + }, + "established": 1967, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05eky6607", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05etxs293.json b/v1.43/05etxs293.json new file mode 100644 index 000000000..c05650cfd --- /dev/null +++ b/v1.43/05etxs293.json @@ -0,0 +1,104 @@ +{ + "id": "https://ror.org/05etxs293", + "name": "Diamond Light Source", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "LEAPS", + "type": "Related", + "id": "https://ror.org/04wcn4e27" + } + ], + "addresses": [ + { + "lat": 51.60928, + "lng": -1.24214, + "state": null, + "state_code": null, + "city": "Didcot", + "geonames_city": { + "id": 2651269, + "city": "Didcot", + "geonames_admin1": { + "name": "England", + "id": 6269131, + "ascii_name": "England", + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Oxfordshire", + "id": 2640726, + "ascii_name": "Oxfordshire", + "code": "GB.ENG.K2" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://www.diamond.ac.uk/Home.html" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Diamond_Light_Source", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1764 0696" + ] + }, + "FundRef": { + "preferred": "100011889", + "all": [ + "100011889" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "436077" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q652731" + ] + }, + "GRID": { + "preferred": "grid.18785.33", + "all": "grid.18785.33" + } + } +} \ No newline at end of file diff --git a/v1.43/05f82e368.json b/v1.43/05f82e368.json new file mode 100644 index 000000000..20f916089 --- /dev/null +++ b/v1.43/05f82e368.json @@ -0,0 +1,641 @@ +{ + "id": "https://ror.org/05f82e368", + "name": "Université Paris Cité", + "email_address": null, + "ip_addresses": [], + "established": 2019, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.85341, + "lng": 2.3488, + "state": null, + "state_code": null, + "city": "Paris", + "geonames_city": { + "id": 2988507, + "city": "Paris", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Paris", + "id": 2968815, + "ascii_name": "Paris", + "code": "FR.11.75" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://u-paris.fr/en" + ], + "aliases": [ + "University of Paris", + "Université de Paris" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/University_of_Paris_(2019)", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 7885 7602" + ] + }, + "FundRef": { + "preferred": "501100021716", + "all": [ + "501100021716" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q55849612" + ] + }, + "GRID": { + "preferred": "grid.508487.6", + "all": "grid.508487.6" + } + } +} \ No newline at end of file diff --git a/v1.43/05f8nen40.json b/v1.43/05f8nen40.json new file mode 100644 index 000000000..36a3fa3b6 --- /dev/null +++ b/v1.43/05f8nen40.json @@ -0,0 +1,84 @@ +{ + "id": "https://ror.org/05f8nen40", + "name": "AT4 wireless (Spain)", + "email_address": null, + "ip_addresses": [], + "established": 1991, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Dekra (Germany)", + "type": "Successor", + "id": "https://ror.org/02b3ny291" + } + ], + "addresses": [ + { + "lat": 36.72016, + "lng": -4.42034, + "state": null, + "state_code": null, + "city": "Málaga", + "geonames_city": { + "id": 2514256, + "city": "Málaga", + "geonames_admin1": { + "name": "Andalusia", + "id": 2593109, + "ascii_name": "Andalusia", + "code": "ES.51" + }, + "geonames_admin2": { + "name": "Malaga", + "id": 2514254, + "ascii_name": "Malaga", + "code": "ES.51.MA" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30284480" + ] + }, + "GRID": { + "preferred": "grid.423695.f", + "all": "grid.423695.f" + } + } +} \ No newline at end of file diff --git a/v1.43/05fp9g671.json b/v1.43/05fp9g671.json new file mode 100644 index 000000000..ab0c13c48 --- /dev/null +++ b/v1.43/05fp9g671.json @@ -0,0 +1,107 @@ +{ + "id": "https://ror.org/05fp9g671", + "name": "University of Mazandaran", + "email_address": null, + "ip_addresses": [], + "established": 1979, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 36.69929, + "lng": 52.65011, + "state": null, + "state_code": null, + "city": "Bābolsar", + "geonames_city": { + "id": 142358, + "city": "Bābolsar", + "geonames_admin1": { + "name": "Māzandarān", + "id": 124544, + "ascii_name": "Māzandarān", + "code": "IR.35" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 130758 + } + ], + "links": [ + "https://umz.ac.ir" + ], + "aliases": [ + "Reza Shah Kabir University" + ], + "acronyms": [ + "UMZ" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/University_of_Mazandaran", + "labels": [ + { + "label": "دانشگاه مازندران", + "iso639": "fa" + } + ], + "country": { + "country_name": "Iran", + "country_code": "IR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9618 7703" + ] + }, + "FundRef": { + "preferred": "501100016293", + "all": [ + "501100016293" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "5895407" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6672257" + ] + }, + "GRID": { + "preferred": "grid.411622.2", + "all": "grid.411622.2" + } + } +} \ No newline at end of file diff --git a/v1.43/05g2hd893.json b/v1.43/05g2hd893.json new file mode 100644 index 000000000..1d54eb7ac --- /dev/null +++ b/v1.43/05g2hd893.json @@ -0,0 +1,145 @@ +{ + "id": "https://ror.org/05g2hd893", + "name": "Beaumont Health", + "email_address": null, + "ip_addresses": [], + "established": 1955, + "types": [ + "Nonprofit" + ], + "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" + } + ], + "addresses": [ + { + "lat": 42.48948, + "lng": -83.14465, + "state": null, + "state_code": null, + "city": "Royal Oak", + "geonames_city": { + "id": 5007804, + "city": "Royal Oak", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Oakland", + "id": 5004223, + "ascii_name": "Oakland", + "code": "US.MI.125" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.beaumont.org/" + ], + "aliases": [ + "William Beaumont Health System" + ], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Beaumont_Health", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0460 1081" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100007740" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q970220" + ] + }, + "GRID": { + "preferred": "grid.461921.9", + "all": "grid.461921.9" + } + } +} \ No newline at end of file diff --git a/v1.43/05gfswd81.json b/v1.43/05gfswd81.json new file mode 100644 index 000000000..8c99d58b6 --- /dev/null +++ b/v1.43/05gfswd81.json @@ -0,0 +1,89 @@ +{ + "id": "https://ror.org/05gfswd81", + "name": "Institute for Research in Biomedicine", + "email_address": null, + "ip_addresses": [], + "established": 2000, + "types": [ + "Nonprofit" + ], + "relationships": [ + { + "label": "Università della Svizzera italiana", + "type": "Parent", + "id": "https://ror.org/03c4atk17" + } + ], + "addresses": [ + { + "lat": 46.19278, + "lng": 9.01703, + "state": null, + "state_code": null, + "city": "Bellinzona", + "geonames_city": { + "id": 2661567, + "city": "Bellinzona", + "geonames_admin1": { + "name": "Ticino", + "id": 2658370, + "ascii_name": "Ticino", + "code": "CH.TI" + }, + "geonames_admin2": { + "name": "Bellinzona", + "id": 6458870, + "ascii_name": "Bellinzona", + "code": "CH.TI.2101" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2658434 + } + ], + "links": [ + "https://www.irb.usi.ch/" + ], + "aliases": [], + "acronyms": [ + "IRB" + ], + "status": "active", + "wikipedia_url": null, + "labels": [ + { + "label": "Istituto di Ricerca in Biomedicina", + "iso639": "es" + } + ], + "country": { + "country_name": "Switzerland", + "country_code": "CH" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0509 2792", + "all": [ + "0000 0004 0509 2792" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/05ghke119.json b/v1.43/05ghke119.json new file mode 100644 index 000000000..c4fe1f973 --- /dev/null +++ b/v1.43/05ghke119.json @@ -0,0 +1,76 @@ +{ + "id": "https://ror.org/05ghke119", + "name": "Asociacion Valenciana de empresarios de plasticos", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Nonprofit" + ], + "relationships": [], + "addresses": [ + { + "lat": 39.47391, + "lng": -0.37966, + "state": null, + "state_code": null, + "city": "Valencia", + "geonames_city": { + "id": 2509954, + "city": "Valencia", + "geonames_admin1": { + "name": "Valencia", + "id": 2593113, + "ascii_name": "Valencia", + "code": "ES.60" + }, + "geonames_admin2": { + "name": "Valencia", + "id": 2509951, + "ascii_name": "Valencia", + "code": "ES.60.V" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.avep.es" + ], + "aliases": [], + "acronyms": [ + "AVEP" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "GRID": { + "preferred": "grid.432460.7", + "all": "grid.432460.7" + } + } +} \ No newline at end of file diff --git a/v1.43/05gq3a412.json b/v1.43/05gq3a412.json new file mode 100644 index 000000000..74e02e92b --- /dev/null +++ b/v1.43/05gq3a412.json @@ -0,0 +1,111 @@ +{ + "id": "https://ror.org/05gq3a412", + "name": "Butler University", + "email_address": null, + "ip_addresses": [], + "established": 1855, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 39.76838, + "lng": -86.15804, + "state": null, + "state_code": null, + "city": "Indianapolis", + "geonames_city": { + "id": 4259418, + "city": "Indianapolis", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Marion", + "id": 4260977, + "ascii_name": "Marion", + "code": "US.IN.097" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.butler.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Butler_University", + "labels": [ + { + "label": "Universidad Butler", + "iso639": "es" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8596 9494", + "0000 0004 1936 8286" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100002146", + "100006354" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "778928" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1017974" + ] + }, + "GRID": { + "preferred": "grid.253419.8", + "all": "grid.253419.8" + } + } +} \ No newline at end of file diff --git a/v1.43/05gt9yw23.json b/v1.43/05gt9yw23.json new file mode 100644 index 000000000..f55c9427e --- /dev/null +++ b/v1.43/05gt9yw23.json @@ -0,0 +1,83 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "JKU" + ], + "links": [ + "https://jku.edu.et" + ], + "country": { + "country_name": "Ethiopia", + "country_code": "ET" + }, + "name": "Jinka University", + "wikipedia_url": null, + "addresses": [ + { + "lat": 5.65, + "lng": 36.65, + "state": null, + "state_code": null, + "country_geonames_id": 337996, + "city": "Jinka", + "geonames_city": { + "id": 333750, + "city": "Jinka", + "geonames_admin1": { + "name": "SNNPR", + "ascii_name": "SNNPR", + "id": 444188, + "code": "ET.54" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0976 328X", + "all": [ + "0000 0005 0976 328X" + ] + } + }, + "established": 2017, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05gt9yw23", + "labels": [ + { + "label": "ጂንካ ዩኒቨርሲቲ", + "iso639": "am" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05h7ddb14.json b/v1.43/05h7ddb14.json new file mode 100644 index 000000000..d4b746d3e --- /dev/null +++ b/v1.43/05h7ddb14.json @@ -0,0 +1,108 @@ +{ + "id": "https://ror.org/05h7ddb14", + "name": "Centre de Biologie et de Gestion des Populations", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www6.montpellier.inrae.fr/cbgp_eng/" + ], + "aliases": [], + "acronyms": [ + "CBGP" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0598 8468" + ] + }, + "GRID": { + "preferred": "grid.464124.1", + "all": "grid.464124.1" + } + } +} \ No newline at end of file diff --git a/v1.43/05he0t313.json b/v1.43/05he0t313.json new file mode 100644 index 000000000..8135b4d3f --- /dev/null +++ b/v1.43/05he0t313.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/05he0t313", + "name": "Uniwersytet Kaliski im. Prezydenta Stanisława Wojciechowskiego", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 51.76109, + "lng": 18.09102, + "state": null, + "state_code": null, + "city": "Kalisz", + "geonames_city": { + "id": 3096880, + "city": "Kalisz", + "geonames_admin1": { + "name": "Greater Poland", + "id": 3337498, + "ascii_name": "Greater Poland", + "code": "PL.86" + }, + "geonames_admin2": { + "name": "Kalisz", + "id": 7530863, + "ascii_name": "Kalisz", + "code": "PL.86.3061" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 798544 + } + ], + "links": [ + "https://uniwersytetkaliski.edu.pl" + ], + "aliases": [ + "Uniwersytet Kaliski", + "Państwowa Wyższa Szkoła Zawodowa w Kaliszu" + ], + "acronyms": [ + "PWSZ" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0054 1382" + ] + }, + "GRID": { + "preferred": "grid.467042.3", + "all": "grid.467042.3" + }, + "Wikidata": { + "preferred": "Q11815238", + "all": [ + "Q11815238" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/05hqvvq43.json b/v1.43/05hqvvq43.json new file mode 100644 index 000000000..43a405c39 --- /dev/null +++ b/v1.43/05hqvvq43.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/05hqvvq43", + "name": "Government of Northwest Territories", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 62.45411, + "lng": -114.37248, + "state": null, + "state_code": null, + "city": "Yellowknife", + "geonames_city": { + "id": 6185377, + "city": "Yellowknife", + "geonames_admin1": { + "name": "Northwest Territories", + "id": 6091069, + "ascii_name": "Northwest Territories", + "code": "CA.13" + }, + "geonames_admin2": { + "name": "North Slave Region", + "id": 11995137, + "ascii_name": "North Slave Region", + "code": "CA.13.11995137" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "http://www.gov.nt.ca/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0607 6102", + "all": [ + "0000 0004 0607 6102" + ] + }, + "GRID": { + "preferred": "grid.451269.d", + "all": "grid.451269.d" + } + } +} \ No newline at end of file diff --git a/v1.43/05hs6h993.json b/v1.43/05hs6h993.json new file mode 100644 index 000000000..f418099f5 --- /dev/null +++ b/v1.43/05hs6h993.json @@ -0,0 +1,204 @@ +{ + "id": "https://ror.org/05hs6h993", + "name": "Michigan State University", + "email_address": null, + "ip_addresses": [], + "established": 1855, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 42.73698, + "lng": -84.48387, + "state": null, + "state_code": null, + "city": "East Lansing", + "geonames_city": { + "id": 4991640, + "city": "East Lansing", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Ingham", + "id": 4997130, + "ascii_name": "Ingham", + "code": "US.MI.065" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://msu.edu/" + ], + "aliases": [], + "acronyms": [ + "MSU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Michigan_State_University", + "labels": [ + { + "label": "Université d'État du michigan", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": "0000 0001 2195 6501", + "all": [ + "0000 0001 2195 6501", + "0000 0004 1375 3642" + ] + }, + "FundRef": { + "preferred": "100007709", + "all": [ + "100007709", + "100006534", + "100007508", + "100010507", + "100010518", + "100010603", + "100011138", + "100009585", + "100008425", + "100008587", + "100015893", + "100015892" + ] + }, + "OrgRef": { + "preferred": "241128", + "all": [ + "241128", + "729280" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q270222" + ] + }, + "GRID": { + "preferred": "grid.17088.36", + "all": "grid.17088.36" + } + } +} \ No newline at end of file diff --git a/v1.43/05hv77153.json b/v1.43/05hv77153.json new file mode 100644 index 000000000..6ab831bc7 --- /dev/null +++ b/v1.43/05hv77153.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/05hv77153", + "name": "Ministry of Education and Child Care", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": 48.4359, + "lng": -123.35155, + "state": null, + "state_code": null, + "city": "Victoria", + "geonames_city": { + "id": 6174041, + "city": "Victoria", + "geonames_admin1": { + "name": "British Columbia", + "id": 5909050, + "ascii_name": "British Columbia", + "code": "CA.02" + }, + "geonames_admin2": { + "name": "Capital Regional District", + "id": 5916420, + "ascii_name": "Capital Regional District", + "code": "CA.02.5917" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6251999 + } + ], + "links": [ + "https://www2.gov.bc.ca/gov/content/governments/organizational-structure/ministries-organizations/ministries/education" + ], + "aliases": [ + "British Columbia Ministry of Education and Child Care", + "BC Ministry of Education and Child Care", + "Ministry of Education", + "British Columbia Ministry of Education", + "BC Ministry of Education" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0707 3462" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100002759" + ] + }, + "GRID": { + "preferred": "grid.468004.e", + "all": "grid.468004.e" + }, + "Wikidata": { + "preferred": "Q30264305", + "all": [ + "Q30264305" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/05j5g1b69.json b/v1.43/05j5g1b69.json new file mode 100644 index 000000000..0be4f136e --- /dev/null +++ b/v1.43/05j5g1b69.json @@ -0,0 +1,88 @@ +{ + "id": "https://ror.org/05j5g1b69", + "name": "Public Policy Institute for Wales", + "email_address": null, + "ip_addresses": [], + "established": 2014, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "Wales Centre for Public Policy", + "type": "Successor", + "id": "https://ror.org/03y0ymy78" + } + ], + "addresses": [ + { + "lat": 51.48, + "lng": -3.18, + "state": null, + "state_code": null, + "city": "Cardiff", + "geonames_city": { + "id": 2653822, + "city": "Cardiff", + "geonames_admin1": { + "name": "Wales", + "id": 2634895, + "ascii_name": "Wales", + "code": "GB.WLS" + }, + "geonames_admin2": { + "name": "Cardiff", + "id": 3333241, + "ascii_name": "Cardiff", + "code": "GB.WLS.X5" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2635167 + } + ], + "links": [ + "http://ppiw.org.uk/" + ], + "aliases": [], + "acronyms": [ + "PPIW" + ], + "status": "inactive", + "wikipedia_url": "https://en.wikipedia.org/wiki/Public_Policy_Institute_for_Wales", + "labels": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q29025663" + ] + }, + "GRID": { + "preferred": "grid.500780.a", + "all": "grid.500780.a" + } + } +} \ No newline at end of file diff --git a/v1.43/05jge5x64.json b/v1.43/05jge5x64.json new file mode 100644 index 000000000..bcfa5c8a0 --- /dev/null +++ b/v1.43/05jge5x64.json @@ -0,0 +1,92 @@ +{ + "ip_addresses": [], + "aliases": [ + "NZ Agricultural Greenhouse Gas Research Centre" + ], + "acronyms": [ + "NZAGRC" + ], + "links": [ + "https://www.nzagrc.org.nz" + ], + "country": { + "country_name": "New Zealand", + "country_code": "NZ" + }, + "name": "New Zealand Agricultural Greenhouse Gas Research Centre", + "wikipedia_url": null, + "addresses": [ + { + "lat": -40.35636, + "lng": 175.61113, + "state": null, + "state_code": null, + "country_geonames_id": 2186224, + "city": "Palmerston North", + "geonames_city": { + "id": 2185018, + "city": "Palmerston North", + "geonames_admin1": { + "name": "Manawatu-Wanganui", + "ascii_name": "Manawatu-Wanganui", + "id": 2179671, + "code": "NZ.F3" + }, + "geonames_admin2": { + "name": "Palmerston North City", + "id": 7910056, + "ascii_name": "Palmerston North City", + "code": "NZ.F3.040" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7863 9787", + "all": [ + "0000 0004 7863 9787" + ] + }, + "Wikidata": { + "preferred": "Q116185757", + "all": [ + "Q116185757" + ] + }, + "FundRef": { + "preferred": "501100009482", + "all": [ + "501100009482" + ] + } + }, + "established": 1992, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05jge5x64", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05jmnvy38.json b/v1.43/05jmnvy38.json new file mode 100644 index 000000000..2f1029f2f --- /dev/null +++ b/v1.43/05jmnvy38.json @@ -0,0 +1,86 @@ +{ + "id": "https://ror.org/05jmnvy38", + "name": "DHI", + "email_address": null, + "ip_addresses": [], + "established": 1964, + "types": [ + "Other" + ], + "relationships": [], + "addresses": [ + { + "lat": 55.88098, + "lng": 12.50111, + "state": null, + "state_code": null, + "city": "Hørsholm", + "geonames_city": { + "id": 2619856, + "city": "Hørsholm", + "geonames_admin1": { + "name": "Capital Region", + "id": 6418538, + "ascii_name": "Capital Region", + "code": "DK.17" + }, + "geonames_admin2": { + "name": "Hørsholm Kommune", + "id": 2619762, + "ascii_name": "Hørsholm Kommune", + "code": "DK.17.223" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2623032 + } + ], + "links": [ + "https://www.dhigroup.com" + ], + "aliases": [ + "DHI Water & Environment", + "Dansk Hydraulisk Institut", + "DHI Water and Environment", + "Danish Hydraulic Institute", + "DHI A/S" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Denmark", + "country_code": "DK" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0670 5261" + ] + }, + "GRID": { + "preferred": "grid.423937.8", + "all": "grid.423937.8" + } + } +} \ No newline at end of file diff --git a/v1.43/05jnma812.json b/v1.43/05jnma812.json new file mode 100644 index 000000000..8efe9de16 --- /dev/null +++ b/v1.43/05jnma812.json @@ -0,0 +1,92 @@ +{ + "ip_addresses": [], + "aliases": [ + "Office of Planning, Research & Evaluation" + ], + "acronyms": [ + "OPRE" + ], + "links": [ + "https://www.acf.hhs.gov/opre/" + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "name": "Office of Planning, Research and Evaluation", + "wikipedia_url": null, + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "country_geonames_id": 6252001, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "name": "Washington, D.C.", + "ascii_name": "Washington, D.C.", + "id": 4138106, + "code": "US.DC" + }, + "geonames_admin2": { + "name": "Washington", + "id": 4140987, + "ascii_name": "Washington", + "code": "US.DC.001" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0001 0697 156X", + "all": [ + "0000 0001 0697 156X" + ] + }, + "FundRef": { + "preferred": "100012387", + "all": [ + "100012387" + ] + } + }, + "established": 1995, + "relationships": [ + { + "label": "Administration for Children and Families", + "type": "Parent", + "id": "https://ror.org/00g8hms52" + } + ], + "email_address": null, + "id": "https://ror.org/05jnma812", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05jvrb780.json b/v1.43/05jvrb780.json new file mode 100644 index 000000000..c46ad03ad --- /dev/null +++ b/v1.43/05jvrb780.json @@ -0,0 +1,80 @@ +{ + "ip_addresses": [], + "aliases": [ + "Foundation of Admirers and Mavens of Economics" + ], + "acronyms": [ + "FAME" + ], + "links": [ + "https://grape.org.pl/fame" + ], + "country": { + "country_name": "Poland", + "country_code": "PL" + }, + "name": "Fundacja Adeptów i Miłośników Ekonomii", + "wikipedia_url": null, + "addresses": [ + { + "lat": 52.22977, + "lng": 21.01178, + "state": null, + "state_code": null, + "country_geonames_id": 798544, + "city": "Warsaw", + "geonames_city": { + "id": 756135, + "city": "Warsaw", + "geonames_admin1": { + "name": "Mazovia", + "ascii_name": "Mazovia", + "id": 858787, + "code": "PL.78" + }, + "geonames_admin2": { + "name": "Warszawa", + "id": 6695624, + "ascii_name": "Warszawa", + "code": "PL.78.1465" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 9334 2236", + "all": [ + "0000 0004 9334 2236" + ] + } + }, + "established": null, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05jvrb780", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05mee8y17.json b/v1.43/05mee8y17.json new file mode 100644 index 000000000..9d9b178f6 --- /dev/null +++ b/v1.43/05mee8y17.json @@ -0,0 +1,74 @@ +{ + "ip_addresses": [], + "aliases": [ + "Instituto Vita Alere de Prevenção e Posvenção do Suicídio", + "Vita Alere Institute" + ], + "acronyms": [ + "IVA" + ], + "links": [ + "https://vitaalere.com.br" + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "name": "Instituto Vita Alere", + "wikipedia_url": null, + "addresses": [ + { + "lat": -23.5475, + "lng": -46.63611, + "state": null, + "state_code": null, + "country_geonames_id": 3469034, + "city": "São Paulo", + "geonames_city": { + "id": 3448439, + "city": "São Paulo", + "geonames_admin1": { + "name": "São Paulo", + "ascii_name": "São Paulo", + "id": 3448433, + "code": "BR.27" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": 2013, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05mee8y17", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05merjr74.json b/v1.43/05merjr74.json new file mode 100644 index 000000000..a8fef3719 --- /dev/null +++ b/v1.43/05merjr74.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/05merjr74", + "name": "Tropical and Mediterranean Animal Production Systems", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://umr-selmet.cirad.fr/en" + ], + "aliases": [], + "acronyms": [ + "SELMET" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Systèmes d’élevage méditerranéens et tropicaux", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0502 3674" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q51782343" + ] + }, + "GRID": { + "preferred": "grid.503222.4", + "all": "grid.503222.4" + } + } +} \ No newline at end of file diff --git a/v1.43/05mg91w61.json b/v1.43/05mg91w61.json new file mode 100644 index 000000000..a18ab6b63 --- /dev/null +++ b/v1.43/05mg91w61.json @@ -0,0 +1,103 @@ +{ + "id": "https://ror.org/05mg91w61", + "name": "Office of Basic Energy Sciences", + "email_address": null, + "ip_addresses": [], + "established": 1977, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Office of Science", + "type": "Parent", + "id": "https://ror.org/00mmn6b08" + } + ], + "addresses": [ + { + "lat": 38.89511, + "lng": -77.03637, + "state": null, + "state_code": null, + "city": "Washington", + "geonames_city": { + "id": 4140963, + "city": "Washington", + "geonames_admin1": { + "name": "Washington, D.C.", + "id": 4138106, + "ascii_name": "Washington, D.C.", + "code": "US.DC" + }, + "geonames_admin2": { + "name": "Washington", + "id": 4140987, + "ascii_name": "Washington", + "code": "US.DC.001" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://science.osti.gov/bes" + ], + "aliases": [], + "acronyms": [ + "BES", + "DOE BES" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 5897 3091" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100006151", + "100017535", + "100013055" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30296525" + ] + }, + "GRID": { + "preferred": "grid.452988.a", + "all": "grid.452988.a" + } + } +} \ No newline at end of file diff --git a/v1.43/05mz0pr34.json b/v1.43/05mz0pr34.json new file mode 100644 index 000000000..ef7d83907 --- /dev/null +++ b/v1.43/05mz0pr34.json @@ -0,0 +1,92 @@ +{ + "ip_addresses": [], + "aliases": [ + "UCLH Charitable Foundation", + "University College London Hospitals Charitable Foundation", + "UCLH Charity" + ], + "acronyms": [], + "links": [ + "https://www.uclhcharity.org.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "UCL Hospitals Charitable Foundation", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q45131942", + "all": [ + "Q45131942" + ] + }, + "FundRef": { + "preferred": "100011088", + "all": [ + "100011088" + ] + } + }, + "established": 1994, + "relationships": [ + { + "label": "University College London", + "type": "Parent", + "id": "https://ror.org/02jx3x895" + } + ], + "email_address": null, + "id": "https://ror.org/05mz0pr34", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05n3x4p02.json b/v1.43/05n3x4p02.json new file mode 100644 index 000000000..895ef903b --- /dev/null +++ b/v1.43/05n3x4p02.json @@ -0,0 +1,142 @@ +{ + "id": "https://ror.org/05n3x4p02", + "name": "Medical University of Vienna", + "email_address": null, + "ip_addresses": [], + "established": 1365, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.20849, + "lng": 16.37208, + "state": null, + "state_code": null, + "city": "Vienna", + "geonames_city": { + "id": 2761369, + "city": "Vienna", + "geonames_admin1": { + "name": "Vienna", + "id": 2761367, + "ascii_name": "Vienna", + "code": "AT.09" + }, + "geonames_admin2": { + "name": "Vienna", + "id": 2761333, + "ascii_name": "Vienna", + "code": "AT.09.900" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2782113 + } + ], + "links": [ + "https://www.meduniwien.ac.at" + ], + "aliases": [ + "MedUni Wien", + "MedUni Vienna" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Medical_University_of_Vienna", + "labels": [ + { + "label": "Medizinische Universität Wien", + "iso639": "de" + } + ], + "country": { + "country_name": "Austria", + "country_code": "AT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9259 8492" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100005788" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "2621065" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q700731" + ] + }, + "GRID": { + "preferred": "grid.22937.3d", + "all": "grid.22937.3d" + } + } +} \ No newline at end of file diff --git a/v1.43/05nqvv719.json b/v1.43/05nqvv719.json new file mode 100644 index 000000000..db6ff7f9e --- /dev/null +++ b/v1.43/05nqvv719.json @@ -0,0 +1,92 @@ +{ + "ip_addresses": [], + "aliases": [ + "Minagri", + "Ministerio de Agricultura de Chile", + "Chilean Ministry of Agriculture", + "Ministry of Agriculture, Chile" + ], + "acronyms": [], + "links": [ + "http://www.minagri.gob.cl" + ], + "country": { + "country_name": "Chile", + "country_code": "CL" + }, + "name": "Ministerio de Agricultura", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Agriculture_%28Chile%29", + "addresses": [ + { + "lat": -33.45694, + "lng": -70.64827, + "state": null, + "state_code": null, + "country_geonames_id": 3895114, + "city": "Santiago", + "geonames_city": { + "id": 3871336, + "city": "Santiago", + "geonames_admin1": { + "name": "Santiago Metropolitan", + "ascii_name": "Santiago Metropolitan", + "id": 3873544, + "code": "CL.12" + }, + "geonames_admin2": { + "name": "Provincia de Santiago", + "id": 3871332, + "ascii_name": "Provincia de Santiago", + "code": "CL.12.131" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 0628 5553", + "all": [ + "0000 0004 0628 5553" + ] + }, + "Wikidata": { + "preferred": "Q6017174", + "all": [ + "Q6017174" + ] + } + }, + "established": 1924, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05nqvv719", + "labels": [ + { + "label": "Ministry of Agriculture", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05p1j8758.json b/v1.43/05p1j8758.json new file mode 100644 index 000000000..ad33437c1 --- /dev/null +++ b/v1.43/05p1j8758.json @@ -0,0 +1,128 @@ +{ + "id": "https://ror.org/05p1j8758", + "name": "Kansas State University", + "email_address": "", + "ip_addresses": [], + "established": 1863, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 39.18361, + "lng": -96.57167, + "state": null, + "state_code": null, + "city": "Manhattan", + "geonames_city": { + "id": 4274994, + "city": "Manhattan", + "geonames_admin1": { + "name": "Kansas", + "id": 4273857, + "ascii_name": "Kansas", + "code": "US.KS" + }, + "geonames_admin2": { + "name": "Riley", + "id": 4278061, + "ascii_name": "Riley", + "code": "US.KS.161" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.k-state.edu/" + ], + "aliases": [ + "K-State" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Kansas_State_University", + "labels": [ + { + "label": "Universidad Estatal de Kansas", + "iso639": "es" + }, + { + "label": "Université d'État du kansas", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0737 1259" + ] + }, + "FundRef": { + "preferred": "100007765", + "all": [ + "100007765", + "100007830", + "100007766", + "100007829" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "16855" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q31249" + ] + }, + "GRID": { + "preferred": "grid.36567.31", + "all": "grid.36567.31" + } + } +} \ No newline at end of file diff --git a/v1.43/05p3cb968.json b/v1.43/05p3cb968.json new file mode 100644 index 000000000..7d998a246 --- /dev/null +++ b/v1.43/05p3cb968.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/05p3cb968", + "name": "Instituto de Investigação Agrária de Moçambique", + "email_address": null, + "ip_addresses": [], + "established": 2005, + "types": [ + "Facility" + ], + "relationships": [], + "addresses": [ + { + "lat": -25.96553, + "lng": 32.58322, + "state": null, + "state_code": null, + "city": "Maputo", + "geonames_city": { + "id": 1040652, + "city": "Maputo", + "geonames_admin1": { + "name": "Maputo City", + "id": 1105845, + "ascii_name": "Maputo City", + "code": "MZ.11" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1036973 + } + ], + "links": [ + "https://iiam.gov.mz" + ], + "aliases": [ + "Agricultural Research Institute of Mozambique" + ], + "acronyms": [ + "IIAM" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Mozambique", + "country_code": "MZ" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9230 7800" + ] + }, + "FundRef": { + "preferred": "501100013954", + "all": [ + "501100013954" + ] + }, + "GRID": { + "preferred": "grid.463372.7", + "all": "grid.463372.7" + }, + "Wikidata": { + "preferred": "Q30261867", + "all": [ + "Q30261867" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/05p70jq59.json b/v1.43/05p70jq59.json new file mode 100644 index 000000000..8707d77bb --- /dev/null +++ b/v1.43/05p70jq59.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/05p70jq59", + "name": "Ministry of Education", + "email_address": null, + "ip_addresses": [], + "established": 1989, + "types": [ + "Government" + ], + "relationships": [], + "addresses": [ + { + "lat": -41.28664, + "lng": 174.77557, + "state": null, + "state_code": null, + "city": "Wellington", + "geonames_city": { + "id": 2179537, + "city": "Wellington", + "geonames_admin1": { + "name": "Wellington", + "id": 2179538, + "ascii_name": "Wellington", + "code": "NZ.G2" + }, + "geonames_admin2": { + "name": "Wellington City", + "id": 7910072, + "ascii_name": "Wellington City", + "code": "NZ.G2.047" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2186224 + } + ], + "links": [ + "https://www.education.govt.nz/" + ], + "aliases": [ + "Ministry of Education of New Zealand", + "New Zealand Ministry of Education" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Education_(New_Zealand)", + "labels": [ + { + "label": "Te Tāhuhu o te Mātauranga", + "iso639": "mi" + } + ], + "country": { + "country_name": "New Zealand", + "country_code": "NZ" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0727 3536" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1937182" + ] + }, + "GRID": { + "preferred": "grid.488641.7", + "all": "grid.488641.7" + }, + "FundRef": { + "preferred": "501100009648", + "all": [ + "501100009648" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/05ppf7q77.json b/v1.43/05ppf7q77.json new file mode 100644 index 000000000..40c244243 --- /dev/null +++ b/v1.43/05ppf7q77.json @@ -0,0 +1,101 @@ +{ + "id": "https://ror.org/05ppf7q77", + "name": "Laboratoire atmosphères, milieux, observations spatiales", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.77334, + "lng": 2.07393, + "state": null, + "state_code": null, + "city": "Guyancourt", + "geonames_city": { + "id": 3014143, + "city": "Guyancourt", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Yvelines", + "id": 2967196, + "ascii_name": "Yvelines", + "code": "FR.11.78" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.latmos.ipsl.fr" + ], + "aliases": [ + "Atmospheres Laboratory Environments, Observations Spatiales" + ], + "acronyms": [ + "LATMOS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Laboratoire_atmosph%C3%A8res,_milieux,_observations_spatiales", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q3214361", + "all": [ + "Q3214361" + ] + }, + "GRID": { + "preferred": "grid.494619.7", + "all": "grid.494619.7" + }, + "ISNI": { + "preferred": "0000 0001 0456 3087", + "all": [ + "0000 0001 0456 3087" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/05pvqha70.json b/v1.43/05pvqha70.json new file mode 100644 index 000000000..5ddc21eb6 --- /dev/null +++ b/v1.43/05pvqha70.json @@ -0,0 +1,115 @@ +{ + "id": "https://ror.org/05pvqha70", + "name": "St. Lawrence University", + "email_address": "", + "ip_addresses": [], + "established": 1856, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Great Lakes Research Consortium", + "type": "Related", + "id": "https://ror.org/05cshtm26" + } + ], + "addresses": [ + { + "lat": 44.59562, + "lng": -75.16909, + "state": null, + "state_code": null, + "city": "Canton", + "geonames_city": { + "id": 5111484, + "city": "Canton", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "St. Lawrence", + "id": 5135484, + "ascii_name": "St. Lawrence", + "code": "US.NY.089" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.stlawu.edu/" + ], + "aliases": [], + "acronyms": [ + "SLU" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/St._Lawrence_University", + "labels": [ + { + "label": "Universidad de St. Lawrence", + "iso639": "es" + }, + { + "label": "Université de st. lawrence", + "iso639": "fr" + } + ], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2179 3458" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "100009970" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "561696" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1411093" + ] + }, + "GRID": { + "preferred": "grid.264119.9", + "all": "grid.264119.9" + } + } +} \ No newline at end of file diff --git a/v1.43/05q4hzm57.json b/v1.43/05q4hzm57.json new file mode 100644 index 000000000..4c995371e --- /dev/null +++ b/v1.43/05q4hzm57.json @@ -0,0 +1,73 @@ +{ + "ip_addresses": [], + "aliases": [ + "Commission for Research Information in Germany" + ], + "acronyms": [ + "KFID" + ], + "links": [ + "https://kfid-online.de" + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "name": "Kommission für Forschungsinformationen in Deutschland", + "wikipedia_url": null, + "addresses": [ + { + "lat": 52.52437, + "lng": 13.41053, + "state": null, + "state_code": null, + "country_geonames_id": 2921044, + "city": "Berlin", + "geonames_city": { + "id": 2950159, + "city": "Berlin", + "geonames_admin1": { + "name": "Berlin", + "ascii_name": "Berlin", + "id": 2950157, + "code": "DE.16" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.16.00" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Other" + ], + "external_ids": {}, + "established": 2021, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05q4hzm57", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05q6yhx55.json b/v1.43/05q6yhx55.json new file mode 100644 index 000000000..3f1d6b4e8 --- /dev/null +++ b/v1.43/05q6yhx55.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://www.evacranetrust.org" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Eva Crane Trust", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.3751, + "lng": -2.36172, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Bath", + "geonames_city": { + "id": 2656173, + "city": "Bath", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Bath and North East Somerset", + "id": 3333123, + "ascii_name": "Bath and North East Somerset", + "code": "GB.ENG.A4" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 7784 7859", + "all": [ + "0000 0004 7784 7859" + ] + }, + "FundRef": { + "preferred": "100012660", + "all": [ + "100012660" + ] + } + }, + "established": 2002, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05q6yhx55", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05q94pf14.json b/v1.43/05q94pf14.json new file mode 100644 index 000000000..8e27eaf22 --- /dev/null +++ b/v1.43/05q94pf14.json @@ -0,0 +1,114 @@ +{ + "id": "https://ror.org/05q94pf14", + "name": "Laboratoire des Symbioses Tropicales et Méditerranéennes", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://umr-lstm.cirad.fr/" + ], + "aliases": [], + "acronyms": [ + "LSTM" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0613 4851" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30261483" + ] + }, + "GRID": { + "preferred": "grid.462526.1", + "all": "grid.462526.1" + } + } +} \ No newline at end of file diff --git a/v1.43/05qj6w324.json b/v1.43/05qj6w324.json new file mode 100644 index 000000000..fd31ea600 --- /dev/null +++ b/v1.43/05qj6w324.json @@ -0,0 +1,94 @@ +{ + "id": "https://ror.org/05qj6w324", + "name": "Nationale Forschungsdateninfrastruktur", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Government" + ], + "relationships": [ + { + "label": "Mathematical Research Data Initiative", + "type": "Child", + "id": "https://ror.org/04ncnzm65" + }, + { + "label": "NFDI4DS", + "type": "Child", + "id": "https://ror.org/00bb4nn95" + } + ], + "addresses": [ + { + "lat": 49.00937, + "lng": 8.40444, + "state": null, + "state_code": null, + "city": "Karlsruhe", + "geonames_city": { + "id": 2892794, + "city": "Karlsruhe", + "geonames_admin1": { + "name": "Baden-Wurttemberg", + "id": 2953481, + "ascii_name": "Baden-Wurttemberg", + "code": "DE.01" + }, + "geonames_admin2": { + "name": "Karlsruhe Region", + "id": 3214104, + "ascii_name": "Karlsruhe Region", + "code": "DE.01.082" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.nfdi.de" + ], + "aliases": [], + "acronyms": [ + "NFDI" + ], + "status": "active", + "wikipedia_url": "https://de.wikipedia.org/wiki/Nationale_Forschungsdateninfrastruktur", + "labels": [ + { + "label": "German National Research Data Infrastructure", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "Wikidata": { + "preferred": "Q105757481", + "all": [ + "Q105757481" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/05qpmg879.json b/v1.43/05qpmg879.json new file mode 100644 index 000000000..f1936d61c --- /dev/null +++ b/v1.43/05qpmg879.json @@ -0,0 +1,109 @@ +{ + "id": "https://ror.org/05qpmg879", + "name": "Institute for Molecular and Cellular Biology", + "email_address": null, + "ip_addresses": [], + "established": 1998, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.58392, + "lng": 7.74553, + "state": null, + "state_code": null, + "city": "Strasbourg", + "geonames_city": { + "id": 2973783, + "city": "Strasbourg", + "geonames_admin1": { + "name": "Grand Est", + "id": 11071622, + "ascii_name": "Grand Est", + "code": "FR.44" + }, + "geonames_admin2": { + "name": "Bas-Rhin", + "id": 3034720, + "ascii_name": "Bas-Rhin", + "code": "FR.44.67" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www-ibmc.u-strasbg.fr/" + ], + "aliases": [], + "acronyms": [ + "IBMC" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Institut de Biologie Moléculaire et Cellulaire", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0638 0833" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "FRC1589" + ] + }, + "GRID": { + "preferred": "grid.465534.5", + "all": "grid.465534.5" + } + } +} \ No newline at end of file diff --git a/v1.43/05r0vyz12.json b/v1.43/05r0vyz12.json new file mode 100644 index 000000000..ed8f556ec --- /dev/null +++ b/v1.43/05r0vyz12.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/05r0vyz12", + "name": "Ministerio de Ciencia, Innovación y Universidades", + "email_address": null, + "ip_addresses": [], + "established": 2020, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 40.4165, + "lng": -3.70256, + "state": null, + "state_code": null, + "city": "Madrid", + "geonames_city": { + "id": 3117735, + "city": "Madrid", + "geonames_admin1": { + "name": "Madrid", + "id": 3117732, + "ascii_name": "Madrid", + "code": "ES.29" + }, + "geonames_admin2": { + "name": "Madrid", + "id": 6355233, + "ascii_name": "Madrid", + "code": "ES.29.M" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://www.ciencia.gob.es" + ], + "aliases": [ + "Ministry of Science and Information", + "Ministry of Science, Innovation and Universities", + "Spanish Ministry of Science, Innovation and Universities", + "Ministry of Science, Innovation and Universities, Spain", + "Ministerio de Ciencia, Innovación y Universidades de España", + "Ministerio de Ciencia e Innovación", + "Ministerio de Ciencia e Innovación de España" + ], + "acronyms": [ + "MICINN" + ], + "status": "active", + "wikipedia_url": "https://es.wikipedia.org/wiki/Ministerio_de_Ciencia_e_Innovaci%C3%B3n", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "FundRef": { + "preferred": "501100004837", + "all": [ + "501100004837", + "100014440", + "501100017642" + ] + }, + "Wikidata": { + "preferred": "Q85874966", + "all": [ + "Q85874966" + ] + } + } +} \ No newline at end of file diff --git a/v1.43/05r332y60.json b/v1.43/05r332y60.json new file mode 100644 index 000000000..08b7c64f8 --- /dev/null +++ b/v1.43/05r332y60.json @@ -0,0 +1,130 @@ +{ + "id": "https://ror.org/05r332y60", + "name": "Biochemistry and Plant Molecular Physiology", + "email_address": null, + "ip_addresses": [], + "established": 1999, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 43.61093, + "lng": 3.87635, + "state": null, + "state_code": null, + "city": "Montpellier", + "geonames_city": { + "id": 2992166, + "city": "Montpellier", + "geonames_admin1": { + "name": "Occitanie", + "id": 11071623, + "ascii_name": "Occitanie", + "code": "FR.76" + }, + "geonames_admin2": { + "name": "Hérault", + "id": 3013500, + "ascii_name": "Hérault", + "code": "FR.76.34" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www1.montpellier.inra.fr/wp-inra/bpmp/en/" + ], + "aliases": [], + "acronyms": [ + "BPMP" + ], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Biochimie et Physiologie Moléculaire des Plantes", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0445 8430" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR5004" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q30261319" + ] + }, + "GRID": { + "preferred": "grid.461861.c", + "all": "grid.461861.c" + } + } +} \ No newline at end of file diff --git a/v1.43/05r3f7h03.json b/v1.43/05r3f7h03.json new file mode 100644 index 000000000..5e503c889 --- /dev/null +++ b/v1.43/05r3f7h03.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/05r3f7h03", + "name": "Physikalisch-Technische Bundesanstalt", + "email_address": null, + "ip_addresses": [], + "established": 1887, + "types": [ + "Facility" + ], + "relationships": [ + { + "label": "LEAPS", + "type": "Related", + "id": "https://ror.org/04wcn4e27" + } + ], + "addresses": [ + { + "lat": 52.26594, + "lng": 10.52673, + "state": null, + "state_code": null, + "city": "Braunschweig", + "geonames_city": { + "id": 2945024, + "city": "Braunschweig", + "geonames_admin1": { + "name": "Lower Saxony", + "id": 2862926, + "ascii_name": "Lower Saxony", + "code": "DE.06" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": "DE.06.00" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2921044 + } + ], + "links": [ + "https://www.ptb.de/cms/" + ], + "aliases": [], + "acronyms": [ + "PTB" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Physikalisch-Technische_Bundesanstalt", + "labels": [ + { + "label": "German National Metrology Institute", + "iso639": "en" + } + ], + "country": { + "country_name": "Germany", + "country_code": "DE" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2186 1887" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "336112" + ] + }, + "Wikidata": { + "preferred": "Q470438", + "all": [ + "Q470438", + "Q28738259" + ] + }, + "GRID": { + "preferred": "grid.4764.1", + "all": "grid.4764.1" + } + } +} \ No newline at end of file diff --git a/v1.43/05rbx8m02.json b/v1.43/05rbx8m02.json new file mode 100644 index 000000000..a0fd49a5b --- /dev/null +++ b/v1.43/05rbx8m02.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/05rbx8m02", + "name": "Fondazione IRCCS Istituto Neurologico Carlo Besta", + "email_address": null, + "ip_addresses": [], + "established": 1918, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Istituti di Ricovero e Cura a Carattere Scientifico", + "type": "Parent", + "id": "https://ror.org/04tfzc498" + } + ], + "addresses": [ + { + "lat": 45.46427, + "lng": 9.18951, + "state": null, + "state_code": null, + "city": "Milan", + "geonames_city": { + "id": 3173435, + "city": "Milan", + "geonames_admin1": { + "name": "Lombardy", + "id": 3174618, + "ascii_name": "Lombardy", + "code": "IT.09" + }, + "geonames_admin2": { + "name": "Milan", + "id": 3173434, + "ascii_name": "Milan", + "code": "IT.09.MI" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3175395 + } + ], + "links": [ + "https://www.istituto-besta.it" + ], + "aliases": [ + "IRCCS Istituto Neurologico Carlo Besta", + "Istituto Neurologico Carlo Besta" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [ + { + "label": "Carlo Besta Neurological Institute", + "iso639": "en" + } + ], + "country": { + "country_name": "Italy", + "country_code": "IT" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 0707 5492" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100008088" + ] + }, + "GRID": { + "preferred": "grid.417894.7", + "all": "grid.417894.7" + } + } +} \ No newline at end of file diff --git a/v1.43/05rdv5n40.json b/v1.43/05rdv5n40.json new file mode 100644 index 000000000..a1ecafc24 --- /dev/null +++ b/v1.43/05rdv5n40.json @@ -0,0 +1,91 @@ +{ + "id": "https://ror.org/05rdv5n40", + "name": "Grundfos (Denmark)", + "email_address": null, + "ip_addresses": [], + "established": 1945, + "types": [ + "Company" + ], + "relationships": [ + { + "label": "Grundfos Fond", + "type": "Parent", + "id": "https://ror.org/0008vp155" + } + ], + "addresses": [ + { + "lat": 56.37797, + "lng": 9.66065, + "state": null, + "state_code": null, + "city": "Bjerringbro", + "geonames_city": { + "id": 2624019, + "city": "Bjerringbro", + "geonames_admin1": { + "name": "Central Jutland", + "id": 6418539, + "ascii_name": "Central Jutland", + "code": "DK.18" + }, + "geonames_admin2": { + "name": "Viborg Kommune", + "id": 2610315, + "ascii_name": "Viborg Kommune", + "code": "DK.18.791" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2623032 + } + ], + "links": [ + "https://www.grundfos.com/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Grundfos", + "labels": [ + { + "label": "ˈkʁɔnˀfɒs", + "iso639": "da" + } + ], + "country": { + "country_name": "Denmark", + "country_code": "DK" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q1550517" + ] + }, + "GRID": { + "preferred": "grid.434823.a", + "all": "grid.434823.a" + } + } +} \ No newline at end of file diff --git a/v1.43/05sbt2524.json b/v1.43/05sbt2524.json new file mode 100644 index 000000000..67d0a5cbd --- /dev/null +++ b/v1.43/05sbt2524.json @@ -0,0 +1,240 @@ +{ + "id": "https://ror.org/05sbt2524", + "name": "Grenoble Institute of Technology", + "email_address": null, + "ip_addresses": [], + "established": 1892, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Université Grenoble Alpes", + "type": "Parent", + "id": "https://ror.org/02rx3b187" + }, + { + "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": "Communauté Université Grenoble Alpes", + "type": "Related", + "id": "https://ror.org/05v727m31" + } + ], + "addresses": [ + { + "lat": 45.17869, + "lng": 5.71479, + "state": null, + "state_code": null, + "city": "Grenoble", + "geonames_city": { + "id": 3014728, + "city": "Grenoble", + "geonames_admin1": { + "name": "Auvergne-Rhône-Alpes", + "id": 11071625, + "ascii_name": "Auvergne-Rhône-Alpes", + "code": "FR.84" + }, + "geonames_admin2": { + "name": "Isère", + "id": 3012715, + "ascii_name": "Isère", + "code": "FR.84.38" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "http://www.grenoble-inp.fr/welcome/" + ], + "aliases": [ + "Grenoble INP" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Grenoble_Institute_of_Technology", + "labels": [ + { + "label": "Institut polytechnique de Grenoble", + "iso639": "fr" + } + ], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 1765 4326" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "1399393" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1665121" + ] + }, + "GRID": { + "preferred": "grid.5676.2", + "all": "grid.5676.2" + } + } +} \ No newline at end of file diff --git a/v1.43/05sgwan27.json b/v1.43/05sgwan27.json new file mode 100644 index 000000000..7e3b4f0bc --- /dev/null +++ b/v1.43/05sgwan27.json @@ -0,0 +1,80 @@ +{ + "id": "https://ror.org/05sgwan27", + "name": "Ecosystem (Spain)", + "email_address": null, + "ip_addresses": [], + "established": null, + "types": [ + "Company" + ], + "relationships": [], + "addresses": [ + { + "lat": 41.38879, + "lng": 2.15899, + "state": null, + "state_code": null, + "city": "Barcelona", + "geonames_city": { + "id": 3128760, + "city": "Barcelona", + "geonames_admin1": { + "name": "Catalonia", + "id": 3336901, + "ascii_name": "Catalonia", + "code": "ES.56" + }, + "geonames_admin2": { + "name": "Barcelona", + "id": 3128759, + "ascii_name": "Barcelona", + "code": "ES.56.B" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2510769 + } + ], + "links": [ + "https://worldgeo.weebly.com/" + ], + "aliases": [], + "acronyms": [], + "status": "inactive", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "Spain", + "country_code": "ES" + }, + "external_ids": { + "Wikidata": { + "preferred": null, + "all": [ + "Q30256536" + ] + }, + "GRID": { + "preferred": "grid.434270.6", + "all": "grid.434270.6" + } + } +} \ No newline at end of file diff --git a/v1.43/05sqppn31.json b/v1.43/05sqppn31.json new file mode 100644 index 000000000..63394c2dd --- /dev/null +++ b/v1.43/05sqppn31.json @@ -0,0 +1,91 @@ +{ + "ip_addresses": [], + "aliases": [ + "Flemish Supercomputer Center" + ], + "acronyms": [ + "VSC" + ], + "links": [ + "https://www.vscentrum.be" + ], + "country": { + "country_name": "Belgium", + "country_code": "BE" + }, + "name": "Vlaams Supercomputer Centrum", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.05, + "lng": 3.71667, + "state": null, + "state_code": null, + "country_geonames_id": 2802361, + "city": "Ghent", + "geonames_city": { + "id": 2797656, + "city": "Ghent", + "geonames_admin1": { + "name": "Flanders", + "ascii_name": "Flanders", + "id": 3337388, + "code": "BE.VLG" + }, + "geonames_admin2": { + "name": "East Flanders Province", + "id": 2789733, + "ascii_name": "East Flanders Province", + "code": "BE.VLG.VOV" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0729 1485", + "all": [ + "0000 0005 0729 1485" + ] + }, + "FundRef": { + "preferred": "100019618", + "all": [ + "100019618" + ] + } + }, + "established": 2012, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05sqppn31", + "labels": [ + { + "label": "Flemish Supercomputer Centre", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05stqjz94.json b/v1.43/05stqjz94.json new file mode 100644 index 000000000..0a2a07f8e --- /dev/null +++ b/v1.43/05stqjz94.json @@ -0,0 +1,82 @@ +{ + "ip_addresses": [], + "aliases": [ + "Mrs. Gladys Row Fogo Charitable Trust" + ], + "acronyms": [], + "links": [], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Row Fogo Charitable Trust", + "wikipedia_url": null, + "addresses": [ + { + "lat": 55.95206, + "lng": -3.19648, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Edinburgh", + "geonames_city": { + "id": 2650225, + "city": "Edinburgh", + "geonames_admin1": { + "name": "Scotland", + "ascii_name": "Scotland", + "id": 2638360, + "code": "GB.SCT" + }, + "geonames_admin2": { + "name": "Edinburgh", + "id": 3333229, + "ascii_name": "Edinburgh", + "code": "GB.SCT.U8" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q45134415", + "all": [ + "Q45134415" + ] + }, + "FundRef": { + "preferred": "100012164", + "all": [ + "100012164" + ] + } + }, + "established": 1977, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05stqjz94", + "labels": [], + "status": "inactive" +} \ No newline at end of file diff --git a/v1.43/05syd6y78.json b/v1.43/05syd6y78.json new file mode 100644 index 000000000..7ab363d76 --- /dev/null +++ b/v1.43/05syd6y78.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/05syd6y78", + "name": "Universidade Federal do Paraná", + "email_address": "", + "ip_addresses": [], + "established": 1912, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -25.42778, + "lng": -49.27306, + "state": null, + "state_code": null, + "city": "Curitiba", + "geonames_city": { + "id": 3464975, + "city": "Curitiba", + "geonames_admin1": { + "name": "Paraná", + "id": 3455077, + "ascii_name": "Paraná", + "code": "BR.18" + }, + "geonames_admin2": { + "name": "Curitiba", + "id": 6322752, + "ascii_name": "Curitiba", + "code": "BR.18.4106902" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3469034 + } + ], + "links": [ + "https://ufpr.br" + ], + "aliases": [], + "acronyms": [ + "UFPR" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Federal_University_of_Paran%C3%A1", + "labels": [ + { + "label": "Federal University of Paraná", + "iso639": "en" + } + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 1941 472X" + ] + }, + "FundRef": { + "preferred": "501100008223", + "all": [ + "501100008224", + "501100008223" + ] + }, + "OrgRef": { + "preferred": "1461667", + "all": [ + "1461667" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q1232831" + ] + }, + "GRID": { + "preferred": "grid.20736.30", + "all": "grid.20736.30" + } + } +} \ No newline at end of file diff --git a/v1.43/05sz3st37.json b/v1.43/05sz3st37.json new file mode 100644 index 000000000..11bb28226 --- /dev/null +++ b/v1.43/05sz3st37.json @@ -0,0 +1,93 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "https://cegepba.qc.ca" + ], + "country": { + "country_name": "Canada", + "country_code": "CA" + }, + "name": "Cégep Beauce-Appalaches", + "wikipedia_url": "https://fr.wikipedia.org/wiki/C%C3%A9gep_Beauce-Appalaches", + "addresses": [ + { + "lat": 46.80326, + "lng": -71.17793, + "state": null, + "state_code": null, + "country_geonames_id": 6251999, + "city": "Lévis", + "geonames_city": { + "id": 6325521, + "city": "Lévis", + "geonames_admin1": { + "name": "Quebec", + "ascii_name": "Quebec", + "id": 6115047, + "code": "CA.10" + }, + "geonames_admin2": { + "name": "Chaudière-Appalaches", + "id": 6691322, + "ascii_name": "Chaudière-Appalaches", + "code": "CA.10.12" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0000 9606 3209", + "all": [ + "0000 0000 9606 3209" + ] + }, + "Wikidata": { + "preferred": "Q3009983", + "all": [ + "Q3009983" + ] + } + }, + "established": 1990, + "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" + } + ], + "email_address": null, + "id": "https://ror.org/05sz3st37", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05t17k830.json b/v1.43/05t17k830.json new file mode 100644 index 000000000..1e0bd4aae --- /dev/null +++ b/v1.43/05t17k830.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [ + "United Kingdom Regenerative Medicine Platform" + ], + "acronyms": [ + "UKRMP" + ], + "links": [ + "https://www.ukrmp.org.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "UK Regenerative Medicine Platform", + "wikipedia_url": null, + "addresses": [ + { + "lat": 55.95206, + "lng": -3.19648, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Edinburgh", + "geonames_city": { + "id": 2650225, + "city": "Edinburgh", + "geonames_admin1": { + "name": "Scotland", + "ascii_name": "Scotland", + "id": 2638360, + "code": "GB.SCT" + }, + "geonames_admin2": { + "name": "Edinburgh", + "id": 3333229, + "ascii_name": "Edinburgh", + "code": "GB.SCT.U8" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0005 0285 1076", + "all": [ + "0000 0005 0285 1076" + ] + }, + "FundRef": { + "preferred": "501100019326", + "all": [ + "501100019326" + ] + } + }, + "established": 2012, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05t17k830", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05t2rs949.json b/v1.43/05t2rs949.json new file mode 100644 index 000000000..f22e8ad42 --- /dev/null +++ b/v1.43/05t2rs949.json @@ -0,0 +1,73 @@ +{ + "ip_addresses": [], + "aliases": [ + "Instituto Tecnológico de Barueri" + ], + "acronyms": [ + "FIEB" + ], + "links": [ + "https://fieb.edu.br" + ], + "country": { + "country_name": "Brazil", + "country_code": "BR" + }, + "name": "Fundação Instututo de Educação de Barueri", + "wikipedia_url": null, + "addresses": [ + { + "lat": -23.51056, + "lng": -46.87611, + "state": null, + "state_code": null, + "country_geonames_id": 3469034, + "city": "Barueri", + "geonames_city": { + "id": 3470353, + "city": "Barueri", + "geonames_admin1": { + "name": "São Paulo", + "ascii_name": "São Paulo", + "id": 3448433, + "code": "BR.27" + }, + "geonames_admin2": { + "name": "Barueri", + "id": 6322130, + "ascii_name": "Barueri", + "code": "BR.27.3505708" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": {}, + "established": 1994, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05t2rs949", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05tamah23.json b/v1.43/05tamah23.json new file mode 100644 index 000000000..9a23b0718 --- /dev/null +++ b/v1.43/05tamah23.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [ + "Centre for Diet and Activity Research" + ], + "acronyms": [ + "CEDAR" + ], + "links": [ + "https://www.cedar.iph.cam.ac.uk" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Communicating Diet and Activity Research", + "wikipedia_url": null, + "addresses": [ + { + "lat": 52.2, + "lng": 0.11667, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "Cambridge", + "geonames_city": { + "id": 2653941, + "city": "Cambridge", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Cambridgeshire", + "id": 2653940, + "ascii_name": "Cambridgeshire", + "code": "GB.ENG.C3" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": { + "FundRef": { + "preferred": "501100011032", + "all": [ + "501100011032" + ] + } + }, + "established": 2006, + "relationships": [ + { + "label": "United Kingdom Clinical Research Collaboration", + "type": "Related", + "id": "https://ror.org/025ecp212" + } + ], + "email_address": null, + "id": "https://ror.org/05tamah23", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05tgxx705.json b/v1.43/05tgxx705.json new file mode 100644 index 000000000..da644ce47 --- /dev/null +++ b/v1.43/05tgxx705.json @@ -0,0 +1,126 @@ +{ + "id": "https://ror.org/05tgxx705", + "name": "Department of Science and Technology", + "email_address": null, + "ip_addresses": [], + "established": 1987, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 14.5243, + "lng": 121.0792, + "state": null, + "state_code": null, + "city": "Taguig", + "geonames_city": { + "id": 1684308, + "city": "Taguig", + "geonames_admin1": { + "name": "National Capital Region", + "id": 7521311, + "ascii_name": "National Capital Region", + "code": "PH.NCR" + }, + "geonames_admin2": { + "name": "Southern Manila District", + "id": 11395838, + "ascii_name": "Southern Manila District", + "code": "PH.NCR.137600000" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1694008 + } + ], + "links": [ + "http://www.dost.gov.ph/" + ], + "aliases": [], + "acronyms": [ + "DOST" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Department_of_Science_and_Technology_(Philippines)", + "labels": [ + { + "label": "Kagawaran ng Agham at Teknolohiya", + "iso639": "tl" + } + ], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": { + "FundRef": { + "preferred": "501100010892", + "all": [ + "501100010892", + "501100010218" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "4701859" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3547215" + ] + }, + "GRID": { + "preferred": "grid.484092.3", + "all": "grid.484092.3" + } + } +} \ No newline at end of file diff --git a/v1.43/05tvkct11.json b/v1.43/05tvkct11.json new file mode 100644 index 000000000..f32364945 --- /dev/null +++ b/v1.43/05tvkct11.json @@ -0,0 +1,86 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [], + "country": { + "country_name": "Australia", + "country_code": "AU" + }, + "name": "Pratt Foundation", + "wikipedia_url": "https://en.wikipedia.org/wiki/Pratt_Foundation", + "addresses": [ + { + "lat": -37.814, + "lng": 144.96332, + "state": null, + "state_code": null, + "country_geonames_id": 2077456, + "city": "Melbourne", + "geonames_city": { + "id": 2158177, + "city": "Melbourne", + "geonames_admin1": { + "name": "Victoria", + "ascii_name": "Victoria", + "id": 2145234, + "code": "AU.07" + }, + "geonames_admin2": { + "name": "Melbourne", + "id": 7839805, + "ascii_name": "Melbourne", + "code": "AU.07.24600" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Nonprofit" + ], + "external_ids": { + "ISNI": { + "preferred": "0000 0004 6431 4914", + "all": [ + "0000 0004 6431 4914" + ] + }, + "Wikidata": { + "preferred": "Q7238757", + "all": [ + "Q7238757" + ] + }, + "FundRef": { + "preferred": "100012188", + "all": [ + "100012188" + ] + } + }, + "established": 1978, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05tvkct11", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05twwhs70.json b/v1.43/05twwhs70.json new file mode 100644 index 000000000..31b4d98d6 --- /dev/null +++ b/v1.43/05twwhs70.json @@ -0,0 +1,110 @@ +{ + "id": "https://ror.org/05twwhs70", + "name": "State Grid Corporation of China (China)", + "email_address": null, + "ip_addresses": [], + "established": 2002, + "types": [ + "Company" + ], + "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" + } + ], + "addresses": [ + { + "lat": 39.9075, + "lng": 116.39723, + "state": null, + "state_code": null, + "city": "Beijing", + "geonames_city": { + "id": 1816670, + "city": "Beijing", + "geonames_admin1": { + "name": "Beijing", + "id": 2038349, + "ascii_name": "Beijing", + "code": "CN.22" + }, + "geonames_admin2": { + "name": "Beijing", + "id": 11876380, + "ascii_name": "Beijing", + "code": "CN.22.11876380" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1814991 + } + ], + "links": [ + "http://www.sgcc.com.cn/ywlm/index.shtml" + ], + "aliases": [], + "acronyms": [ + "SGCC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/State_Grid_Corporation_of_China", + "labels": [ + { + "label": "国家电网公司", + "iso639": "zh" + } + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8891 7315" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100010880" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q209078" + ] + }, + "GRID": { + "preferred": "grid.433158.8", + "all": "grid.433158.8" + } + } +} \ No newline at end of file diff --git a/v1.43/05tyqjm34.json b/v1.43/05tyqjm34.json new file mode 100644 index 000000000..f14e9e75d --- /dev/null +++ b/v1.43/05tyqjm34.json @@ -0,0 +1,98 @@ +{ + "id": "https://ror.org/05tyqjm34", + "name": "Saint Meinrad Seminary and School of Theology", + "email_address": null, + "ip_addresses": [], + "established": 1857, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 38.12005, + "lng": -86.91416, + "state": null, + "state_code": null, + "city": "Santa Claus", + "geonames_city": { + "id": 4264457, + "city": "Santa Claus", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Spencer", + "id": 4265152, + "ascii_name": "Spencer", + "code": "US.IN.147" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.saintmeinrad.edu/" + ], + "aliases": [], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Saint_Meinrad_Seminary_and_School_of_Theology", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 8971 0658" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "3570831" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q7401893" + ] + }, + "GRID": { + "preferred": "grid.431503.0", + "all": "grid.431503.0" + } + } +} \ No newline at end of file diff --git a/v1.43/05v1m8q81.json b/v1.43/05v1m8q81.json new file mode 100644 index 000000000..22dda58bf --- /dev/null +++ b/v1.43/05v1m8q81.json @@ -0,0 +1,129 @@ +{ + "id": "https://ror.org/05v1m8q81", + "name": "Ministry of Higher Education and Scientific Research", + "email_address": null, + "ip_addresses": [], + "established": 1966, + "types": [ + "Government" + ], + "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" + } + ], + "addresses": [ + { + "lat": 36.81897, + "lng": 10.16579, + "state": null, + "state_code": null, + "city": "Tunis", + "geonames_city": { + "id": 2464470, + "city": "Tunis", + "geonames_admin1": { + "name": "Tunis Governorate", + "id": 2464464, + "ascii_name": "Tunis Governorate", + "code": "TN.36" + }, + "geonames_admin2": { + "name": null, + "id": null, + "ascii_name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2464461 + } + ], + "links": [ + "http://www.mes.tn/" + ], + "aliases": [], + "acronyms": [ + "MHESR" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Ministry_of_Higher_Education_and_Scientific_Research_(Tunisia)", + "labels": [ + { + "label": "Ministère de l'Enseignement Supérieur et de la Recherche Scientifique", + "iso639": "fr" + }, + { + "label": "وزارة التعليم العالي والبحث العلمي", + "iso639": "ar" + } + ], + "country": { + "country_name": "Tunisia", + "country_code": "TN" + }, + "external_ids": { + "FundRef": { + "preferred": null, + "all": [ + "501100004409", + "100012964" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q3315194" + ] + }, + "GRID": { + "preferred": "grid.425819.3", + "all": "grid.425819.3" + } + } +} \ No newline at end of file diff --git a/v1.43/05v727m31.json b/v1.43/05v727m31.json new file mode 100644 index 000000000..7da42e215 --- /dev/null +++ b/v1.43/05v727m31.json @@ -0,0 +1,113 @@ +{ + "ip_addresses": [], + "aliases": [ + "University of Grenoble Alpes ComUE", + "Communauté Université Grenoble-Alpes", + "University of Grenoble Alpes Community", + "ComUE Université Grenoble Alpes" + ], + "acronyms": [ + "COMUE" + ], + "links": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "name": "Communauté Université Grenoble Alpes", + "wikipedia_url": "https://en.wikipedia.org/wiki/Community_Universit%C3%A9_Grenoble_Alpes", + "addresses": [ + { + "lat": 45.1787, + "lng": 5.76281, + "state": null, + "state_code": null, + "country_geonames_id": 3017382, + "city": "Saint-Martin-d'Hères", + "geonames_city": { + "id": 2978317, + "city": "Saint-Martin-d'Hères", + "geonames_admin1": { + "name": "Auvergne-Rhône-Alpes", + "ascii_name": "Auvergne-Rhône-Alpes", + "id": 11071625, + "code": "FR.84" + }, + "geonames_admin2": { + "name": "Isère", + "id": 3012715, + "ascii_name": "Isère", + "code": "FR.84.38" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Education" + ], + "external_ids": { + "Wikidata": { + "preferred": "Q3551589", + "all": [ + "Q3551589" + ] + }, + "FundRef": { + "preferred": "100012953", + "all": [ + "100012953" + ] + } + }, + "established": 2013, + "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" + } + ], + "email_address": null, + "id": "https://ror.org/05v727m31", + "labels": [ + { + "label": "Community University Grenoble Alps", + "iso639": "en" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05vm26792.json b/v1.43/05vm26792.json new file mode 100644 index 000000000..646eeab91 --- /dev/null +++ b/v1.43/05vm26792.json @@ -0,0 +1,96 @@ +{ + "id": "https://ror.org/05vm26792", + "name": "Capiz State University", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 11.58528, + "lng": 122.75111, + "state": null, + "state_code": null, + "city": "Roxas City", + "geonames_city": { + "id": 1691444, + "city": "Roxas City", + "geonames_admin1": { + "name": "Western Visayas", + "id": 7521304, + "ascii_name": "Western Visayas", + "code": "PH.06" + }, + "geonames_admin2": { + "name": "Capiz", + "id": 1718641, + "ascii_name": "Capiz", + "code": "PH.06.18" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 1694008 + } + ], + "links": [ + "https://www.capsu.edu.ph" + ], + "aliases": [ + "Panay State Polytechnic College" + ], + "acronyms": [ + "CAPSU" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Capiz_State_University", + "labels": [], + "country": { + "country_name": "Philippines", + "country_code": "PH" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0480 6802" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "23647781" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5036027" + ] + }, + "GRID": { + "preferred": "grid.443135.4", + "all": "grid.443135.4" + } + } +} \ No newline at end of file diff --git a/v1.43/05vnxnq07.json b/v1.43/05vnxnq07.json new file mode 100644 index 000000000..87e5d92c5 --- /dev/null +++ b/v1.43/05vnxnq07.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/05vnxnq07", + "name": "Christian Theological Seminary", + "email_address": null, + "ip_addresses": [], + "established": 1855, + "types": [ + "Other" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 39.76838, + "lng": -86.15804, + "state": null, + "state_code": null, + "city": "Indianapolis", + "geonames_city": { + "id": 4259418, + "city": "Indianapolis", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Marion", + "id": 4260977, + "ascii_name": "Marion", + "code": "US.IN.097" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.cts.edu/" + ], + "aliases": [], + "acronyms": [ + "CTS" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Christian_Theological_Seminary", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2149 5506" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "1260587" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5110194" + ] + }, + "GRID": { + "preferred": "grid.431592.8", + "all": "grid.431592.8" + } + } +} \ No newline at end of file diff --git a/v1.43/05vrs0r17.json b/v1.43/05vrs0r17.json new file mode 100644 index 000000000..292424135 --- /dev/null +++ b/v1.43/05vrs0r17.json @@ -0,0 +1,112 @@ +{ + "id": "https://ror.org/05vrs0r17", + "name": "SUNY Fredonia", + "email_address": null, + "ip_addresses": [], + "established": 1826, + "types": [ + "Education" + ], + "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" + } + ], + "addresses": [ + { + "lat": 42.44006, + "lng": -79.33171, + "state": null, + "state_code": null, + "city": "Fredonia", + "geonames_city": { + "id": 5117926, + "city": "Fredonia", + "geonames_admin1": { + "name": "New York", + "id": 5128638, + "ascii_name": "New York", + "code": "US.NY" + }, + "geonames_admin2": { + "name": "Chautauqua", + "id": 5112358, + "ascii_name": "Chautauqua", + "code": "US.NY.013" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://home.fredonia.edu/" + ], + "aliases": [ + "State University of New York at Fredonia", + "Fredonia State College" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/State_University_of_New_York_at_Fredonia", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0388 0154" + ] + }, + "FundRef": { + "preferred": "100010957", + "all": [ + "100010957" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "512318" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q6487738" + ] + }, + "GRID": { + "preferred": "grid.264268.c", + "all": "grid.264268.c" + } + } +} \ No newline at end of file diff --git a/v1.43/05vs9t239.json b/v1.43/05vs9t239.json new file mode 100644 index 000000000..482ff84b7 --- /dev/null +++ b/v1.43/05vs9t239.json @@ -0,0 +1,74 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [], + "links": [ + "http://www.sx.sgcc.com.cn" + ], + "country": { + "country_name": "China", + "country_code": "CN" + }, + "name": "State Grid Shanxi Electric Power Company Electric Power Research Institute", + "wikipedia_url": null, + "addresses": [ + { + "lat": 37.86944, + "lng": 112.56028, + "state": null, + "state_code": null, + "country_geonames_id": 1814991, + "city": "Taiyuan", + "geonames_city": { + "id": 1793511, + "city": "Taiyuan", + "geonames_admin1": { + "name": "Shanxi", + "ascii_name": "Shanxi", + "id": 1795912, + "code": "CN.24" + }, + "geonames_admin2": { + "name": "Taiyuan Shi", + "id": 1793510, + "ascii_name": "Taiyuan Shi", + "code": "CN.24.1401" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Facility" + ], + "external_ids": {}, + "established": 1998, + "relationships": [], + "email_address": null, + "id": "https://ror.org/05vs9t239", + "labels": [ + { + "label": "国网山西省电力公司电力科学研究院", + "iso639": "zh" + } + ], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05w35s747.json b/v1.43/05w35s747.json new file mode 100644 index 000000000..07e354310 --- /dev/null +++ b/v1.43/05w35s747.json @@ -0,0 +1,100 @@ +{ + "id": "https://ror.org/05w35s747", + "name": "Franklin College", + "email_address": null, + "ip_addresses": [], + "established": 1834, + "types": [ + "Education" + ], + "relationships": [ + { + "label": "Private Academic Library Network of Indiana, Inc. (PALNI)", + "type": "Related", + "id": "https://ror.org/05dch6316" + } + ], + "addresses": [ + { + "lat": 39.48061, + "lng": -86.05499, + "state": null, + "state_code": null, + "city": "Franklin", + "geonames_city": { + "id": 4828382, + "city": "Franklin", + "geonames_admin1": { + "name": "Indiana", + "id": 4921868, + "ascii_name": "Indiana", + "code": "US.IN" + }, + "geonames_admin2": { + "name": "Johnson", + "id": 4259727, + "ascii_name": "Johnson", + "code": "US.IN.081" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.franklincollege.edu/" + ], + "aliases": [ + "Franklin College of Indiana" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Franklin_College_(Indiana)", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0000 9525 218X" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "1965690" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5491372" + ] + }, + "GRID": { + "preferred": "grid.421573.6", + "all": "grid.421573.6" + } + } +} \ No newline at end of file diff --git a/v1.43/05wg1m734.json b/v1.43/05wg1m734.json new file mode 100644 index 000000000..9d4e7171d --- /dev/null +++ b/v1.43/05wg1m734.json @@ -0,0 +1,129 @@ +{ + "id": "https://ror.org/05wg1m734", + "name": "Radboud University Medical Center", + "email_address": null, + "ip_addresses": [], + "established": 1956, + "types": [ + "Healthcare" + ], + "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" + } + ], + "addresses": [ + { + "lat": 51.8425, + "lng": 5.85278, + "state": null, + "state_code": null, + "city": "Nijmegen", + "geonames_city": { + "id": 2750053, + "city": "Nijmegen", + "geonames_admin1": { + "name": "Gelderland", + "id": 2755634, + "ascii_name": "Gelderland", + "code": "NL.03" + }, + "geonames_admin2": { + "name": "Nijmegen Municipality", + "id": 2750052, + "ascii_name": "Nijmegen Municipality", + "code": "NL.03.0268" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 2750405 + } + ], + "links": [ + "https://www.radboudumc.nl" + ], + "aliases": [ + "Radboud University Nijmegen Medical Centre" + ], + "acronyms": [ + "RUNMC" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Radboud_University_Nijmegen_Medical_Centre", + "labels": [ + { + "label": "Radboudumc", + "iso639": "nl" + } + ], + "country": { + "country_name": "Netherlands", + "country_code": "NL" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0444 9382" + ] + }, + "FundRef": { + "preferred": "501100006209", + "all": [ + "501100006209", + "501100003297" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "10637965" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q2594321" + ] + }, + "GRID": { + "preferred": "grid.10417.33", + "all": "grid.10417.33" + } + } +} \ No newline at end of file diff --git a/v1.43/05wnp0977.json b/v1.43/05wnp0977.json new file mode 100644 index 000000000..ac3b9f489 --- /dev/null +++ b/v1.43/05wnp0977.json @@ -0,0 +1,84 @@ +{ + "ip_addresses": [], + "aliases": [], + "acronyms": [ + "DASA" + ], + "links": [ + "https://www.gov.uk/government/organisations/defence-and-security-accelerator" + ], + "country": { + "country_name": "United Kingdom", + "country_code": "GB" + }, + "name": "Defence and Security Accelerator", + "wikipedia_url": null, + "addresses": [ + { + "lat": 51.50853, + "lng": -0.12574, + "state": null, + "state_code": null, + "country_geonames_id": 2635167, + "city": "London", + "geonames_city": { + "id": 2643743, + "city": "London", + "geonames_admin1": { + "name": "England", + "ascii_name": "England", + "id": 6269131, + "code": "GB.ENG" + }, + "geonames_admin2": { + "name": "Greater London", + "id": 2648110, + "ascii_name": "Greater London", + "code": "GB.ENG.GLA" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + } + }, + "primary": false, + "postcode": null, + "line": null + } + ], + "types": [ + "Government" + ], + "external_ids": { + "FundRef": { + "preferred": "100012339", + "all": [ + "100012339" + ] + } + }, + "established": null, + "relationships": [ + { + "label": "Ministry of Defence", + "type": "Parent", + "id": "https://ror.org/01bvxzn29" + } + ], + "email_address": null, + "id": "https://ror.org/05wnp0977", + "labels": [], + "status": "active" +} \ No newline at end of file diff --git a/v1.43/05wygq130.json b/v1.43/05wygq130.json new file mode 100644 index 000000000..9caba055a --- /dev/null +++ b/v1.43/05wygq130.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05wygq130", + "name": "Universidad Gabriela Mistral", + "email_address": null, + "ip_addresses": [], + "established": 1981, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": -33.45694, + "lng": -70.64827, + "state": null, + "state_code": null, + "city": "Santiago", + "geonames_city": { + "id": 3871336, + "city": "Santiago", + "geonames_admin1": { + "name": "Santiago Metropolitan", + "id": 3873544, + "ascii_name": "Santiago Metropolitan", + "code": "CL.12" + }, + "geonames_admin2": { + "name": "Provincia de Santiago", + "id": 3871332, + "ascii_name": "Provincia de Santiago", + "code": "CL.12.131" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3895114 + } + ], + "links": [ + "https://www.ugm.cl/" + ], + "aliases": [], + "acronyms": [ + "UGM" + ], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Gabriela_Mistral_University", + "labels": [ + { + "label": "Gabriela Mistral University", + "iso639": "en" + } + ], + "country": { + "country_name": "Chile", + "country_code": "CL" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2230 9680" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "615884" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5515968" + ] + }, + "GRID": { + "preferred": "grid.441822.9", + "all": "grid.441822.9" + } + } +} \ No newline at end of file diff --git a/v1.43/05wzh1m37.json b/v1.43/05wzh1m37.json new file mode 100644 index 000000000..59665a7f3 --- /dev/null +++ b/v1.43/05wzh1m37.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05wzh1m37", + "name": "Institut de Chimie Moléculaire et des Matériaux d'Orsay", + "email_address": null, + "ip_addresses": [], + "established": 2006, + "types": [ + "Facility" + ], + "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" + } + ], + "addresses": [ + { + "lat": 48.69572, + "lng": 2.18727, + "state": null, + "state_code": null, + "city": "Orsay", + "geonames_city": { + "id": 2989204, + "city": "Orsay", + "geonames_admin1": { + "name": "Île-de-France", + "id": 3012874, + "ascii_name": "Île-de-France", + "code": "FR.11" + }, + "geonames_admin2": { + "name": "Essonne", + "id": 3019599, + "ascii_name": "Essonne", + "code": "FR.11.91" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3017382 + } + ], + "links": [ + "https://www.icmmo.universite-paris-saclay.fr" + ], + "aliases": [], + "acronyms": [ + "ICMMO" + ], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "France", + "country_code": "FR" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0382 4005" + ] + }, + "CNRS": { + "preferred": null, + "all": [ + "UMR8182" + ] + }, + "GRID": { + "preferred": "grid.462047.3", + "all": "grid.462047.3" + } + } +} \ No newline at end of file diff --git a/v1.43/05x643e19.json b/v1.43/05x643e19.json new file mode 100644 index 000000000..252438cc2 --- /dev/null +++ b/v1.43/05x643e19.json @@ -0,0 +1,105 @@ +{ + "id": "https://ror.org/05x643e19", + "name": "Corewell Health Butterworth Hospital", + "email_address": null, + "ip_addresses": [], + "established": 1875, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Michigan State University", + "type": "Related", + "id": "https://ror.org/05hs6h993" + }, + { + "label": "Corewell Health", + "type": "Parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "addresses": [ + { + "lat": 42.96336, + "lng": -85.66809, + "state": null, + "state_code": null, + "city": "Grand Rapids", + "geonames_city": { + "id": 4994358, + "city": "Grand Rapids", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Kent", + "id": 4998005, + "ascii_name": "Kent", + "code": "US.MI.081" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "http://www.spectrumhealth.org/butterworth" + ], + "aliases": [ + "Butterworth Hospital" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "https://en.wikipedia.org/wiki/Butterworth_Hospital_(Michigan)", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0450 5989" + ] + }, + "OrgRef": { + "preferred": null, + "all": [ + "11993430" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q5003039" + ] + }, + "GRID": { + "preferred": "grid.413153.1", + "all": "grid.413153.1" + } + } +} \ No newline at end of file diff --git a/v1.43/05x9ffc66.json b/v1.43/05x9ffc66.json new file mode 100644 index 000000000..8fe3f28d6 --- /dev/null +++ b/v1.43/05x9ffc66.json @@ -0,0 +1,99 @@ +{ + "id": "https://ror.org/05x9ffc66", + "name": "Beaumont Hospital, Troy", + "email_address": null, + "ip_addresses": [], + "established": 1908, + "types": [ + "Healthcare" + ], + "relationships": [ + { + "label": "Oakland University", + "type": "Related", + "id": "https://ror.org/01ythxj32" + }, + { + "label": "Corewell Health", + "type": "Parent", + "id": "https://ror.org/02hb5yj49" + } + ], + "addresses": [ + { + "lat": 42.60559, + "lng": -83.14993, + "state": null, + "state_code": null, + "city": "Troy", + "geonames_city": { + "id": 5012639, + "city": "Troy", + "geonames_admin1": { + "name": "Michigan", + "id": 5001836, + "ascii_name": "Michigan", + "code": "US.MI" + }, + "geonames_admin2": { + "name": "Oakland", + "id": 5004223, + "ascii_name": "Oakland", + "code": "US.MI.125" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 6252001 + } + ], + "links": [ + "https://www.beaumont.org/locations/beaumont-hospital-troy" + ], + "aliases": [ + "William Beaumont Hospital, Troy" + ], + "acronyms": [], + "status": "active", + "wikipedia_url": "", + "labels": [], + "country": { + "country_name": "United States", + "country_code": "US" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0004 0435 2409" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q50376756" + ] + }, + "GRID": { + "preferred": "grid.417120.1", + "all": "grid.417120.1" + } + } +} \ No newline at end of file diff --git a/v1.43/05xwcq167.json b/v1.43/05xwcq167.json new file mode 100644 index 000000000..ba4c0c039 --- /dev/null +++ b/v1.43/05xwcq167.json @@ -0,0 +1,106 @@ +{ + "id": "https://ror.org/05xwcq167", + "name": "Universidad Autónoma de Baja California", + "email_address": null, + "ip_addresses": [], + "established": 1957, + "types": [ + "Education" + ], + "relationships": [], + "addresses": [ + { + "lat": 32.62781, + "lng": -115.45446, + "state": null, + "state_code": null, + "city": "Mexicali", + "geonames_city": { + "id": 3996069, + "city": "Mexicali", + "geonames_admin1": { + "name": "Baja California", + "id": 4017700, + "ascii_name": "Baja California", + "code": "MX.02" + }, + "geonames_admin2": { + "name": "Mexicali Municipality", + "id": 6942831, + "ascii_name": "Mexicali Municipality", + "code": "MX.02.002" + }, + "license": { + "attribution": "Data from geonames.org under a CC-BY 3.0 license", + "license": "http://creativecommons.org/licenses/by/3.0/" + }, + "nuts_level1": { + "name": null, + "code": null + }, + "nuts_level2": { + "name": null, + "code": null + }, + "nuts_level3": { + "name": null, + "code": null + } + }, + "postcode": null, + "primary": false, + "line": null, + "country_geonames_id": 3996063 + } + ], + "links": [ + "http://www.uabc.mx/" + ], + "aliases": [], + "acronyms": [ + "UABC" + ], + "status": "active", + "wikipedia_url": "http://en.wikipedia.org/wiki/Autonomous_University_of_Baja_California", + "labels": [ + { + "label": "Autonomous University of Baja California", + "iso639": "en" + } + ], + "country": { + "country_name": "Mexico", + "country_code": "MX" + }, + "external_ids": { + "ISNI": { + "preferred": null, + "all": [ + "0000 0001 2192 0509" + ] + }, + "FundRef": { + "preferred": null, + "all": [ + "501100007228" + ] + }, + "OrgRef": { + "preferred": "32090575", + "all": [ + "32090575", + "19401526" + ] + }, + "Wikidata": { + "preferred": null, + "all": [ + "Q4826824" + ] + }, + "GRID": { + "preferred": "grid.412852.8", + "all": "grid.412852.8" + } + } +} \ No newline at end of file From 7ec35c1e516bf7a41fd50b38e04f5d88703acbec Mon Sep 17 00:00:00 2001 From: adambuttrick Date: Wed, 13 Mar 2024 07:54:28 -0700 Subject: [PATCH 3/5] adding relationships file --- v1.43/relationships.csv | 946 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 946 insertions(+) create mode 100644 v1.43/relationships.csv diff --git a/v1.43/relationships.csv b/v1.43/relationships.csv new file mode 100644 index 000000000..16547d81b --- /dev/null +++ b/v1.43/relationships.csv @@ -0,0 +1,946 @@ +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 +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 +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 From e5d45d47e75e8cf032eafc0acac0f0f3109d682b Mon Sep 17 00:00:00 2001 From: adambuttrick Date: Wed, 13 Mar 2024 09:35:46 -0700 Subject: [PATCH 4/5] record and relationships corrections --- v1.43/017wrhq72.json | 4 +--- v1.43/02805zw73.json | 7 +------ v1.43/042fhmq33.json | 2 +- v1.43/05sz3st37.json | 7 +------ v1.43/relationships.csv | 6 ++---- 5 files changed, 6 insertions(+), 20 deletions(-) diff --git a/v1.43/017wrhq72.json b/v1.43/017wrhq72.json index b90139db0..f57f7c672 100644 --- a/v1.43/017wrhq72.json +++ b/v1.43/017wrhq72.json @@ -62,9 +62,7 @@ "links": [ "https://www.water.wa.gov.au/" ], - "aliases": [ - "Department of Water and Environmental Regulation" - ], + "aliases": [], "acronyms": [], "status": "inactive", "wikipedia_url": "", diff --git a/v1.43/02805zw73.json b/v1.43/02805zw73.json index f52672124..96ccc6a23 100644 --- a/v1.43/02805zw73.json +++ b/v1.43/02805zw73.json @@ -15,12 +15,7 @@ }, { "label": "Cégep Beauce-Appalaches", - "type": "Child", - "id": "https://ror.org/05sz3st37" - }, - { - "label": "Cégep Beauce-Appalaches", - "type": "Parent", + "type": "02805zw73", "id": "https://ror.org/05sz3st37" } ], diff --git a/v1.43/042fhmq33.json b/v1.43/042fhmq33.json index bb2eec88e..eba9e5e24 100644 --- a/v1.43/042fhmq33.json +++ b/v1.43/042fhmq33.json @@ -1,7 +1,7 @@ { "ip_addresses": [], "aliases": [ - "Robert Packard Center for ALS Research, Johns Hopkins University" + "Robert Packard Center for ALS Research" ], "acronyms": [], "links": [ diff --git a/v1.43/05sz3st37.json b/v1.43/05sz3st37.json index 11bb28226..9fc23b2fb 100644 --- a/v1.43/05sz3st37.json +++ b/v1.43/05sz3st37.json @@ -77,12 +77,7 @@ "relationships": [ { "label": "Hôpital d'Youville de Sherbrooke", - "type": "Parent", - "id": "https://ror.org/02805zw73" - }, - { - "label": "Hôpital d'Youville de Sherbrooke", - "type": "Child", + "type": "Related", "id": "https://ror.org/02805zw73" } ], diff --git a/v1.43/relationships.csv b/v1.43/relationships.csv index 16547d81b..d60af31e2 100644 --- a/v1.43/relationships.csv +++ b/v1.43/relationships.csv @@ -456,10 +456,8 @@ Escuela Universitaria de Magisterio Begoñako Andra Mari",Escuela Universitaria 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 +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,Related,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,Related,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 From fd8d8fd9b618ec71f2e95e936f41121c8a7f4605 Mon Sep 17 00:00:00 2001 From: adambuttrick Date: Wed, 13 Mar 2024 09:36:53 -0700 Subject: [PATCH 5/5] correcting relationship type on 02805zw73.json --- v1.43/02805zw73.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v1.43/02805zw73.json b/v1.43/02805zw73.json index 96ccc6a23..fb4469f21 100644 --- a/v1.43/02805zw73.json +++ b/v1.43/02805zw73.json @@ -15,7 +15,7 @@ }, { "label": "Cégep Beauce-Appalaches", - "type": "02805zw73", + "type": "Related", "id": "https://ror.org/05sz3st37" } ],