@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Patient ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "patient1"] ; # fhir:meta [ fhir:profile ( [ fhir:v "http://esveikata.lt/fhir/StructureDefinition/lt-patient"^^xsd:anyURI ; fhir:link ] ) ] ; # fhir:extension ( [ fhir:url [ fhir:v "http://esveikata.lt/fhir/StructureDefinition/patient-administrativeGender"^^xsd:anyURI ] ; fhir:value [ a fhir:CodeableConcept ; fhir:coding ( [ fhir:system [ fhir:v "http://esveikata.lt/classifiers/AdministrativeGender"^^xsd:anyURI ] ; fhir:code [ fhir:v "2" ] ; fhir:display [ fhir:v "Moteris" ] ] ) ] ] ) ; # fhir:identifier ( [ fhir:system [ fhir:v "http://esveikata.lt/Identifier/PersonalCode"^^xsd:anyURI ] ; fhir:value [ fhir:v "234234523455" ] ] [ fhir:system [ fhir:v "http://esveikata.lt/Identifier/Patient/ESI"^^xsd:anyURI ] ; fhir:value [ fhir:v "44432434343" ] ] [ fhir:system [ fhir:v "http://esveikata.lt/Identifier/Patient/ESPBI"^^xsd:anyURI ] ; fhir:value [ fhir:v "104345325" ] ] ) ; # fhir:name ( [ fhir:family [ fhir:v "PavardaitienÄ—" ] ; fhir:given ( [ fhir:v "GabrielÄ—" ] ) ] ) ; # fhir:gender [ fhir:v "female"] ; # fhir:birthDate [ fhir:v "1979-12-11"^^xsd:date] . # # -------------------------------------------------------------------------------------