@prefix fhir: .
@prefix owl: .
@prefix rdfs: .
@prefix xsd: .
# - resource -------------------------------------------------------------------
a fhir:SearchParameter ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "patient-nameOrIdentifier"] ; #
fhir:url [ fhir:v "http://esveikata.lt/fhir/SearchParameter/patient-nameOrIdentifier"^^xsd:anyURI] ; #
fhir:version [ fhir:v "0.3.13"] ; #
fhir:name [ fhir:v "NameOrIdentifier"] ; #
fhir:status [ fhir:v "active"] ; #
fhir:experimental [ fhir:v "false"^^xsd:boolean] ; #
fhir:date [ fhir:v "2022-01-01"^^xsd:date] ; #
fhir:publisher [ fhir:v "Registrų Centras"] ; #
fhir:contact ( [
fhir:name [ fhir:v "Registrų Centras" ] ;
fhir:telecom ( [
fhir:system [ fhir:v "url" ] ;
fhir:value [ fhir:v "https://www.registrucentras.lt/" ]
] [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "elab@registrucentras.lt" ]
] )
] ) ; #
fhir:description [ fhir:v "Search by Patient's full name or personal code or ESI identifier"] ; #
fhir:jurisdiction ( [
fhir:coding ( [
fhir:system [ fhir:v "urn:iso:std:iso:3166"^^xsd:anyURI ] ;
fhir:code [ fhir:v "LT" ] ;
fhir:display [ fhir:v "Lithuania" ]
] )
] ) ; #
fhir:code [ fhir:v "nameOrIdentifier"] ; #
fhir:base ( [ fhir:v "Patient"] ) ; #
fhir:type [ fhir:v "string"] ; #
fhir:expression [ fhir:v "(Patient.name.given | Patient.name.family).join(' ') | Patient.identifier.where(system = 'http://esveikata.lt/Identifier/Patient/ESI').value | Patient.identifier.where(system = 'http://esveikata.lt/Identifier/PersonalCode').value"] ; #
fhir:processingMode [ fhir:v "normal"] . #
# -------------------------------------------------------------------------------------