QuickFHIR Authorizer: Basic authorizer

Allow all requests to the API endpoint that include a valid Basic header. Token is supplied in the http Authorization header using the Basic scheme. Configure a set of acceptable users with name and pass.

Capabilities

Configurability

Device configuration

{
  "$schema": "https://json-schema.org/draft/2019-09/schema",
  "type": "object",
  "properties": {
    "users": {
      "description": "users",
      "type": "array",
      "items": {
        "properties": {
          "name": {
            "description": "Username",
            "type": "string"
          },
          "pass": {
            "description": "Password",
            "type": "string"
          }
        },
        "required": [
          "name",
          "pass"
        ]
      }
    }
  },
  "required": [
    "users"
  ]
}

Technical information

Property Value
Model @blackpear/quickfhir-authorizer-basic
Available Versions 1.0.0, 1.0.1, 1.0.2, 1.0.3
Manufacturer Black Pear Software Limited