RepositoryType

public enum RepositoryType: String

Type for access of external URI

URL: http://hl7.org/fhir/repository-type ValueSet: http://hl7.org/fhir/ValueSet/repository-type

  • When URL is clicked, the resource can be seen directly (by webpage or by download link format)

    Declaration

    Swift

    case directlink = "directlink"
  • When the API method (e.g. [base_url]/[parameter]) related with the URL of the website is executed, the resource can be seen directly (usually in JSON or XML format)

    Declaration

    Swift

    case openapi = "openapi"
  • When logged into the website, the resource can be seen.

    Declaration

    Swift

    case login = "login"
  • When logged in and follow the API in the website related with URL, the resource can be seen.

    Declaration

    Swift

    case oauth = "oauth"
  • Some other complicated or particular way to get resource from URL.

    Declaration

    Swift

    case other = "other"