New use RxNORM table for drug lookups. (#4399)
[openemr.git] / src / FHIR / FhirSearchParameterType.php
blobd07720f80541d16ecd437e1614082bcaa9437d0b
1 <?php
3 /**
4 * FhirSearchParameterType represents the different parameter types that FHIR search parameters can be. Each parameter
5 * type has a different way they should be handled per the FHIR search specification.
6 * @see https://www.hl7.org/fhir/search.html for more information
7 * @package openemr
8 * @link http://www.open-emr.org
9 * @author Stephen Nielson <stephen@nielson.org>
10 * @copyright Copyright (c) 2021 Stephen Nielson <stephen@nielson.org>
11 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
14 namespace OpenEMR\FHIR;
16 class FhirSearchParameterType
18 /**
19 * @see https://www.hl7.org/fhir/search.html#table
21 const TOKEN = 'token';
22 const DATE = 'date';
23 const URI = 'uri';
24 const STRING = 'string';