001package ca.cdr.api.model.json; 002 003import io.swagger.v3.oas.annotations.media.Schema; 004 005public enum TokenizationValueNormalizationEnum { 006 @Schema(description = "Don't normalize") 007 NONE, 008 009 @Schema( 010 description = 011 "Tokenize the `Identifier.system` and `Identifier.value` to support searching using the format `identifier=http://system|value`. For elements of type `code` (such as `Patient.gender`) only the value is tokenized, and only the unqualified form may be used for searching.") 012 IDENTIFIER, 013 014 @Schema(description = "Tokenize according to the standard FHIR string search parameter normalization rules.") 015 STRING, 016 017 @Schema( 018 description = 019 "Tokenize the `CodeableConcept.coding.system` and `CodeableConcept.coding.value` to support searching using the format `code=http://system|code`") 020 CODEABLECONCEPT 021}