-
Notifications
You must be signed in to change notification settings - Fork 1
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
base: main
Are you sure you want to change the base?
Conversation
…rks, totalWorks, totalUniqueCoAuthors, totalWorksWithMultipleContributors, citedByCount
data/vocab/scholar.ttl
Outdated
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 . | ||
|
There was a problem hiding this comment.
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.
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 . |
data/vocab/scholar.ttl
Outdated
|
||
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 ; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 ; |
data/vocab/scholar.ttl
Outdated
|
||
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 ; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 ; |
data/vocab/scholar.ttl
Outdated
|
||
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 ; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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:label "order"@en ; | ||
rdfs:comment "Specifies the order of a contributor in a work."@en ; | ||
rdfs:domain scholar:Contribution ; | ||
rdfs:range xsd:string . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this be a number or enum (first, middle, last)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in current case its kind of enum, but I think it should be string and we can use according to needs. (if it changes sometimes later and can be used in other classes as well)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it should be a positive number, we will discuss tomorrow
data/vocab/scholar.ttl
Outdated
scholar:totalUniqueCoAuthors a rdf:Property ; | ||
rdfs:label "total unique co-authors"@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 . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rdfs:range xsd:integer . | |
rdfs:range xsd:nonNegativeInteger . |
scholar:contributor a rdf:Property ; | ||
rdfs:label "contributor"@en ; | ||
rdfs:comment "Entity (or entities) who contribute to the origin resource."@en ; | ||
rdfs:domain scholar:Contribution ; | ||
rdfs:range lite:Agent ; | ||
owl:equivalentProperty schema:contributor, dc:contributor . | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is in lite, don't need it defined here
scholar:contributor a rdf:Property ; | |
rdfs:label "contributor"@en ; | |
rdfs:comment "Entity (or entities) who contribute to the origin resource."@en ; | |
rdfs:domain scholar:Contribution ; | |
rdfs:range lite:Agent ; | |
owl:equivalentProperty schema:contributor, dc:contributor . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lite contributor does not have relation to Contribution. not to affect lot of classes, I thought maybe creating scholar contributor with contribution was required
Co-authored-by: Gregory Reburn <[email protected]>
Co-authored-by: Gregory Reburn <[email protected]>
Co-authored-by: Gregory Reburn <[email protected]>
Co-authored-by: Gregory Reburn <[email protected]>
Co-authored-by: Gregory Reburn <[email protected]>
…the fly in ESG API Co-authored-by: Gregory Reburn <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated ContributorStatement label
add following fields to scholar person: totalCoauthoredWorks, totalWorks, totalUniqueCoAuthors, totalWorksWithMultipleContributors, citedByCount