Skip to content

Commit

Permalink
Add pronouns attribute to Person
Browse files Browse the repository at this point in the history
  • Loading branch information
shaedrich committed Feb 27, 2023
1 parent cac3fbd commit 2585da2
Showing 1 changed file with 25 additions and 0 deletions.
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.


0 comments on commit 2585da2

Please sign in to comment.