@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 -------------------------------------------------------------------

<https://jefersonrl.github.io/AgroSUS-FHIR/Practitioner/agrosus-acs-exemplo> a fhir:Practitioner ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "agrosus-acs-exemplo"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://jefersonrl.github.io/AgroSUS-FHIR/StructureDefinition/agrosus-acs" ;
       fhir:index 0 ;
       fhir:link <https://jefersonrl.github.io/AgroSUS-FHIR/StructureDefinition/agrosus-acs>
     ]
  ] ;
  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>Narrativa gerada: Practitioner agrosus-acs-exemplo</b></p><a name=\"agrosus-acs-exemplo\"> </a><a name=\"hcagrosus-acs-exemplo\"> </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\">Perfil: <a href=\"StructureDefinition-agrosus-acs.html\">Agente Comunitário de Saúde AgroSUS</a></p></div><p><b>identifier</b>: Cartão Nacional de Saúde/123456789101112 (utilização: official, )</p><p><b>active</b>: true</p><p><b>name</b>: Maria Clara Oliveira (Official)</p></div>"
  ] ;
  fhir:Practitioner.identifier [
     fhir:index 0 ;
     fhir:Identifier.use [ fhir:value "official" ] ;
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index 0 ;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ] ;
         fhir:Coding.code [ fhir:value "HC" ]
       ] ;
       fhir:CodeableConcept.text [ fhir:value "Cartão Nacional de Saúde" ]
     ] ;
     fhir:Identifier.system [ fhir:value "https://saude.gov.br/fhir/sid/cns" ] ;
     fhir:Identifier.value [ fhir:value "123456789101112" ]
  ] ;
  fhir:Practitioner.active [ fhir:value "true"^^xsd:boolean] ;
  fhir:Practitioner.name [
     fhir:index 0 ;
     fhir:HumanName.use [ fhir:value "official" ] ;
     fhir:HumanName.family [ fhir:value "Oliveira" ] ;
     fhir:HumanName.given [
       fhir:value "Maria" ;
       fhir:index 0
     ], [
       fhir:value "Clara" ;
       fhir:index 1
     ]
  ] .

# - ontology header ------------------------------------------------------------

<https://jefersonrl.github.io/AgroSUS-FHIR/Practitioner/agrosus-acs-exemplo.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

