{
	"type": "object",
	"patternProperties": {
		"^.*$": {
			"type": "array",
			"items": {
				"properties": {
					"title": {
						"anyOf": [
							{
								"type": "string"
							},
							{
								"type": "array",
								"items": {
									"type": "string"
								}
							}
						]
					},
					"params": {
						"type": "object",
						"patternProperties": {
							"^.*$": {
								"anyOf": [
									{
										"type": "string"
									},
									{
										"type": "array",
										"items": {
											"type": "string"
										}
									}
								]
							}
						}
					}
				}
			},
			"required": [
				"title"
			],
			"additionalProperties": false
		}
	},
	"additionalProperties": false
}
