Covid 19 At-Home Test Report
0.1.0 - CI Build

Covid 19 At-Home Test Report - Local Development build (v0.1.0). See the Directory of published versions

: Supporting Information Symptom Presence Example - TTL Representation

Raw ttl | Download


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

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

 a fhir:Observation;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "symp-presAbsent"];
  fhir:Resource.meta [
     fhir:Meta.versionId [ fhir:value "1" ];
     fhir:Meta.lastUpdated [ fhir:value "2021-03-25T02:11:59.823+00:00"^^xsd:dateTime ];
     fhir:Meta.source [ fhir:value "#tCVr3NMEiPmP94EA" ]
  ];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b> Generated Narrative with Details</b></p><p><b> id</b> : symp-presAbsent</p><p><b> status</b> : final</p><p><b> code</b> : Whether the patient has symptoms related to condition of interest <span> (Details : {LOINC code '95419-8' = 'Whether the patient has symptoms related to condition of interest' (Covid 19)</span></p><p><b> subject</b> : <a> Patricia Noelle</a></p><p><b> effective</b> : March 24, 2021</p><p><b> value</b> :Yes</p></div>"
  ];
  fhir:Observation.status [ fhir:value "final"];
  fhir:Observation.code [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a loinc:95419-8;
       fhir:Coding.system [ fhir:value "http://loinc.org" ];
       fhir:Coding.code [ fhir:value "95419-8" ];
       fhir:Coding.display [ fhir:value "Whether the patient has symptoms related to condition of interest" ]     ];
     fhir:CodeableConcept.text [ fhir:value "Whether the patient has symptoms related to Covid 19" ]
  ];
  fhir:Observation.subject [
     fhir:Reference.reference [ fhir:value "Patient/cc-pat-pnoelle" ]
  ];
  fhir:Observation.effectiveDateTime [ fhir:value "2021-03-24"^^xsd:date];
  fhir:Observation.valueCodeableConcept [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:373066001;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "373066001" ];
       fhir:Coding.display [ fhir:value "Yes (Qualifer Value)" ]     ]
  ].

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

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