{
"@context": {
"spdci": "https://schema.spdci.org/common/v1/",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"schema": "http://schema.org/",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
},
"@graph": [
{
"@id": "category:SexCategoryEnum",
"@type": "rdfs:Class",
"rdfs:subClassOf": "rdfs:Resource",
"rdfs:label": "Sex Category Enum",
"rdfs:comment": "Enumeration for sex categories.",
"owl:oneOf": [
"category:male",
"category:female",
"category:other",
"category:unknown"
]
},
{
"@id": "category:male",
"@type": "category:SexCategoryEnum",
"rdfs:label": "Male",
"rdfs:comment": "Male"
},
{
"@id": "category:female",
"@type": "category:SexCategoryEnum",
"rdfs:label": "Female",
"rdfs:comment": "Female"
},
{
"@id": "category:other",
"@type": "category:SexCategoryEnum",
"rdfs:label": "Others",
"rdfs:comment": "Others"
},
{
"@id": "category:unknown",
"@type": "category:SexCategoryEnum",
"rdfs:label": "Unknown",
"rdfs:comment": "Unknown"
}
]
}