Cross Source Links¶
Dimensions data provides ability to retrieve related entities, such as supporting grants to publications.
The diagram above shows the ID fields that can be used to retrieve related source entities. ID fields provide relations between:
Publications ↔ Publications via
references_ids
Publications ↔ Grants via
supporting_grant_ids
Publications ↔ Researchers via
researchers
Patents ↔ Publications via
publication_ids
Grants ↔ Publications via
resulting_publication_ids
Grants ↔ Researchers via
researchers
Clinical Trials ↔ Grants via
associated_grant_ids
Clinical Trials ↔ Publications via
publication_ids
Clinical Trials ↔ Researchers via
researchers
Policy Documents ↔ Publications via
publication_ids
User can retrieve related entities using two steps. First, retrieve the related IDs, such as for example, retrieving supporting grant IDs for publication:
search publications where id = "pub.1103155411"
return publications[supporting_grant_ids]
Then, make a follow up request, using retrieved supporting_grant_ids, to request the actual grant information:
search grants where id in ["grant.7025938", "grant.2686578", "grant.2683072", "grant.2491045"]
return grants
Similarly, other sources can be linked together, using provided ID fields.
In the next paragraphs we provide more specific examples for each of the cross source links.
Links to Publications¶
From Patents to Publications
Finding publications linked to patent ID US-7599561-B2:
search patents where id="US-7599561-B2" return patents[publication_ids]
Finding patents linked to publication ID pub.1061164293:
search patents where publication_ids in ["pub.1061164293"] return patents
From Clinical Trials to Publications
Finding publications linked to clinical trial ID NCT00249015:
search clinical_trials where id="NCT00249015" return clinical_trials[publication_ids]
Finding clinical trials linked to publication ID pub.1020801050:
search clinical_trials where publication_ids="pub.1020801050" return clinical_trials
From Policy Documents to Publications
Finding publications linked to policy document ID policy.101439:
search policy_documents where id="policy.101439" return policy_documents[publication_ids]
Finding policy documents linked to publication ID pub.1020516964:
search policy_documents where publication_ids="pub.1020516964" return policy_documents
From Publications to Publications via References
Finding publications that make reference to publication ID pub.1084716863:
search publications where reference_ids in ["pub.1084716863"] return publications
Links to Grants¶
From Publications to Grants
Finding grants linked to publication ID pub.1113176433:
search publications where id="pub.1113176433" return publications[title+supporting_grant_ids]
Finding publications linked to grant ID grant.5867140:
search publications where supporting_grant_ids="grant.5867140" return publications
From Clinical Trials to Grants
Finding grants linked to clinical trial ID NCT00249366:
search clinical_trials where id="NCT00249366" return clinical_trials[title+associated_grant_ids]
Finding clinical trials linked to grant ID grant.2417698:
search clinical_trials where associated_grant_ids="grant.2417698" return clinical_trials
From Patents to Grants
Finding grants linked to patent ID US-20090247451-A1:
search patents where id="US-20090247451-A1" return patents[title+associated_grant_ids]
Finding patents linked to grant ID grant.2506400:
search patents where associated_grant_ids="grant.2506400" return patents
Links to Patents¶
From Patents to Patents via References & Citations
Finding patents citing patent ID US-20040156837-A1:
search patents where reference_ids="US-20040156837-A1" return patents
Finding patents cited by patent ID US-20040156837-A1:
search patents where cited_by_ids="US-20040156837-A1" return patents
Links to Researchers¶
From Publications to Researchers
Finding researchers linked to publication ID pub.1107885938:
search publications where id="pub.1107885938" return researchers
Finding publications linked to researcher ID ur.011045667027.22:
search publications where researchers.id="ur.011045667027.22" return publications
From Grants to Researchers
Finding researchers linked to grant ID grant.7872115:
search grants where id="grant.7872115" return researchers
Finding grants linked to researcher ID ur.014665603100.22:
search grants where researchers.id="ur.014665603100.22" return grants
Warning
The syntax search in investigators
must not be confused with search where researchers.id=..
. Eg the query search grants in investigators for "\"C Iftode\"" return grants
searches across all the named investigators in grants, irrespectively of whether they have been disambiguated and hence given a Dimensions researcher ID.
The same applies to the query search publications in authors for "\"C Iftode\"" return publications
(as opposed to search publications where researchers.id=..
).
Furthermore, the grants source provides another field investigator_details
which is used to group additional metadata associated to investigators, eg their role in a grant, such as PI, Co-PI etc..