{
	"type": "object",
	"additionalProperties": {
		"type": "object",
		"properties": {
			"title": {
				"type": "string"
			},
			"desc": {
				"type": "string"
			},
			"outro": {
				"type": "string"
			},
			"data": {
				"type": "object",
				"additionalProperties": {
					"type": "object",
					"properties": {
						"input": {
							"type": "string"
						},
						"title": {
							"type": "string"
						},
						"type": {
							"type": "string"
						},
						"desc": {
							"type": "string"
						},
						"outro": {
							"type": "string"
						}
					},
					"required": [
						"input"
					],
					"additionalProperties": false
				}
			}
		},
		"required": [
			"data"
		],
		"additionalProperties": false
	},
	"$schema": "http://json-schema.org/draft-07/schema#"
}