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" : "MedicationRequest",
"id" : "CardioRemotoMedicationRequestExample",
"meta" : {
"profile" : [
🔗 "http://example.org/fhir/CardioRemotoIG/StructureDefinition/cardioremoto-medicationrequest"
]
},
"text" : {
"status" : "generated",
"div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">Prescrição de losartana para tratamento da hipertensão arterial no contexto do monitoramento remoto.</div>"
},
"identifier" : [
{
"use" : "official",
"system" : "https://cardioremoto.ufpb.br/fhir/NamingSystem/medicationrequest-id",
"value" : "MR-000001"
}
],
"status" : "active",
"intent" : "order",
"category" : [
{
"text" : "Tratamento Cardiovascular"
}
],
"priority" : "routine",
"medicationCodeableConcept" : {
"coding" : [
{
"system" : "http://www.whocc.no/atc",
"code" : "C09CA01",
"display" : "losartan"
}
],
"text" : "Losartana 50 mg comprimido"
},
"subject" : {
🔗 "reference" : "Patient/CardioRemotoPatientExample"
},
"encounter" : {
🔗 "reference" : "Encounter/CardioRemotoEncounterExample"
},
"authoredOn" : "2026-07-10",
"requester" : {
🔗 "reference" : "Practitioner/CardioRemotoPractitionerExample"
},
"recorder" : {
🔗 "reference" : "Practitioner/CardioRemotoPractitionerExample"
},
"reasonCode" : [
{
"text" : "Hipertensão arterial sistêmica"
}
],
"reasonReference" : [
{
🔗 "reference" : "Condition/CardioRemotoConditionExample"
}
],
"note" : [
{
"text" : "Paciente orientado a manter uso contínuo e monitorar pressão arterial diariamente."
}
],
"dosageInstruction" : [
{
"text" : "Administrar 1 comprimido por via oral uma vez ao dia.",
"timing" : {
"repeat" : {
"frequency" : 1,
"period" : 1,
"periodUnit" : "d"
}
},
"route" : {
"text" : "Via oral"
},
"doseAndRate" : [
{
"doseQuantity" : {
"value" : 1,
"unit" : "comprimido",
"system" : "http://unitsofmeasure.org",
"code" : "{tbl}"
}
}
]
}
],
"dispenseRequest" : {
"quantity" : {
"value" : 30,
"unit" : "comprimido",
"system" : "http://unitsofmeasure.org",
"code" : "{tbl}"
},
"expectedSupplyDuration" : {
"value" : 30,
"unit" : "dias",
"system" : "http://unitsofmeasure.org",
"code" : "d"
}
}
}