DSL Logo
cris-2.0.0
  • A Tour of the DSL
  • Query Syntax
  • Functions Syntax
  • Data Model
    • Sources
    • Entities
    • Literals
    • Cross Source Links
      • Links to Publications
      • Links to Grants
      • Links to Patents
      • Links to Researchers
    • Getting documentation programmatically
  • Reasonable Use
  • Example Queries and Results
  • API Access
  • Glossary
  • Release Notes and Deprecations
  • Frequently Asked Questions
DSL
  • Docs »
  • Data Model »
  • Cross Source Links

Cross Source Links¶

Dimensions data provides ability to retrieve related entities, such as supporting grants to publications.

cross source links - data model

The diagram above shows the ID fields that can be used to retrieve related source entities. ID fields provide relations between:

  1. Publications ↔ Publications via references_ids

  2. Publications ↔ Grants via supporting_grant_ids

  3. Publications ↔ Researchers via researchers

  4. Patents ↔ Patents via reference_ids and cited_by_ids

  5. Patents ↔ Grants via associated_grant_ids

  6. Patents ↔ Publications via publication_ids

  7. Grants ↔ Publications via resulting_publication_ids

  8. Grants ↔ Researchers via researchers

  9. Clinical Trials ↔ Grants via associated_grant_ids

  10. Clinical Trials ↔ Publications via publication_ids

  11. Clinical Trials ↔ Researchers via researchers

  12. 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..

Next Previous

© Copyright 2019 Digital Science & Research Solutions, Inc. All Rights Reserved