{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "properties": {
    "baseUrl": {
      "title": "Base URL",
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "description": "The base URL (http://www.example.com)",
      "format": "uri",
      "minLength": 1,
      "examples": ["https://example.com"]
    },
    "clientId": {
      "title": "Client ID",
      "type": "string",
      "description": "Client ID",
      "examples": ["abc123def"]
    },
    "clientSecret": {
      "title": "Client Secret",
      "type": "string",
      "description": "Client Secret",
      "writeOnly": true,
      "examples": ["ghi456jkl"]
    }
  },
  "type": "object",
  "additionalProperties": true,
  "required": ["baseUrl", "clientId", "clientSecret"]
}
