ActionRequiredBehavior

public enum ActionRequiredBehavior: String

Defines requiredness behavior for selecting an action or an action group

URL: http://hl7.org/fhir/action-required-behavior ValueSet: http://hl7.org/fhir/ValueSet/action-required-behavior

  • An action with this behavior must be included in the actions processed by the end user; the end user may not choose not to include this action

    Declaration

    Swift

    case must = "must"
  • An action with this behavior may be included in the set of actions processed by the end user

    Declaration

    Swift

    case could = "could"
  • An action with this behavior must be included in the set of actions processed by the end user, unless the end user provides documentation as to why the action was not included

    Declaration

    Swift

    case mustUnlessDocumented = "must-unless-documented"