CD.COM.03 sex

Standardised codes/values representing diverse sex categories.

Reference: FHIR Administrative Gender

Code
Values

male

Male

female

Female

other

Others

unknown

Unknown

JSON-LD File on GitHub

https://github.com/spdci/schemas/blob/main/common/v1/SexCategoryEnum.jsonld
{
  "@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"
    }
  ]
}

Last updated

Was this helpful?