Skip to content

Conversation

@sfisher
Copy link

@sfisher sfisher commented Jan 14, 2026

Fixes #775 .

Changes proposed in this PR:

  • Updates the code to get the values from the new ROR format (downloaded from Zenodo).
  • Gets the domain name from the first domains entry in the new schema.
  • Tested by running it manually from within the container on my machine like below:
docker exec -it dmptool /bin/bash
rails external_api:sync_registry_orgs[true]
# it took a while but populated around ~118,000 records into my database which was empty before
  • @briri , it appears to me to be working ok and the autocomplete for institution for a new account works for me, but it would be helpful if you can verify a couple of things I wasn't sure about (since I haven't set up the database forwarding through session for the other servers like dev/stg/prd):
    • Are the columns like "types", "acronyms", "aliases", "country" populating the same way and same json structure as the old version of ror? (I could dig in more to double check but I figured you'd have easier access to compare to what is already in these fields if you have the session db forwarding set up for these already.)
    • all the api_ columns are null, which I assume is expected for the population I did?

Thanks for looking at things @briri and let me know if you believe something is wrong with the population but I believe it's working and it populated almost 120,000 records when I ran it on my dev database which didn't have anything filled into the registry_orgs table.

…he tests are commented out and had trouble actually running them even if uncommented since it said there was no `test` environment set up. But changes are here in case we do more work to get tests working in the future.
@sfisher sfisher requested review from briri and jupiter007 January 14, 2026 19:44
/config/credentials/stage.yaml.enc
/config/credentials/production.key
/config/credentials/production.yaml.enc
.nvmrc
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

L169: I believe you wouldn't want .nvmrc in your .gitignore file because you want to make sure that your team uses the same node version

Copy link
Collaborator

@briri briri left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sfisher this is looking good. I agree with @jupiter007 though, even though there isn't one in place in the repo, we should have an that .nvmrc file to help make sure we're all using the same version

The alias, country, etc. on the stage system look correct to me as well.

After we deploy this to prod we will need to run the following to update the external API info for 157 entries in the table (I already ran on stage):

UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/0540g1c48';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/059fqnc42';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/0399mhs52';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/03j9e2j92';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/00x19de83';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02s42x260';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100001771', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02gegq725';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100000980', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04zk9fe75';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/501100001821', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01f9mc681';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01p7gwa14';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100000971', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/00mwp5989';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100005202', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01frxsf98';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/05aq6yn88';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04aqat463';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02xey9a22';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/00fj8a872';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01wtjyf13';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100005536', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02r8tn769';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04r5s4b52';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/046zezr58';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/006ndaj41';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02e3wq066';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/03em45j53';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/045t78n53';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/00r57r863';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01rcfpa16';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/014eweh95';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/001xhss06';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04qn9mx93';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01tnvpc68';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01rvays47';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/002jdaq33';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/025kzpk63';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01mng8331';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02rdzmk74';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/053a2cp42';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/05s7cqk18';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02kd4km72';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/03mamvh39';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/00b6sbb32';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/0471zv972';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/028yd4c30';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01krpsy48';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/050rnw378';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/0388pet74';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/03xyg3m20';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/05p847d66';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/037gd6g64';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/05v01mk25';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/05wqqhv83';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/05nwjp114';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02trddg58';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/029b7h395';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04mg8wm74';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01ar8dr59';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01pc7k308';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/051fftw81';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04ap5x931';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/00apvva27';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04nseet23';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04k9mqs78';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01k638r21';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01gmp5538';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01vnjbg30';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/05wgkzg12';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02dz2hb46';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/034m1ez10';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02a65dj82';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/020fhsn68';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/03z9hh605';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04evh7y43';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04h67aa53';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/025dabr11';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04vw0kz07';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/054ydxh33';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01sharn77';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/0401vze59';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/501100000223', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/000hkd473';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100006309', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04sedwh45';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/031gy6182';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02ch5q898';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/054j5yq82';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100010586', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04a2qqf85';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100008539', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/00qfsn733';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02yrzyf97';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04437j066';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/028b18z22';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/00ryjtt64';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/012wp4251';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01dy3j343';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02yhmtm27';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02ajbht29';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/057xcp713';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04xr3m042';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/05b5wvf11';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01bp8jn44';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01wmcm405';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/03cbpc337';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02z0mvz29';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01ghfgz70';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04g4sf283';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02shwmm76';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/021nxhr62';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100000936', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/006wxqw41';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01cwqze88';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100000015', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01bj3aw27';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/027ka1x80';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/043z4tv69';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/05fnzca26';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01cyfxe35';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/027k65916';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/501100002241', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/00097mb19';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/0060t0j89';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100000913', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/03dy4aq19';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/03jh5a977';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04mhx6838';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100000968', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/013kjyp64';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/0445wmv88';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100000893', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01cmst727';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02acart68';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/012pb6c26';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/03h7mcc28';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/00j4k1h63';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04q48ey07';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/00adh9b73';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01y3zfr79';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/00190t495';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100001545', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01hx92781';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/501100011730', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/00x0z1472';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/006zn3t30';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04nh1dc89';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04xeg9z08';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01s5ya894';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/014bj5w56';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02meqm098';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04byxyr05';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/0171mag52';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/03wkg3b53';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/049v75w11';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/0493hgw16';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02jzrsm59';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04vfsmv21';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01qxmdg18';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/004a2wv92';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04hccab49';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04pw6fb54';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/00whkrf32';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/00372qc85';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100005190', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/025ck6r46';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04ya3kq71';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/03g87he71';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100008984', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/0252rqe04';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02epydz83';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nih', api_guidance = 'Please enter a project/application id (e.g. 5R01AI00000, 1234567) or a combination of title keywords, PI names, FOA opportunity id (e.g. PA-11-111) and the award year.', api_query_fields = "[{\"label\": \"Project/Application id\", \"query_string_key\": \"project\"}, {\"label\": \"FOA opportunity id\", \"query_string_key\": \"opportunity\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/01jdyfj45';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/04xx4z452';
UPDATE registry_orgs SET api_target = '/api/v3/awards/nsf', api_guidance = 'Please enter an award id (e.g. 1234567) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award id\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/05q5zzn71';
UPDATE registry_orgs SET api_target = '/api/v3/awards/crossref/10.13039/100000048', api_guidance = 'Please enter an award DOI (e.g. 10.12345/abcd.proj.2008/abc123) or a combination of title keywords, PI names and the award year.', api_query_fields = "[{\"label\": \"Award DOI\", \"query_string_key\": \"project\"}, {\"label\": \"PI names\", \"query_string_key\": \"pi_names\"}, {\"label\": \"Title keywords\", \"query_string_key\": \"title\"}, {\"label\": \"Award year\", \"query_string_key\": \"years\"}]" WHERE ror_id = 'https://ror.org/02e463172';

if old_checksum_val == metadata[:checksum]
log_message(method: method, message: 'There is no new ROR file to process.')
else
download_file = download_file = metadata['key']
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh wow. 🤣 good catch. wonder how long that's been like that

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants