Authorship
An authorship relation connects a person to a research product they have authored. It carries information about the author's role in the work, their position in the author list, whether they are the corresponding author, and the affiliations they declared at the time of publication. For details on how this relation is generated in the Graph workflow, see Step 3 in the Person and relations methodology.
The Authorship object
person
Type: String • Cardinality: ONE
The OpenAIRE identifier of the person who authored the product.
"person": "orcid_______::ebbe30d5171e6e53545e7acb391bc9a2"
product
Type: String • Cardinality: ONE
The OpenAIRE identifier of the research product the person authored.
"product": "doi_________::2b3cb7130c506d1c3a05e9160b2c4108"
roles
Type: String • Cardinality: MANY
The roles played by the author in the production of the work, expressed using the CRediT (Contributor Roles Taxonomy) vocabulary. Possible values are: conceptualization, data curation, formal analysis, funding acquisition, investigation, methodology, project administration, resources, software, supervision, validation, visualization, writing – original draft, writing – review & editing.
"roles": [
"conceptualization",
"methodology",
"writing – original draft"
]
rank
Type: Integer • Cardinality: ONE
The position of the author in the author list of the product, starting from 1.
"rank": 2
corresponding
Type: Boolean • Cardinality: ONE
Indicates whether the author is the corresponding author for the product.
"corresponding": true
declaredAffiliations
Type: Object • Cardinality: MANY
The affiliations declared by the author in the product metadata. Each entry captures the raw affiliation string as it appears in the source, together with the list of organizations that have been matched to that string by the affiliation resolution process.
"declaredAffiliations": [
{
"rawAffiliation": "Department of Computer Science, University of Bologna, Italy",
"matchingOrganizations": [
{
"ror": "https://ror.org/...",
"openOrgs": null,
"provenance": "affro",
"trust": 0.92,
"affiliationString": "University of Bologna",
"countries": ["IT"]
}
]
}
]
declaredAffiliations.rawAffiliation
Type: String • Cardinality: ONE
The affiliation string as declared by the author in the original source metadata, before any normalization or matching.
"rawAffiliation": "Department of Computer Science, University of Bologna, Italy"
declaredAffiliations.matchingOrganizations
Type: Object • Cardinality: MANY
The list of organizations matched to the raw affiliation string. Each entry represents one candidate organization identified by the affiliation resolution process.
declaredAffiliations.matchingOrganizations.ror
Type: String • Cardinality: ONE
The ROR identifier of the matched organization.
"ror": "https://ror.org/..."
declaredAffiliations.matchingOrganizations.openOrgs
Type: String • Cardinality: ONE
The OpenOrgs identifier of the matched organization. Present only if a ROR identifiers is missing
"openOrgs": "openorgs____::1234567890"
declaredAffiliations.matchingOrganizations.provenance
Type: String • Cardinality: ONE
The system or process that produced the match between the raw affiliation string and the organization.
"provenance": "affro"
declaredAffiliations.matchingOrganizations.trust
Type: Double • Cardinality: ONE
A confidence score between 0 and 1 expressing the reliability of the match between the raw affiliation string and the organization.
"trust": 0.92
declaredAffiliations.matchingOrganizations.affiliationString
Type: String • Cardinality: ONE
The normalized name of the matched organization as present in the matching ROR entry or in OpenOrgs.
"affiliationString": "University of Bologna"
declaredAffiliations.matchingOrganizations.countries
Type: String • Cardinality: MANY
The ISO 3166-1 alpha-2 country codes associated with the matched organization.
"countries": ["IT"]