{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "properties": {
    "baseUrl": {
      "title": "Base URL",
      "type": "string",
      "description": "The base URL (http://www.example.com)",
      "format": "uri",
      "minLength": 1,
      "examples": [
        "https://example.com"
      ]
    },
    "merchantKey": {
      "title": "NIA Merchant Key",
      "type": "string",
      "description": "NI Merchant Key",
      "examples": [
        "abc-123-def"
      ]
    }
  },
  "type": "object",
  "additionalProperties": true,
  "required": [
    "baseUrl",
    "merchantKey"
  ]
}