@prefix fhir: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:OperationDefinition ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "search-near"] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "

Generated Narrative: OperationDefinition search-near

URL: [base]/Organization/$search-near

Parameters

UseNameScopeCardinalityTypeBindingDocumentation
INaddress1..*Address

Addresses around which to search.

\n
INradius1..1Distance

Threshold radius.

\n
INtype0..*Coding

Filter on Organization.type.

\n
INendpoint:missing0..1boolean

Filter on absence of Organization.endpoint.

\n
OUTreturn1..1Bundle

Bundle of organizations within the threshold of one or more addresses.

\n
"^^rdf:XMLLiteral ] ; # fhir:url [ fhir:v "https://sequoiaproject.org/fhir/ehx/OperationDefinition/search-near"^^xsd:anyURI] ; # fhir:version [ fhir:v "1.8.1"] ; # fhir:name [ fhir:v "SearchNear"] ; # fhir:title [ fhir:v "Search Near"] ; # fhir:status [ fhir:v "active"] ; # fhir:kind [ fhir:v "operation"] ; # fhir:date [ fhir:v "2025-10-27T13:14:09-04:00"^^xsd:dateTime] ; # fhir:publisher [ fhir:v "eHealthExchange"] ; # fhir:contact ( [ fhir:name [ fhir:v "eHealthExchange" ] ; fhir:telecom ( [ fhir:system [ fhir:v "url" ] ; fhir:value [ fhir:v "https://ehealthexchange.org/" ] ] ) ] ) ; # fhir:description [ fhir:v "Returns organizations containing locations that are within a specified radius of one or more specified addresses. See the following example, which searches for participants with endpoints that are within ten miles of the White House:\n```json\n {\n \"resourceType\": \"Parameters\",\n \"parameter\": [\n {\n \"name\": \"address\",\n \"valueAddress\": {\n \"line\": [\n \"1600 Pennsylvania Avenue NW\"\n ],\n \"city\": \"Washington\",\n \"state\": \"DC\",\n \"postalCode\": \"20500\"\n }\n },\n {\n \"name\": \"radius\",\n \"valueDistance\": {\n \"value\": 10,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"[mi_i]\"\n }\n },\n {\n \"name\": \"type\",\n \"valueCoding\": {\n \"system\": \"https://sequoiaproject.org/fhir/sphd/CodeSystem/OrganizationType\",\n \"code\": \"Participant\"\n }\n },\n {\n \"name\": \"endpoint:missing\",\n \"valueBoolean\": false\n }\n ]\n }\n```"] ; # fhir:code [ fhir:v "search-near"] ; # fhir:base [ fhir:v "https://sequoiaproject.org/fhir/ehx/OperationDefinition/search-near"^^xsd:anyURI ; fhir:link ] ; # fhir:resource ( [ fhir:v "Organization"] ) ; # fhir:system [ fhir:v false] ; # fhir:type [ fhir:v true] ; # fhir:instance [ fhir:v false] ; # fhir:parameter ( [ fhir:name [ fhir:v "address" ] ; fhir:use [ fhir:v "in" ] ; fhir:min [ fhir:v 1 ] ; fhir:max [ fhir:v "*" ] ; fhir:documentation [ fhir:v "Addresses around which to search." ] ; fhir:type [ fhir:v "Address" ] ] [ fhir:name [ fhir:v "radius" ] ; fhir:use [ fhir:v "in" ] ; fhir:min [ fhir:v 1 ] ; fhir:max [ fhir:v "1" ] ; fhir:documentation [ fhir:v "Threshold radius." ] ; fhir:type [ fhir:v "Distance" ] ] [ fhir:name [ fhir:v "type" ] ; fhir:use [ fhir:v "in" ] ; fhir:min [ fhir:v 0 ] ; fhir:max [ fhir:v "*" ] ; fhir:documentation [ fhir:v "Filter on Organization.type." ] ; fhir:type [ fhir:v "Coding" ] ] [ fhir:name [ fhir:v "endpoint:missing" ] ; fhir:use [ fhir:v "in" ] ; fhir:min [ fhir:v 0 ] ; fhir:max [ fhir:v "1" ] ; fhir:documentation [ fhir:v "Filter on absence of Organization.endpoint." ] ; fhir:type [ fhir:v "boolean" ] ] [ fhir:name [ fhir:v "return" ] ; fhir:use [ fhir:v "out" ] ; fhir:min [ fhir:v 1 ] ; fhir:max [ fhir:v "1" ] ; fhir:documentation [ fhir:v "Bundle of organizations within the threshold of one or more addresses." ] ; fhir:type [ fhir:v "Bundle" ] ] ) . # # -------------------------------------------------------------------------------------