HL7 Europe Extensions
1.4.0-ci - ci-build 150

HL7 Europe Extensions, published by HL7 Europe. This guide is not an authorized publication; it is the continuous build for version 1.4.0-ci built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/hl7-eu/extensions/ and changes regularly. See the Directory of published versions

: Condition: example with extensions - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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 -------------------------------------------------------------------

<http://hl7.org/fhir/Condition/condition-example> a fhir:Condition ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "condition-example"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Condition condition-example</b></p><a name=\"condition-example\"> </a><a name=\"hccondition-example\"> </a><p><b>clinicalStatus</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/condition-clinical active}\">Active</span></p><p><b>code</b>: <span title=\"Codes:{http://snomed.info/sct 431855005}\">Chronic kidney disease stage 1</span></p><p><b>subject</b>: Nice Patient</p><p><b>onset</b>: 40 a<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM  codea = 'a')</span></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:clinicalStatus [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/condition-clinical"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "active" ] ;
       fhir:display [ fhir:v "Active" ]
     ] )
  ] ; # 
  fhir:code [
     fhir:coding ( [
       a sct:431855005 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "431855005" ] ;
       fhir:display [ fhir:v "Chronic kidney disease stage 1" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:display [ fhir:v "Nice Patient" ]
  ] ; # 
  fhir:onset [
     a fhir:Age ;
     fhir:extension ( [
       fhir:url [ fhir:v "http://hl7.eu/fhir/extensions/StructureDefinition/periods-of-life"^^xsd:anyURI ] ;
       fhir:value [
         a fhir:CodeableConcept ;
         fhir:coding ( [
           a sct:41847000 ;
           fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "41847000" ] ;
           fhir:display [ fhir:v "Adulthood" ]
         ] )
       ]
     ] ) ;
     fhir:value [ fhir:v "40"^^xsd:decimal ] ;
     fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
     fhir:code [ fhir:v "a" ]
  ] . #