Guia de Implementação do CardioRemoto
0.1.0 - release
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
{
"resourceType" : "Observation",
"id" : "CardioRemotoVitalSignsObservationExample",
"meta" : {
"profile" : [
🔗 "http://example.org/fhir/CardioRemotoIG/StructureDefinition/cardioremoto-vital-signs"
]
},
"text" : {
"status" : "generated",
"div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">Pressão arterial sistólica registrada durante o monitoramento remoto.</div>"
},
"identifier" : [
{
"use" : "official",
"system" : "https://cardioremoto.ufpb.br/fhir/NamingSystem/observation-id",
"value" : "VS-000001"
}
],
"status" : "final",
"category" : [
{
"coding" : [
{
"system" : "http://terminology.hl7.org/CodeSystem/observation-category",
"code" : "vital-signs"
}
]
}
],
"code" : {
"coding" : [
{
"system" : "http://loinc.org",
"code" : "85354-9",
"display" : "Blood pressure panel with all children optional"
}
],
"text" : "Pressão arterial"
},
"subject" : {
🔗 "reference" : "Patient/CardioRemotoPatientExample"
},
"encounter" : {
🔗 "reference" : "Encounter/CardioRemotoEncounterExample"
},
"effectiveDateTime" : "2026-07-12T08:30:00Z",
"issued" : "2026-07-12T08:31:00Z",
"performer" : [
{
🔗 "reference" : "Practitioner/CardioRemotoPractitionerExample"
}
],
"interpretation" : [
{
"text" : "Dentro da meta terapêutica."
}
],
"note" : [
{
"text" : "Valor registrado automaticamente pelo dispositivo domiciliar."
}
],
"component" : [
{
"code" : {
"coding" : [
{
"system" : "http://loinc.org",
"code" : "8480-6",
"display" : "Systolic blood pressure"
}
]
},
"valueQuantity" : {
"value" : 128,
"unit" : "mm[Hg]",
"system" : "http://unitsofmeasure.org",
"code" : "mm[Hg]"
}
},
{
"code" : {
"coding" : [
{
"system" : "http://loinc.org",
"code" : "8462-4",
"display" : "Diastolic blood pressure"
}
]
},
"valueQuantity" : {
"value" : 82,
"unit" : "mm[Hg]",
"system" : "http://unitsofmeasure.org",
"code" : "mm[Hg]"
}
}
]
}