Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

US1315851 - add new fields to scholar person #29

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
30 changes: 30 additions & 0 deletions data/vocab/scholar.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,36 @@ scholar:mostCitedWork a rdf:Property ;
rdfs:range lite:Work ;
rdfs:domain lite:Person .

scholar:totalCoAuthoredWorks a rdf:Property ;
rdfs:label "total co-authored works"@en ;
rdfs:comment "The total number of works a person has co-authored."@en ;
rdfs:domain lite:Person ;
rdfs:range xsd:integer .

Copy link
Contributor

Choose a reason for hiding this comment

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

This is a property of the edge. Not applicable to the lite:Person as a property. We can handle this use case via named graph or rdf reification.

Suggested change
scholar:totalCoAuthoredWorks a rdf:Property ;
rdfs:label "total co-authored works"@en ;
rdfs:comment "The total number of works a person has co-authored."@en ;
rdfs:domain lite:Person ;
rdfs:range xsd:integer .

scholar:totalWorks a rdf:Property ;
rdfs:label "total works"@en ;
rdfs:comment "The total number of works authored or co-authored by the person."@en ;
Copy link
Contributor

@gmreburn gmreburn Oct 17, 2024

Choose a reason for hiding this comment

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

Suggested change
rdfs:comment "The total number of works authored or co-authored by the person."@en ;
rdfs:comment "The total number of works authored or co-authored by the person, as reported by external sources."@en ;

rdfs:domain lite:Person ;
rdfs:range xsd:integer .
gloriagonz marked this conversation as resolved.
Show resolved Hide resolved

scholar:totalUniqueCoAuthors a rdf:Property ;
gloriagonz marked this conversation as resolved.
Show resolved Hide resolved
rdfs:label "total unique co-authors"@en ;
gloriagonz marked this conversation as resolved.
Show resolved Hide resolved
rdfs:comment "The total number of unique co-authors associated with the person."@en ;
Copy link
Contributor

@gmreburn gmreburn Oct 17, 2024

Choose a reason for hiding this comment

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

Suggested change
rdfs:comment "The total number of unique co-authors associated with the person."@en ;
rdfs:comment "The total number of distinct authors with whom the person has collaborated across all their works. This count includes only unique individuals, regardless of the number of joint works."@en ;

rdfs:domain lite:Person ;
rdfs:range xsd:integer .
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
rdfs:range xsd:integer .
rdfs:range xsd:nonNegativeInteger .


scholar:totalWorksWithMultipleContributors a rdf:Property ;
rdfs:label "total works with multiple contributors"@en ;
rdfs:comment "The total number of works with multiple contributors authored or co-authored by the person."@en ;
gmreburn marked this conversation as resolved.
Show resolved Hide resolved
rdfs:domain lite:Person ;
rdfs:range xsd:integer .
gmreburn marked this conversation as resolved.
Show resolved Hide resolved

gloriagonz marked this conversation as resolved.
Show resolved Hide resolved
scholar:citedByCount a rdf:Property ;
rdfs:label "cited by count"@en ;
rdfs:comment "The number of times the person’s works have been cited."@en ;
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
rdfs:comment "The number of times the person’s works have been cited."@en ;
rdfs:comment "The total number of citations the person’s works have received from other scholarly works. This count reflects how many times their contributions have been referenced in academic literature."@en ;

rdfs:domain lite:Person ;
rdfs:range xsd:integer .

## ID properties

scholar:fainId a rdf:Property ;
Expand Down