NamingSystemIdentifierType

public enum NamingSystemIdentifierType: String

Identifies the style of unique identifier used to identify a namespace.

URL: http://hl7.org/fhir/namingsystem-identifier-type ValueSet: http://hl7.org/fhir/ValueSet/namingsystem-identifier-type

  • oid

    An ISO object identifier; e.g. 1.2.3.4.5.

    Declaration

    Swift

    case oid = "oid"
  • A universally unique identifier of the form a5afddf4-e880-459b-876e-e4591b0acc11.

    Declaration

    Swift

    case uuid = "uuid"
  • uri

    A uniform resource identifier (ideally a URL - uniform resource locator); e.g. http://unitsofmeasure.org.

    Declaration

    Swift

    case uri = "uri"
  • Some other type of unique identifier; e.g. HL7-assigned reserved string such as LN for LOINC.

    Declaration

    Swift

    case other = "other"