{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "properties": {
    "baseUrl": {
      "title": "Base URL",
      "type": "string",
      "description": "Community Health Kit base URL",
      "format": "uri",
      "minLength": 1,
      "examples": ["https://demo-cht.dev.medicmobile.org"]
    },
    "username": {
      "title": "Username",
      "type": "string",
      "description": "Username",
      "examples": ["somenamehere"]
    },
    "password": {
      "title": "Password",
      "type": "string",
      "description": "Password",
      "writeOnly": true,
      "examples": ["@some(!)Str0ngp4ss0w0rd"]
    }
  },
  "type": "object",
  "additionalProperties": true,
  "required": ["password", "username"]
}
