@prefix fhir: <http://hl7.org/fhir/> .
@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://example.org/fhir/CardioRemotoIG/Communication/CardioRemotoCommunicationExample> a fhir:Communication ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "CardioRemotoCommunicationExample"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://example.org/fhir/CardioRemotoIG/StructureDefinition/cardio-remoto-communication" ;
       fhir:index 0 ;
       fhir:link <http://example.org/fhir/CardioRemotoIG/StructureDefinition/cardio-remoto-communication>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Comunicação enviada ao paciente com orientações sobre a continuidade do tratamento e do monitoramento remoto.</div>"
  ] ;
  fhir:Communication.status [ fhir:value "completed"] ;
  fhir:Communication.category [
     fhir:index 0 ;
     fhir:CodeableConcept.text [ fhir:value "Monitoramento remoto" ]
  ] ;
  fhir:Communication.subject [
     fhir:link <http://example.org/fhir/CardioRemotoIG/Patient/CardioRemotoPatientExample> ;
     fhir:Reference.reference [ fhir:value "Patient/CardioRemotoPatientExample" ]
  ] ;
  fhir:Communication.sent [ fhir:value "2026-07-12T09:35:00Z"^^xsd:dateTime] ;
  fhir:Communication.received [ fhir:value "2026-07-12T09:36:15Z"^^xsd:dateTime] ;
  fhir:Communication.recipient [
     fhir:index 0 ;
     fhir:link <http://example.org/fhir/CardioRemotoIG/Patient/CardioRemotoPatientExample> ;
     fhir:Reference.reference [ fhir:value "Patient/CardioRemotoPatientExample" ]
  ] ;
  fhir:Communication.sender [
     fhir:link <http://example.org/fhir/CardioRemotoIG/Practitioner/CardioRemotoPractitionerExample> ;
     fhir:Reference.reference [ fhir:value "Practitioner/CardioRemotoPractitionerExample" ]
  ] ;
  fhir:Communication.payload [
     fhir:index 0 ;
     fhir:Communication.payload.contentString [ fhir:value "Seus sinais vitais e exames laboratoriais permanecem dentro da faixa esperada. Continue utilizando a medicação conforme prescrição, mantenha o monitoramento diário da pressão arterial e compareça ao retorno agendado." ]
  ] ;
  fhir:Communication.note [
     fhir:index 0 ;
     fhir:Annotation.text [ fhir:value "Mensagem enviada automaticamente após validação do profissional responsável." ]
  ] .

# - ontology header ------------------------------------------------------------

<http://example.org/fhir/CardioRemotoIG/Communication/CardioRemotoCommunicationExample.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

