QI-Core Implementation Guide: STU Ballot (v3.3.0 for FHIR 4.0.0)

Quality Improvement Core Framework (v3.3.0: STU 4 Ballot 1). The current version is 3.2.0 based on FHIR R4. See the Directory of published versions

MilitaryService

Formats: Narrative, XML, JSON, Turtle

Raw ttl

@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 "military-service"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/StructureDefinition/shareablecodesystem";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/StructureDefinition/shareablecodesystem>     ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h2>QiCore Military Service Code System</h2><div><p>Military service status codes</p>\n</div><p>This code system http://hl7.org/fhir/us/qicore/CodeSystem/military-service defines the following codes:</p><table class=\"codes\"><tr><td style=\"white-space:nowrap\"><b>Code</b></td><td><b>Display</b></td><td><b>Definition</b></td></tr><tr><td style=\"white-space:nowrap\">not-indicated<a name=\"military-service-not-indicated\"> </a></td><td>Not Indicated</td><td>The military status is not indicated</td></tr><tr><td style=\"white-space:nowrap\">no-military-service<a name=\"military-service-no-military-service\"> </a></td><td>No Military Service</td><td>The subject has no history of military service</td></tr><tr><td style=\"white-space:nowrap\">veteran<a name=\"military-service-veteran\"> </a></td><td>Veteran</td><td>The subject is has served in the military but is no longer active</td></tr><tr><td style=\"white-space:nowrap\">active-duty<a name=\"military-service-active-duty\"> </a></td><td>Active Duty</td><td>The subject is not a reserve member and is currently engaged in full-time military activity</td></tr><tr><td style=\"white-space:nowrap\">active-reserve<a name=\"military-service-active-reserve\"> </a></td><td>Active Reserve</td><td>The subject is a reserve member and is currently engaged in full-time military activity</td></tr><tr><td style=\"white-space:nowrap\">inactive-reserve<a name=\"military-service-inactive-reserve\"> </a></td><td>Inactive Reserve</td><td>The subject is a reserve member and is not currently engaged in full-time military activity</td></tr></table></div>"
  ];
  fhir:CodeSystem.url [ fhir:value "http://hl7.org/fhir/us/qicore/CodeSystem/military-service"];
  fhir:CodeSystem.version [ fhir:value "3.3.0"];
  fhir:CodeSystem.name [ fhir:value "MilitaryService"];
  fhir:CodeSystem.title [ fhir:value "QiCore Military Service Code System"];
  fhir:CodeSystem.status [ fhir:value "draft"];
  fhir:CodeSystem.experimental [ fhir:value "false"^^xsd:boolean];
  fhir:CodeSystem.date [ fhir:value "2018-08-22T00:00:00-04:00"^^xsd:dateTime];
  fhir:CodeSystem.publisher [ fhir:value "Health Level Seven, Inc. - CQI WG"];
  fhir:CodeSystem.contact [
     fhir:index 0;
     fhir:ContactDetail.telecom [
       fhir:index 0;
       fhir:ContactPoint.system [ fhir:value "url" ];
       fhir:ContactPoint.value [ fhir:value "http://hl7.org/special/committees/CQI" ]     ]
  ];
  fhir:CodeSystem.description [ fhir:value "Military service status codes"];
  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:Coding.display [ fhir:value "United States of America" ]     ]
  ];
  fhir:CodeSystem.caseSensitive [ fhir:value "true"^^xsd:boolean];
  fhir:CodeSystem.content [ fhir:value "complete"];
  fhir:CodeSystem.concept [
     fhir:index 0;
     fhir:CodeSystem.concept.code [ fhir:value "not-indicated" ];
     fhir:CodeSystem.concept.display [ fhir:value "Not Indicated" ];
     fhir:CodeSystem.concept.definition [ fhir:value "The military status is not indicated" ]
  ], [
     fhir:index 1;
     fhir:CodeSystem.concept.code [ fhir:value "no-military-service" ];
     fhir:CodeSystem.concept.display [ fhir:value "No Military Service" ];
     fhir:CodeSystem.concept.definition [ fhir:value "The subject has no history of military service" ]
  ], [
     fhir:index 2;
     fhir:CodeSystem.concept.code [ fhir:value "veteran" ];
     fhir:CodeSystem.concept.display [ fhir:value "Veteran" ];
     fhir:CodeSystem.concept.definition [ fhir:value "The subject is has served in the military but is no longer active" ]
  ], [
     fhir:index 3;
     fhir:CodeSystem.concept.code [ fhir:value "active-duty" ];
     fhir:CodeSystem.concept.display [ fhir:value "Active Duty" ];
     fhir:CodeSystem.concept.definition [ fhir:value "The subject is not a reserve member and is currently engaged in full-time military activity" ]
  ], [
     fhir:index 4;
     fhir:CodeSystem.concept.code [ fhir:value "active-reserve" ];
     fhir:CodeSystem.concept.display [ fhir:value "Active Reserve" ];
     fhir:CodeSystem.concept.definition [ fhir:value "The subject is a reserve member and is currently engaged in full-time military activity" ]
  ], [
     fhir:index 5;
     fhir:CodeSystem.concept.code [ fhir:value "inactive-reserve" ];
     fhir:CodeSystem.concept.display [ fhir:value "Inactive Reserve" ];
     fhir:CodeSystem.concept.definition [ fhir:value "The subject is a reserve member and is not currently engaged in full-time military activity" ]
  ].

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

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