Skip to content

Commit 2585da2

Browse files
authored
Add pronouns attribute to Person
Fixes schemaorg#2935 and schemaorg#2925 Inspired by schemaorg#1112
1 parent cac3fbd commit 2585da2

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

data/schema.ttl

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10442,3 +10442,28 @@ Open-ended date ranges can be written with ".." in place of the end date. For ex
1044210442
""" ;
1044310443
owl:equivalentProperty dc:identifier .
1044410444

10445+
:PronounType a rdfs:Class ;
10446+
rdfs:label "PronounType" ;
10447+
rdfs:comment "An enumeration of pronouns." ;
10448+
rdfs:subClassOf :Enumeration .
10449+
10450+
:HeHim a :PronounType ;
10451+
rdfs:label "he/him" ;
10452+
rdfs:comment "He/him pronouns." .
10453+
10454+
:SheHer a :PronounType ;
10455+
rdfs:label "she/her" ;
10456+
rdfs:comment "She/her pronouns." .
10457+
10458+
:TheyThem a :PronounType ;
10459+
rdfs:label "they/them" ;
10460+
rdfs:comment "They/them pronouns." .
10461+
10462+
:pronouns a rdf:Property ;
10463+
rdfs:label "pronouns" ;
10464+
:domainIncludes :Person ;
10465+
:rangeIncludes :PronounType,
10466+
:Text ;
10467+
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.
10468+
10469+

0 commit comments

Comments
 (0)