@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/CarePlan/CardioRemotoCarePlanExample> a fhir:CarePlan ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "CardioRemotoCarePlanExample"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://example.org/fhir/CardioRemotoIG/StructureDefinition/cardioremoto-careplan" ;
       fhir:index 0 ;
       fhir:link <http://example.org/fhir/CardioRemotoIG/StructureDefinition/cardioremoto-careplan>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Plano de cuidados para monitoramento remoto cardiovascular.</div>"
  ] ;
  fhir:CarePlan.identifier [
     fhir:index 0 ;
     fhir:Identifier.use [ fhir:value "official" ] ;
     fhir:Identifier.system [ fhir:value "https://cardioremoto.ufpb.br/fhir/NamingSystem/careplan-id" ] ;
     fhir:Identifier.value [ fhir:value "CP-000001" ]
  ] ;
  fhir:CarePlan.status [ fhir:value "active"] ;
  fhir:CarePlan.intent [ fhir:value "plan"] ;
  fhir:CarePlan.category [
     fhir:index 0 ;
     fhir:CodeableConcept.text [ fhir:value "Monitoramento Cardiovascular Remoto" ]
  ] ;
  fhir:CarePlan.title [ fhir:value "Plano de Monitoramento Cardiovascular"] ;
  fhir:CarePlan.description [ fhir:value "Monitoramento diário da pressão arterial, frequência cardíaca e sintomas clínicos."] ;
  fhir:CarePlan.subject [
     fhir:link <http://example.org/fhir/CardioRemotoIG/Patient/CardioRemotoPatientExample> ;
     fhir:Reference.reference [ fhir:value "Patient/CardioRemotoPatientExample" ]
  ] ;
  fhir:CarePlan.encounter [
     fhir:link <http://example.org/fhir/CardioRemotoIG/Encounter/CardioRemotoEncounterExample> ;
     fhir:Reference.reference [ fhir:value "Encounter/CardioRemotoEncounterExample" ]
  ] ;
  fhir:CarePlan.period [
     fhir:Period.start [ fhir:value "2026-07-10"^^xsd:date ] ;
     fhir:Period.end [ fhir:value "2026-10-10"^^xsd:date ]
  ] ;
  fhir:CarePlan.author [
     fhir:link <http://example.org/fhir/CardioRemotoIG/Practitioner/CardioRemotoPractitionerExample> ;
     fhir:Reference.reference [ fhir:value "Practitioner/CardioRemotoPractitionerExample" ]
  ] ;
  fhir:CarePlan.contributor [
     fhir:index 0 ;
     fhir:link <http://example.org/fhir/CardioRemotoIG/Organization/CardioRemotoOrganizationExample> ;
     fhir:Reference.reference [ fhir:value "Organization/CardioRemotoOrganizationExample" ]
  ] ;
  fhir:CarePlan.careTeam [
     fhir:index 0 ;
     fhir:link <http://example.org/fhir/CardioRemotoIG/CareTeam/CardioRemotoCareTeamExample> ;
     fhir:Reference.reference [ fhir:value "CareTeam/CardioRemotoCareTeamExample" ]
  ] ;
  fhir:CarePlan.addresses [
     fhir:index 0 ;
     fhir:link <http://example.org/fhir/CardioRemotoIG/Condition/CardioRemotoConditionExample> ;
     fhir:Reference.reference [ fhir:value "Condition/CardioRemotoConditionExample" ]
  ] ;
  fhir:CarePlan.supportingInfo [
     fhir:index 0 ;
     fhir:link <http://example.org/fhir/CardioRemotoIG/Condition/CardioRemotoConditionExample> ;
     fhir:Reference.reference [ fhir:value "Condition/CardioRemotoConditionExample" ]
  ], [
     fhir:index 1 ;
     fhir:link <http://example.org/fhir/CardioRemotoIG/MedicationRequest/CardioRemotoMedicationRequestExample> ;
     fhir:Reference.reference [ fhir:value "MedicationRequest/CardioRemotoMedicationRequestExample" ]
  ] ;
  fhir:CarePlan.goal [
     fhir:index 0 ;
     fhir:link <http://example.org/fhir/CardioRemotoIG/Goal/CardioRemotoGoalExample> ;
     fhir:Reference.reference [ fhir:value "Goal/CardioRemotoGoalExample" ]
  ] .

# - ontology header ------------------------------------------------------------

<http://example.org/fhir/CardioRemotoIG/CarePlan/CardioRemotoCarePlanExample.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

