Guia de Implementação do CardioRemoto
0.1.0 - release International flag

Guia de Implementação do CardioRemoto, published by Universidade Federal da Paraíba (UFPB). 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/clauirton/CardioRemotoIG/ and changes regularly. See the Directory of published versions

: Observação de Monitoramento Remoto - 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 xsd: <http://www.w3.org/2001/XMLSchema#> .

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

<http://hl7.org/fhir/Observation/CardioRemotoObservationExample> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "CardioRemotoObservationExample"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://example.org/fhir/CardioRemotoIG/StructureDefinition/cardioremoto-observation" ;
       fhir:index 0 ;
       fhir:link <http://example.org/fhir/CardioRemotoIG/StructureDefinition/cardioremoto-observation>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Observação de monitoramento remoto registrada na plataforma CardioRemoto.</div>"
  ] ;
  fhir:Observation.identifier [
     fhir:index 0 ;
     fhir:Identifier.use [ fhir:value "official" ] ;
     fhir:Identifier.system [ fhir:value "http://example.org/fhir/CardioRemotoIG/identifier/observation" ] ;
     fhir:Identifier.value [ fhir:value "OBS-000001" ]
  ] ;
  fhir:Observation.status [ fhir:value "final"] ;
  fhir:Observation.category [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/observation-category" ] ;
       fhir:Coding.code [ fhir:value "survey" ]
     ]
  ] ;
  fhir:Observation.code [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a loinc:75325-1 ;
       fhir:Coding.system [ fhir:value "http://loinc.org" ] ;
       fhir:Coding.code [ fhir:value "75325-1" ] ;
       fhir:Coding.display [ fhir:value "Symptom" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "Observação de monitoramento remoto" ]
  ] ;
  fhir:Observation.subject [
     fhir:link <http://hl7.org/fhir/Patient/CardioRemotoPatientExample> ;
     fhir:Reference.reference [ fhir:value "Patient/CardioRemotoPatientExample" ]
  ] ;
  fhir:Observation.encounter [
     fhir:link <http://hl7.org/fhir/Encounter/CardioRemotoEncounterExample> ;
     fhir:Reference.reference [ fhir:value "Encounter/CardioRemotoEncounterExample" ]
  ] ;
  fhir:Observation.effectiveDateTime [ fhir:value "2026-07-12T08:30:00Z"^^xsd:dateTime] ;
  fhir:Observation.issued [ fhir:value "2026-07-12T08:35:00Z"^^xsd:dateTime] ;
  fhir:Observation.performer [
     fhir:index 0 ;
     fhir:link <http://hl7.org/fhir/Practitioner/CardioRemotoPractitionerExample> ;
     fhir:Reference.reference [ fhir:value "Practitioner/CardioRemotoPractitionerExample" ]
  ] ;
  fhir:Observation.valueString [ fhir:value "Paciente acompanhado em monitoramento remoto."] ;
  fhir:Observation.interpretation [
     fhir:index 0 ;
     fhir:CodeableConcept.text [ fhir:value "Observação registrada durante acompanhamento." ]
  ] ;
  fhir:Observation.note [
     fhir:index 0 ;
     fhir:Annotation.text [ fhir:value "Registro utilizado para acompanhamento longitudinal do paciente." ]
  ] .

<http://hl7.org/fhir/Patient/CardioRemotoPatientExample> a fhir:Patient .

<http://hl7.org/fhir/Encounter/CardioRemotoEncounterExample> a fhir:Encounter .

<http://hl7.org/fhir/Practitioner/CardioRemotoPractitionerExample> a fhir:Practitioner .

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

<http://hl7.org/fhir/Observation/CardioRemotoObservationExample.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Observation/CardioRemotoObservationExample.ttl> .