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

Add pronouns attribute to Person #3272

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
25 changes: 25 additions & 0 deletions data/schema.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -10442,3 +10442,28 @@ Open-ended date ranges can be written with ".." in place of the end date. For ex
""" ;
owl:equivalentProperty dc:identifier .

:PronounType a rdfs:Class ;
rdfs:label "PronounType" ;
rdfs:comment "An enumeration of pronouns." ;
rdfs:subClassOf :Enumeration .

:HeHim a :PronounType ;
rdfs:label "he/him" ;
rdfs:comment "He/him pronouns." .

:SheHer a :PronounType ;
rdfs:label "she/her" ;
rdfs:comment "She/her pronouns." .

:TheyThem a :PronounType ;
rdfs:label "they/them" ;
rdfs:comment "They/them pronouns." .

:pronouns a rdf:Property ;
rdfs:label "pronouns" ;
:domainIncludes :Person ;
:rangeIncludes :PronounType,
:Text ;
rdfs:comment "Pronouns of something, typically a [[Person]], but possibly also fictional characters, animals, etc. While https://schema.org/TheyThem, https://schema.org/HeHim and https://schema.org/SheHer may be used, text strings are also acceptable for people who do not identify as a binary gender. As with the pronouns of individuals, we do not try to enumerate all possibilities.