{
	"$schema": "http://json-schema.org/draft-07/schema",
	"$id": "https://apidocs.iqrf.org/openapi/iqrf-gateway-webapp/schemas/mosquittoUserCreate.json",
	"type": "object",
	"title": "Mosquitto user create",
	"additionalProperties": false,
	"required": [
		"username",
		"password"
	],
	"properties": {
		"username": {
			"$id": "#/properties/username",
			"type": "string",
			"title": "Username",
			"minLength": 1,
			"example": "iqrf"
		},
		"password": {
			"$id": "#/properties/password",
			"type": "string",
			"title": "Password",
			"minLength": 15,
			"maxLength": 64,
			"pattern": "^[ -~]+$",
			"example": "8Yz#t>pL^sD|Uq&bW@"
		}
	}
}
