DefinitionStatus

public enum DefinitionStatus: String

Codes identifying the lifecycle stage of a definition

URL: http://hl7.org/fhir/definition-status ValueSet: http://hl7.org/fhir/ValueSet/definition-status

  • The definition is in the design stage and is not yet considered to be ready for use

    Declaration

    Swift

    case draft = "draft"
  • The definition is considered ready for use

    Declaration

    Swift

    case active = "active"
  • The definition should no longer be used

    Declaration

    Swift

    case withdrawn = "withdrawn"
  • The authoring system does not know which of the status values currently applies for this request. Note: This concept is not to be used for other - one of the listed statuses is presumed to apply, it’s just not known which one.

    Declaration

    Swift

    case unknown = "unknown"