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

: Equipe CardioRemoto - TTL Representation

Raw ttl | Download


@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://hl7.org/fhir/CareTeam/CardioRemotoCareTeamExample> a fhir:CareTeam ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "CardioRemotoCareTeamExample"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://example.org/fhir/CardioRemotoIG/StructureDefinition/cardioremoto-careteam" ;
       fhir:index 0 ;
       fhir:link <http://example.org/fhir/CardioRemotoIG/StructureDefinition/cardioremoto-careteam>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Equipe multidisciplinar responsável pelo acompanhamento do paciente na plataforma CardioRemoto.</div>"
  ] ;
  fhir:CareTeam.identifier [
     fhir:index 0 ;
     fhir:Identifier.use [ fhir:value "official" ] ;
     fhir:Identifier.system [ fhir:value "https://cardioremoto.ufpb.br/fhir/NamingSystem/careteam-id" ] ;
     fhir:Identifier.value [ fhir:value "CT-000001" ]
  ] ;
  fhir:CareTeam.status [ fhir:value "active"] ;
  fhir:CareTeam.name [ fhir:value "Equipe de Monitoramento CardioRemoto"] ;
  fhir:CareTeam.subject [
     fhir:link <http://hl7.org/fhir/Patient/CardioRemotoPatientExample> ;
     fhir:Reference.reference [ fhir:value "Patient/CardioRemotoPatientExample" ]
  ] ;
  fhir:CareTeam.encounter [
     fhir:link <http://hl7.org/fhir/Encounter/CardioRemotoEncounterExample> ;
     fhir:Reference.reference [ fhir:value "Encounter/CardioRemotoEncounterExample" ]
  ] ;
  fhir:CareTeam.period [
     fhir:Period.start [ fhir:value "2026-07-10"^^xsd:date ] ;
     fhir:Period.end [ fhir:value "2026-10-10"^^xsd:date ]
  ] ;
  fhir:CareTeam.participant [
     fhir:index 0 ;
     fhir:CareTeam.participant.role [
       fhir:index 0 ;
       fhir:CodeableConcept.text [ fhir:value "Cardiologista" ]
     ] ;
     fhir:CareTeam.participant.member [
       fhir:link <http://hl7.org/fhir/Practitioner/CardioRemotoPractitionerExample> ;
       fhir:Reference.reference [ fhir:value "Practitioner/CardioRemotoPractitionerExample" ]
     ]
  ] ;
  fhir:CareTeam.reasonReference [
     fhir:index 0 ;
     fhir:link <http://hl7.org/fhir/Condition/CardioRemotoConditionExample> ;
     fhir:Reference.reference [ fhir:value "Condition/CardioRemotoConditionExample" ]
  ] ;
  fhir:CareTeam.managingOrganization [
     fhir:index 0 ;
     fhir:link <http://hl7.org/fhir/Organization/CardioRemotoOrganizationExample> ;
     fhir:Reference.reference [ fhir:value "Organization/CardioRemotoOrganizationExample" ]
  ] ;
  fhir:CareTeam.note [
     fhir:index 0 ;
     fhir:Annotation.text [ fhir:value "Equipe responsável pelo monitoramento remoto 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 .

<http://hl7.org/fhir/Condition/CardioRemotoConditionExample> a fhir:Condition .

<http://hl7.org/fhir/Organization/CardioRemotoOrganizationExample> a fhir:Organization .

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

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