0.1.0 - ci-build International flag

JohnMoehrkeTestCore, published by John Moehrke (himself). This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/JohnMoehrke/testCore/ and changes regularly. See the Directory of published versions

: Example 1 of a condition - TTL Representation

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 -------------------------------------------------------------------

<http://hl7.org/fhir/Condition/ex-condition-1> a fhir:Condition ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "ex-condition-1"] ;
  fhir:Resource.meta [
     fhir:Meta.lastUpdated [ fhir:value "1995-09-27T00:00:00Z"^^xsd:dateTime ] ;
     fhir:Meta.profile [
       fhir:value "http://johnmoehrke.github.io/testcore/StructureDefinition/JFM.condition" ;
       fhir:index 0 ;
       fhir:link <http://johnmoehrke.github.io/testcore/StructureDefinition/JFM.condition>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Condition ex-condition-1</b></p><a name=\"ex-condition-1\"> </a><a name=\"hcex-condition-1\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Last updated: 1995-09-27 00:00:00+0000</p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-JFM.condition.html\">JFM problems</a></p></div><p><b>identifier</b>: <code>https://example.org/ProblemTO.id</code>/487 (use: usual, )</p><p><b>clinicalStatus</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/condition-clinical active}\">Active</span></p><p><b>verificationStatus</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/condition-ver-status unconfirmed}\">Unconfirmed</span></p><p><b>category</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/condition-category problem-list-item}\">Problem List Item</span></p><p><b>code</b>: <span title=\"Codes:{http://hl7.org/fhir/sid/icd-9-cm 401.9}\">Hypertension (ICD-9-CM 401.9)</span></p><p><b>subject</b>: <a href=\"Patient-ex-patient.html\">John Schmidt  Other, DoB: 1923-07-25</a></p><p><b>recordedDate</b>: 1995-09-27</p></div>"
  ] ;
  fhir:Condition.identifier [
     fhir:index 0 ;
     fhir:Identifier.use [ fhir:value "usual" ] ;
     fhir:Identifier.system [ fhir:value "https://example.org/ProblemTO.id" ] ;
     fhir:Identifier.value [ fhir:value "487" ]
  ] ;
  fhir:Condition.clinicalStatus [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/condition-clinical" ] ;
       fhir:Coding.code [ fhir:value "active" ]
     ]
  ] ;
  fhir:Condition.verificationStatus [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/condition-ver-status" ] ;
       fhir:Coding.code [ fhir:value "unconfirmed" ]
     ]
  ] ;
  fhir:Condition.category [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/condition-category" ] ;
       fhir:Coding.code [ fhir:value "problem-list-item" ]
     ]
  ] ;
  fhir:Condition.code [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://hl7.org/fhir/sid/icd-9-cm" ] ;
       fhir:Coding.code [ fhir:value "401.9" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "Hypertension (ICD-9-CM 401.9)" ]
  ] ;
  fhir:Condition.subject [
     fhir:link <http://hl7.org/fhir/Patient/ex-patient> ;
     fhir:Reference.reference [ fhir:value "Patient/ex-patient" ]
  ] ;
  fhir:Condition.recordedDate [ fhir:value "1995-09-27"^^xsd:date] .

<http://hl7.org/fhir/Patient/ex-patient> a fhir:Patient .

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

<http://hl7.org/fhir/Condition/ex-condition-1.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Condition/ex-condition-1.ttl> .