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 1 commit into
base: main
Choose a base branch
from

Conversation

ikantaria-eis
Copy link
Collaborator

add following fields to scholar person: totalCoauthoredWorks, totalWorks, totalUniqueCoAuthors, totalWorksWithMultipleContributors, citedByCount

…rks, totalWorks, totalUniqueCoAuthors, totalWorksWithMultipleContributors, citedByCount
Comment on lines +472 to +477
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 ;


scholar:totalUniqueCoAuthors a rdf:Property ;
rdfs:label "total unique co-authors"@en ;
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 ;


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 ;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants