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

: Patient Importance 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 "patient-importance"];
  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/patient-importance</code> 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\">bad-debt<a name=\"patient-importance-bad-debt\"> </a></td><td>Bad Debt</td><td>Patient is in collections or has uncollected or overdue payments on account</td></tr><tr><td style=\"white-space:nowrap\">do-not-contact<a name=\"patient-importance-do-not-contact\"> </a></td><td>Do Not Contact</td><td>Patient is flagged to prevent automated communications</td></tr><tr><td style=\"white-space:nowrap\">no-comm-health-reminder<a name=\"patient-importance-no-comm-health-reminder\"> </a></td><td>No Communication - Health Reminders</td><td>Patient is falgged to prevent the communication of health reminders</td></tr><tr><td style=\"white-space:nowrap\">no-comm-privacy<a name=\"patient-importance-no-comm-privacy\"> </a></td><td>No Communication - Specific Privacy Concerns</td><td>Patient is flagged with specific privary concerns (example HIV, Mental Health, patients)</td></tr></table></div>"
  ];
  fhir:CodeSystem.url [ fhir:value "http://linuxforhealth.org/fhir/cdm/CodeSystem/patient-importance"];
  fhir:CodeSystem.version [ fhir:value "8.0.0"];
  fhir:CodeSystem.name [ fhir:value "PatientImportanceCodeSystem"];
  fhir:CodeSystem.title [ fhir:value "Patient Importance 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 "Patient status code examples"];
  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 "4"^^xsd:nonNegativeInteger];
  fhir:CodeSystem.concept [
     fhir:index 0;
     fhir:CodeSystem.concept.code [ fhir:value "bad-debt" ];
     fhir:CodeSystem.concept.display [ fhir:value "Bad Debt" ];
     fhir:CodeSystem.concept.definition [ fhir:value "Patient is in collections or has uncollected or overdue payments on account" ]
  ], [
     fhir:index 1;
     fhir:CodeSystem.concept.code [ fhir:value "do-not-contact" ];
     fhir:CodeSystem.concept.display [ fhir:value "Do Not Contact" ];
     fhir:CodeSystem.concept.definition [ fhir:value "Patient is flagged to prevent automated communications" ]
  ], [
     fhir:index 2;
     fhir:CodeSystem.concept.code [ fhir:value "no-comm-health-reminder" ];
     fhir:CodeSystem.concept.display [ fhir:value "No Communication - Health Reminders" ];
     fhir:CodeSystem.concept.definition [ fhir:value "Patient is falgged to prevent the communication of health reminders" ]
  ], [
     fhir:index 3;
     fhir:CodeSystem.concept.code [ fhir:value "no-comm-privacy" ];
     fhir:CodeSystem.concept.display [ fhir:value "No Communication - Specific Privacy Concerns" ];
     fhir:CodeSystem.concept.definition [ fhir:value "Patient is flagged with specific privary concerns (example HIV, Mental Health, patients)" ]
  ].

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

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