CodeSystemContentMode

public enum CodeSystemContentMode: String

How much of the content of the code system - the concepts and codes it defines - are represented in a code system resource

URL: http://hl7.org/fhir/codesystem-content-mode ValueSet: http://hl7.org/fhir/ValueSet/codesystem-content-mode

  • None of the concepts defined by the code system are included in the code system resource

    Declaration

    Swift

    case notPresent = "not-present"
  • A few representative concepts are included in the code system resource

    Declaration

    Swift

    case example = "example"
  • A subset of the code system concepts are included in the code system resource

    Declaration

    Swift

    case fragment = "fragment"
  • All the concepts defined by the code system are included in the code system resource

    Declaration

    Swift

    case complete = "complete"