SpecimenStatus

public enum SpecimenStatus: String

Codes providing the status/availability of a specimen.

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

  • The physical specimen is present and in good condition.

    Declaration

    Swift

    case available = "available"
  • There is no physical specimen because it is either lost, destroyed or consumed.

    Declaration

    Swift

    case unavailable = "unavailable"
  • The specimen cannot be used because of a quality issue such as a broken container, contamination, or too old.

    Declaration

    Swift

    case unsatisfactory = "unsatisfactory"
  • The specimen was entered in error and therefore nullified.

    Declaration

    Swift

    case enteredInError = "entered-in-error"