HL7 PT FHIR Implementation Guide: Community Health, published by HL7 Portugal. This guide is not an authorized publication; it is the continuous build for version 1.0.1 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/AnaCeciliaCoimbra/community-health-ig/ and changes regularly. See the Directory of published versions
: Exemplo Observation - Dor - TTL Representation
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@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:Observation ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "exemplo-observation-dor"] ; #
fhir:meta [
( fhir:profile [
fhir:v "https://hl7.pt/fhir/community-health/StructureDefinition/observation-symptom"^^xsd:anyURI ;
fhir:link <https://hl7.pt/fhir/community-health/StructureDefinition/observation-symptom> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Observation exemplo-observation-dor</b></p><a name=\"exemplo-observation-dor\"> </a><a name=\"hcexemplo-observation-dor\"> </a><a name=\"exemplo-observation-dor-en-US\"> </a><p><b>status</b>: Final</p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 75325-1}\">Symptom</span></p><p><b>subject</b>: <a href=\"Patient-exemplo-patient-1.html\">John Doe Male, DoB: 2009-02-09 ( https://ehr.testing.p5.pt/api/fhir#12345678)</a></p><p><b>encounter</b>: <a href=\"Encounter-exemplo-encounter-ia-registo.html\">Encounter: status = finished; class = emergency (ActCode#EMER); type = Avaliador de Sintomas; serviceType = Algoritmo de Inteligência Artificial; period = 2024-11-18 19:20:00+0000 --> 2024-11-18 19:20:00+0000</a></p><p><b>value</b>: <span title=\"Codes:{https://ehr.p5.pt/terminology/CodeSystem/symptoms 32}\">Pain</span></p><p><b>note</b>: this symptom just started a few hours ago (By RelatedPerson/exemplo-relatedPerson-1)</p><blockquote><p><b>component</b></p><p><b>code</b>: <span title=\"Codes:{symptoms-properties isSpecific}\">isSpecific</span></p><p><b>value</b>: true</p></blockquote><blockquote><p><b>component</b></p><p><b>code</b>: <span title=\"Codes:{symptoms-properties isNonSpecific}\">isNonSpecific</span></p><p><b>value</b>: false</p></blockquote><blockquote><p><b>component</b></p><p><b>code</b>: <span title=\"Codes:{symptoms-properties isGeneral}\">isGeneral</span></p><p><b>value</b>: false</p></blockquote></div>"
] ; #
fhir:status [ fhir:v "final"] ; #
fhir:code [
( fhir:coding [
a loinc:75325-1 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "75325-1" ] ;
fhir:display [ fhir:v "Symptom" ] ] )
] ; #
fhir:subject [
fhir:reference [ fhir:v "Patient/exemplo-patient-1" ]
] ; #
fhir:encounter [
fhir:reference [ fhir:v "Encounter/exemplo-encounter-ia-registo" ]
] ; #
fhir:value [
a fhir:CodeableConcept ;
( fhir:coding [
fhir:system [ fhir:v "https://ehr.p5.pt/terminology/CodeSystem/symptoms"^^xsd:anyURI ] ;
fhir:code [ fhir:v "32" ] ;
fhir:display [ fhir:v "Pain" ] ] )
] ; #
fhir:note ( [
fhir:author [
a fhir:Reference ;
fhir:reference [ fhir:v "RelatedPerson/exemplo-relatedPerson-1" ] ] ;
fhir:text [ fhir:v "this symptom just started a few hours ago" ]
] ) ; #
fhir:component ( [
fhir:code [
( fhir:coding [
fhir:system [ fhir:v "symptoms-properties"^^xsd:anyURI ] ;
fhir:code [ fhir:v "isSpecific" ] ] ) ] ;
fhir:value [ fhir:v "true"^^xsd:boolean ]
] [
fhir:code [
( fhir:coding [
fhir:system [ fhir:v "symptoms-properties"^^xsd:anyURI ] ;
fhir:code [ fhir:v "isNonSpecific" ] ] ) ] ;
fhir:value [ fhir:v "false"^^xsd:boolean ]
] [
fhir:code [
( fhir:coding [
fhir:system [ fhir:v "symptoms-properties"^^xsd:anyURI ] ;
fhir:code [ fhir:v "isGeneral" ] ] ) ] ;
fhir:value [ fhir:v "false"^^xsd:boolean ]
] ) . #