🌐 EMA Health Core Implementation Guide
0.10.0 - ci-build

🌐 EMA Health Core Implementation Guide - Local Development build (v0.10.0) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions

: Ejemplo Encuentro — control ambulatorio - 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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/Encounter/EjemploEmaCoreEncounter> a fhir:Encounter ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "EjemploEmaCoreEncounter"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://emahealth.io/fhir/core/StructureDefinition/ema-core-encounter" ;
       fhir:index 0 ;
       fhir:link <https://emahealth.io/fhir/core/StructureDefinition/ema-core-encounter>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Encounter EjemploEmaCoreEncounter</b></p><a name=\"EjemploEmaCoreEncounter\"> </a><a name=\"hcEjemploEmaCoreEncounter\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-ema-core-encounter.html\">EMA Core Encounter</a></p></div><p><b>status</b>: Finished</p><p><b>class</b>: <a href=\"http://terminology.hl7.org/6.4.0/CodeSystem-v3-ActCode.html#v3-ActCode-AMB\">ActCode: AMB</a> (ambulatory)</p><p><b>type</b>: <span title=\"Codes:{http://snomed.info/sct 185349003}\">Encounter for check up</span></p><p><b>subject</b>: <a href=\"Patient-EjemploEmaCorePatient.html\">Carmen Díaz (official) Female, DoB: 1969-04-22 ( Medical record number (use: usual, ))</a></p><h3>Participants</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Individual</b></td></tr><tr><td style=\"display: none\">*</td><td><a href=\"Practitioner-EjemploEmaCorePractitioner.html\">Practitioner Andrés Rojas (official)</a></td></tr></table><p><b>period</b>: 2026-08-18 09:00:00-0400 --&gt; 2026-08-18 09:30:00-0400</p><h3>Locations</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Location</b></td></tr><tr><td style=\"display: none\">*</td><td><a href=\"Location-EjemploEmaCoreLocation.html\">Location Box 3 — Consulta ambulatoria</a></td></tr></table><p><b>serviceProvider</b>: <a href=\"Organization-EjemploEmaCoreOrganization.html\">Organization Centro Médico EMA</a></p></div>"
  ] ;
  fhir:Encounter.status [ fhir:value "finished"] ;
  fhir:Encounter.class [
     fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ] ;
     fhir:Coding.code [ fhir:value "AMB" ]
  ] ;
  fhir:Encounter.type [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a sct:185349003 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.code [ fhir:value "185349003" ] ;
       fhir:Coding.display [ fhir:value "Encounter for check up" ]
     ]
  ] ;
  fhir:Encounter.subject [
     fhir:link <http://hl7.org/fhir/Patient/EjemploEmaCorePatient> ;
     fhir:Reference.reference [ fhir:value "Patient/EjemploEmaCorePatient" ]
  ] ;
  fhir:Encounter.participant [
     fhir:index 0 ;
     fhir:Encounter.participant.individual [
       fhir:link <http://hl7.org/fhir/Practitioner/EjemploEmaCorePractitioner> ;
       fhir:Reference.reference [ fhir:value "Practitioner/EjemploEmaCorePractitioner" ]
     ]
  ] ;
  fhir:Encounter.period [
     fhir:Period.start [ fhir:value "2026-08-18T09:00:00-04:00"^^xsd:dateTime ] ;
     fhir:Period.end [ fhir:value "2026-08-18T09:30:00-04:00"^^xsd:dateTime ]
  ] ;
  fhir:Encounter.location [
     fhir:index 0 ;
     fhir:Encounter.location.location [
       fhir:link <http://hl7.org/fhir/Location/EjemploEmaCoreLocation> ;
       fhir:Reference.reference [ fhir:value "Location/EjemploEmaCoreLocation" ]
     ]
  ] ;
  fhir:Encounter.serviceProvider [
     fhir:link <http://hl7.org/fhir/Organization/EjemploEmaCoreOrganization> ;
     fhir:Reference.reference [ fhir:value "Organization/EjemploEmaCoreOrganization" ]
  ] .

<http://hl7.org/fhir/Patient/EjemploEmaCorePatient> a fhir:Patient .

<http://hl7.org/fhir/Practitioner/EjemploEmaCorePractitioner> a fhir:Practitioner .

<http://hl7.org/fhir/Location/EjemploEmaCoreLocation> a fhir:Location .

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

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

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