🇨🇱 EMA Health Chile Implementation Guide
0.1.0 - ci-build

🇨🇱 EMA Health Chile Implementation Guide - Local Development build (v0.1.0) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions

: Ejemplo Boleta Consulta Médica - 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/Invoice/EjemploEmaInvoice> a fhir:Invoice ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "EjemploEmaInvoice"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://emahealth.io/fhir/cl/StructureDefinition/ema-invoice" ;
       fhir:index 0 ;
       fhir:link <https://emahealth.io/fhir/cl/StructureDefinition/ema-invoice>
     ]
  ] ;
  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: Invoice EjemploEmaInvoice</b></p><a name=\"EjemploEmaInvoice\"> </a><a name=\"hcEjemploEmaInvoice\"> </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-invoice.html\">EMA Invoice</a></p></div><p><b>status</b>: issued</p><p><b>subject</b>: <a href=\"Patient-EjemploEmaPatient.html\">María Fernández</a></p><p><b>date</b>: 2026-03-14</p><h3>Participants</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Role</b></td><td><b>Actor</b></td></tr><tr><td style=\"display: none\">*</td><td><span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v3-ParticipationType PPRF}\">primary performer</span></td><td><a href=\"Practitioner-EjemploEmaPractitioner.html\">Dr. Carlos Muñoz</a></td></tr></table><blockquote><p><b>lineItem</b></p><p><b>chargeItem</b>: <a href=\"ChargeItem-EjemploEmaChargeItem.html\">Consulta medicina general</a></p><blockquote><p><b>priceComponent</b></p><p><b>type</b>: base price</p><h3>Amounts</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Value</b></td><td><b>Currency</b></td></tr><tr><td style=\"display: none\">*</td><td>25000</td><td>Chilean peso</td></tr></table></blockquote></blockquote><h3>TotalGrosses</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Value</b></td><td><b>Currency</b></td></tr><tr><td style=\"display: none\">*</td><td>25000</td><td>Chilean peso</td></tr></table></div>"
  ] ;
  fhir:Invoice.status [ fhir:value "issued"] ;
  fhir:Invoice.subject [
     fhir:link <http://hl7.org/fhir/Patient/EjemploEmaPatient> ;
     fhir:Reference.reference [ fhir:value "Patient/EjemploEmaPatient" ] ;
     fhir:Reference.display [ fhir:value "María Fernández" ]
  ] ;
  fhir:Invoice.date [ fhir:value "2026-03-14"^^xsd:date] ;
  fhir:Invoice.participant [
     fhir:index 0 ;
     fhir:Invoice.participant.role [
       fhir:CodeableConcept.coding [
         fhir:index 0 ;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ParticipationType" ] ;
         fhir:Coding.code [ fhir:value "PPRF" ]
       ]
     ] ;
     fhir:Invoice.participant.actor [
       fhir:link <http://hl7.org/fhir/Practitioner/EjemploEmaPractitioner> ;
       fhir:Reference.reference [ fhir:value "Practitioner/EjemploEmaPractitioner" ] ;
       fhir:Reference.display [ fhir:value "Dr. Carlos Muñoz" ]
     ]
  ] ;
  fhir:Invoice.lineItem [
     fhir:index 0 ;
     fhir:Invoice.lineItem.chargeItemReference [
       fhir:link <http://hl7.org/fhir/ChargeItem/EjemploEmaChargeItem> ;
       fhir:Reference.reference [ fhir:value "ChargeItem/EjemploEmaChargeItem" ] ;
       fhir:Reference.display [ fhir:value "Consulta medicina general" ]
     ] ;
     fhir:Invoice.lineItem.priceComponent [
       fhir:index 0 ;
       fhir:Invoice.lineItem.priceComponent.type [ fhir:value "base" ] ;
       fhir:Invoice.lineItem.priceComponent.amount [
         fhir:Money.value [ fhir:value "25000"^^xsd:decimal ] ;
         fhir:Money.currency [ fhir:value "CLP" ]
       ]
     ]
  ] ;
  fhir:Invoice.totalGross [
     fhir:Money.value [ fhir:value "25000"^^xsd:decimal ] ;
     fhir:Money.currency [ fhir:value "CLP" ]
  ] .

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

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

<http://hl7.org/fhir/ChargeItem/EjemploEmaChargeItem> a fhir:ChargeItem .

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

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