@prefix fhir: .
@prefix owl: .
@prefix rdfs: .
@prefix xsd: .
# - resource -------------------------------------------------------------------
a fhir:Practitioner ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "practitioner1"] ; #
fhir:meta [
fhir:profile ( [
fhir:v "http://esveikata.lt/fhir/StructureDefinition/lt-practitioner"^^xsd:anyURI ;
fhir:link
] )
] ; #
fhir:identifier ( [
fhir:system [ fhir:v "http://esveikata.lt/Identifier/PersonalCode"^^xsd:anyURI ] ;
fhir:value [ fhir:v "79121137740" ]
] ) ; #
fhir:name ( [
fhir:family [ fhir:v "Pavardevičius" ] ;
fhir:given ( [ fhir:v "Jonas" ] )
] ) . #
# -------------------------------------------------------------------------------------