-
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?
Changes from 1 commit
e75af37
b48e183
17f0023
e8223b0
648cda5
42e1ed7
92ac553
0e3b737
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -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 . | ||||||
|
||||||
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 commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
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 ; | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
rdfs:domain lite:Person ; | ||||||
rdfs:range xsd:integer . | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
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 ; | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
rdfs:domain lite:Person ; | ||||||
rdfs:range xsd:integer . | ||||||
|
||||||
## ID properties | ||||||
|
||||||
scholar:fainId a rdf:Property ; | ||||||
|
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.