LinuxForHealth FHIR Implementation Guide
8.0.0 - draft United States of America flag

LinuxForHealth FHIR Implementation Guide - Local Development build (v8.0.0). See the Directory of published versions

: Gender Identity Codes - TTL Representation

Active as of 2022-11-10

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:CodeSystem;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "gender-identity"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>This code system <code>http://linuxforhealth.org/fhir/cdm/CodeSystem/gender-identity</code> defines the following codes:</p><table class=\"codes\"><tr><td style=\"white-space:nowrap\"><b>Code</b></td><td><b>Display</b></td></tr><tr><td style=\"white-space:nowrap\">female<a name=\"gender-identity-female\"> </a></td><td>Female</td></tr><tr><td style=\"white-space:nowrap\">gender-neutral<a name=\"gender-identity-gender-neutral\"> </a></td><td>Gender-neutral</td></tr><tr><td style=\"white-space:nowrap\">male<a name=\"gender-identity-male\"> </a></td><td>Male</td></tr><tr><td style=\"white-space:nowrap\">non-binary<a name=\"gender-identity-non-binary\"> </a></td><td>Non-binary</td></tr><tr><td style=\"white-space:nowrap\">other<a name=\"gender-identity-other\"> </a></td><td>Other</td></tr><tr><td style=\"white-space:nowrap\">unknown<a name=\"gender-identity-unknown\"> </a></td><td>Unknown</td></tr></table></div>"
  ];
  fhir:CodeSystem.url [ fhir:value "http://linuxforhealth.org/fhir/cdm/CodeSystem/gender-identity"];
  fhir:CodeSystem.version [ fhir:value "8.0.0"];
  fhir:CodeSystem.name [ fhir:value "GenderIdentityCodeSystem"];
  fhir:CodeSystem.title [ fhir:value "Gender Identity Codes"];
  fhir:CodeSystem.status [ fhir:value "active"];
  fhir:CodeSystem.date [ fhir:value "2022-11-10T16:00:46+00:00"^^xsd:dateTime];
  fhir:CodeSystem.publisher [ fhir:value "LinuxForHealth Team"];
  fhir:CodeSystem.description [ fhir:value "Typically, gender identity codes are described in terms of masculinity and femininity. Gender identity is a social construct that varies, both across different cultures and over time. This value is often used for identity purposes, and should be collected directly from the patient."];
  fhir:CodeSystem.jurisdiction [
     fhir:index 0;
     fhir:CodeableConcept.coding [
       fhir:index 0;
       fhir:Coding.system [ fhir:value "urn:iso:std:iso:3166" ];
       fhir:Coding.code [ fhir:value "US" ]     ]
  ];
  fhir:CodeSystem.caseSensitive [ fhir:value "true"^^xsd:boolean];
  fhir:CodeSystem.content [ fhir:value "complete"];
  fhir:CodeSystem.count [ fhir:value "6"^^xsd:nonNegativeInteger];
  fhir:CodeSystem.concept [
     fhir:index 0;
     fhir:CodeSystem.concept.code [ fhir:value "female" ];
     fhir:CodeSystem.concept.display [ fhir:value "Female" ]
  ], [
     fhir:index 1;
     fhir:CodeSystem.concept.code [ fhir:value "gender-neutral" ];
     fhir:CodeSystem.concept.display [ fhir:value "Gender-neutral" ]
  ], [
     fhir:index 2;
     fhir:CodeSystem.concept.code [ fhir:value "male" ];
     fhir:CodeSystem.concept.display [ fhir:value "Male" ]
  ], [
     fhir:index 3;
     fhir:CodeSystem.concept.code [ fhir:value "non-binary" ];
     fhir:CodeSystem.concept.display [ fhir:value "Non-binary" ]
  ], [
     fhir:index 4;
     fhir:CodeSystem.concept.code [ fhir:value "other" ];
     fhir:CodeSystem.concept.display [ fhir:value "Other" ]
  ], [
     fhir:index 5;
     fhir:CodeSystem.concept.code [ fhir:value "unknown" ];
     fhir:CodeSystem.concept.display [ fhir:value "Unknown" ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.