ConformanceExpectation

public enum ConformanceExpectation: String

Indicates the degree of adherence to a specified behavior or capability expected for a system to be deemed conformant with a specification.

URL: http://hl7.org/fhir/conformance-expectation ValueSet: http://hl7.org/fhir/ValueSet/conformance-expectation

  • Support for the specified capability is required to be considered conformant.

    Declaration

    Swift

    case SHALL = "SHALL"
  • Support for the specified capability is strongly encouraged, and failure to support it should only occur after careful consideration.

    Declaration

    Swift

    case SHOULD = "SHOULD"
  • MAY

    Support for the specified capability is not necessary to be considered conformant, and the requirement should be considered strictly optional.

    Declaration

    Swift

    case MAY = "MAY"
  • Support for the specified capability is strongly discouraged and should occur only after careful consideration.

    Declaration

    Swift

    case SHOULDNOT = "SHOULD-NOT"