{
	"$schema": "http://json-schema.org/draft-07/schema#",
	"required": ["name", "tree"],
	"type": "object",
	"properties": {
		"name": {
			"type": "string"
		},
		"servePort": {
			"type": "integer"
		},
		"tree": {
			"$id": "tree",
			"type": "object",
			"properties": {
				"$className": {
					"type": "string"
				},
				"$ignoreUnknownInstances": {
					"type": "boolean"
				},
				"$path": {
					"type": "string"
				},
				"$properties": {
					"type": "object"
				}
			},
			"patternProperties": {
				"^[^\\$].*$": { "$ref": "tree" }
			}
		}
	}
}
