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 - Gravidez - 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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:Observation ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "exemplo-observation-pregnancy"] ; #
fhir:meta [
( fhir:profile [
fhir:v "https://hl7.pt/fhir/community-health/StructureDefinition/observation-pregnancy"^^xsd:anyURI ;
fhir:link <https://hl7.pt/fhir/community-health/StructureDefinition/observation-pregnancy> ] )
] ; #
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-pregnancy</b></p><a name=\"exemplo-observation-pregnancy\"> </a><a name=\"hcexemplo-observation-pregnancy\"> </a><a name=\"exemplo-observation-pregnancy-en-US\"> </a><p><b>status</b>: Registered</p><p><b>code</b>: <span title=\"Codes:{http://snomed.info/sct 77386006}\">Pregnant</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>effective</b>: 2024-12-01</p><blockquote><p><b>component</b></p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 49051-6}\">Gestational age in weeks</span></p><p><b>value</b>: 20 weeks<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM codewk = 'wk')</span></p></blockquote><blockquote><p><b>component</b></p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 63962-5}\">Pregnancy number [PhenX]</span></p><p><b>value</b>: 2</p></blockquote><blockquote><p><b>component</b></p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 11636-8}\">Number of live births</span></p><p><b>value</b>: 1</p></blockquote></div>"
] ; #
fhir:status [ fhir:v "registered"] ; #
fhir:code [
( fhir:coding [
a sct:77386006 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "77386006" ] ;
fhir:display [ fhir:v "Pregnant" ] ] )
] ; #
fhir:subject [
fhir:reference [ fhir:v "Patient/exemplo-patient-1" ]
] ; #
fhir:effective [ fhir:v "2024-12-01"^^xsd:date] ; #
fhir:component ( [
fhir:code [
( fhir:coding [
a loinc:49051-6 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "49051-6" ] ;
fhir:display [ fhir:v "Gestational age in weeks" ] ] ) ] ;
fhir:value [
a fhir:Quantity ;
fhir:value [ fhir:v "20"^^xsd:decimal ] ;
fhir:unit [ fhir:v "weeks" ] ;
fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "wk" ] ]
] [
fhir:code [
( fhir:coding [
a loinc:63962-5 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "63962-5" ] ;
fhir:display [ fhir:v "Pregnancy number [PhenX]" ] ] ) ] ;
fhir:value [ fhir:v "2"^^xsd:integer ]
] [
fhir:code [
( fhir:coding [
a loinc:11636-8 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "11636-8" ] ;
fhir:display [ fhir:v "Number of live births" ] ] ) ] ;
fhir:value [ fhir:v "1"^^xsd:integer ]
] ) . #