DiscriminatorType
public enum DiscriminatorType: String
How an element value is interpreted when discrimination is evaluated
URL: http://hl7.org/fhir/discriminator-type ValueSet: http://hl7.org/fhir/ValueSet/discriminator-type
-
The slices have different values in the nominated element
Declaration
Swift
case value = "value"
-
The slices are differentiated by the presence or absence of the nominated element
Declaration
Swift
case exists = "exists"
-
The slices have different values in the nominated element, as determined by testing them against the applicable ElementDefinition.pattern[x]
Declaration
Swift
case pattern = "pattern"
-
The slices are differentiated by type of the nominated element to a specifed profile
Declaration
Swift
case type = "type"
-
The slices are differentiated by conformance of the nominated element to a specifed profile
Declaration
Swift
case profile = "profile"