QuestionnaireResponseStatus

public enum QuestionnaireResponseStatus: String

Lifecycle status of the questionnaire response.

URL: http://hl7.org/fhir/questionnaire-answers-status ValueSet: http://hl7.org/fhir/ValueSet/questionnaire-answers-status

  • This QuestionnaireResponse has been partially filled out with answers, but changes or additions are still expected to be made to it.

    Declaration

    Swift

    case inProgress = "in-progress"
  • This QuestionnaireResponse has been filled out with answers, and the current content is regarded as definitive.

    Declaration

    Swift

    case completed = "completed"
  • This QuestionnaireResponse has been filled out with answers, then marked as complete, yet changes or additions have been made to it afterwards.

    Declaration

    Swift

    case amended = "amended"
  • This QuestionnaireResponse was entered in error and voided.

    Declaration

    Swift

    case enteredInError = "entered-in-error"
  • This QuestionnaireResponse has been partially filled out with answers, but has been abandoned. It is unknown whether changes or additions are expected to be made to it.

    Declaration

    Swift

    case stopped = "stopped"