UnknownContentCode

public enum UnknownContentCode: String

A code that indicates whether an application accepts unknown elements or extensions when reading resources.

URL: http://hl7.org/fhir/unknown-content-code ValueSet: http://hl7.org/fhir/ValueSet/unknown-content-code

  • no

    The application does not accept either unknown elements or extensions.

    Declaration

    Swift

    case no = "no"
  • The application accepts unknown extensions, but not unknown elements.

    Declaration

    Swift

    case extensions = "extensions"
  • The application accepts unknown elements, but not unknown extensions.

    Declaration

    Swift

    case elements = "elements"
  • The application accepts unknown elements and extensions.

    Declaration

    Swift

    case both = "both"