ORCID Identifiers
Linked Open Exhibition
Catalogue exhibition contents using Linked Open Data and AI LLM assistants.
Data Science, GLAM, Open Science
What is ORCID?
ORCID (Open Researcher and Contributor ID) is a free, unique, persistent digital identifier that distinguishes you from other researchers. It’s a 16-digit identifier in the format: XXXX-XXXX-XXXX-XXXX
Example: 0000-0002-1234-5678
Why Use ORCID?
- Disambiguation: Ensures your work is attributed to you (especially important if you have a common name)
- Persistence: Your ORCID follows you throughout your career
- Interoperability: ORCID is recognized globally by publishers, funders, and institutions
- Profile Control: You control your ORCID profile and can add your publications, funding, affiliations, etc.
How to Get an ORCID
- Visit: orcid.org
- Click: “Sign in” → “Register for an ORCID iD”
- Provide:
- Given name and family name
- Email address
- Password
- Affiliation (optional but recommended)
- Verify: Confirm your email address
- Complete: Your 16-digit ORCID will be generated immediately
Recommendation: Make your ORCID profile public so it’s discoverable!
Adding ORCID to Quarto Projects
Method 2: In _quarto.yml (Project Level)
For organization-wide ORCID references:
project:
type: website
title: "My Project"
metadata:
author:
- name: Jane Researcher
orcid: 0000-0002-1234-5678Method 3: In a CFF File (Recommended)
Use the Citation File Format to document all contributors with ORCID. See below for details.
Citation File Format (CFF) with ORCID
A CITATION.cff file (at repository root) standardizes how to cite your project and includes contributor metadata with ORCID.
Example CITATION.cff:
cff-version: 1.2.0
title: "Linked Open Exhibition"
abstract: "A standardized data model framework for exhibitions aligned with CIDOC CRM"
authors:
- family-names: "Researcher"
given-names: "Jane"
orcid: "https://orcid.org/0000-0002-1234-5678"
affiliation: "NFDI4Culture"
email: "jane@example.edu"
- family-names: "Colleague"
given-names: "John"
orcid: "https://orcid.org/0000-0003-9876-5432"
affiliation: "Museum Institute"
contributors:
- family-names: "Copilot"
given-names: "GitHub"
type: "software"
email: "ai@github.com"
version: 1.0.0
date-released: 2026-06-02
repository-code: "https://github.com/NFDI4Culture/linked-open-exhibition"
url: "https://nfdi4culture.github.io/linked-open-exhibition/"
keywords:
- "exhibitions"
- "linked-open-data"
- "cidoc-crm"
- "wikidata"
license: "CC-BY-SA-4.0"
references:
- type: "standard"
title: "CIDOC CRM"
version: "7.1.3"
url: "https://cidoc-crm.org/"Benefits of CFF:
✅ GitHub automatically displays citation instructions
✅ Zenodo and other platforms recognize it for DOI generation
✅ Structured format for all contributor metadata
✅ ORCID links are clickable and verified
✅ Version tracking for reproducibility
GitHub Integration
- Create
CITATION.cffin your repository root - Commit and push to GitHub
- View: GitHub will display “Cite this repository” in the sidebar
- Copy: Users can generate citations in BibTeX, APA, etc.
Linking to Your ORCID Profile:
Use the full ORCID URL in your CFF:
orcid: "https://orcid.org/0000-0002-1234-5678"This ensures the link is persistent and clickable.
Best Practices
- Always use HTTPS URLs:
https://orcid.org/XXXX-XXXX-XXXX-XXXX - Keep your ORCID profile public for discoverability
- Link your ORCID to your institutional email for auto-discovery
- Update your ORCID profile with recent publications and contributions
- Use consistent author name formatting across all publications
Contact
For questions about ORCID implementation in this project, consult the project repository or the ORCID support site.