@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://fhir.msal.gob.ar/RDI/Practitioner/EjemploDatosPrescriptor> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "EjemploDatosPrescriptor"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://fhir.msal.gob.ar/RDI/StructureDefinition/datosPrescriptorAR"^^xsd:anyURI ;
       fhir:link <http://fhir.msal.gob.ar/RDI/StructureDefinition/datosPrescriptorAR>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "additional" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Prueba Medico</div>"
  ] ; # 
  fhir:identifier ( [
     fhir:use [ fhir:v "official" ] ;
     fhir:system [ fhir:v "http://www.renaper.gob.ar/dni"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "99999999" ]
  ] [
     fhir:use [ fhir:v "usual" ] ;
     fhir:system [ fhir:v "https://sisa.msal.gov.ar/REFEPS"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "103029302" ]
  ] ) ; # 
  fhir:name ( [
     fhir:text [ fhir:v "Prueba Medico" ]
  ] ) ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "1199994444" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

