{
	"type": "object",
	"title": "Array Item List in Object",
	"description": "This examples show an item list in an object.",
	"properties": {
		"elements": {
			"type": "array",
			"title": "Elements",
			"items": [
				{
					"type": "object",
					"title": "Element Eins",
					"properties": {
						"eins": {
							"title": "Eins",
							"type": "number",
							"minimum": 1,
							"maximum": 512,
							"examples": [ 1 ]
						}
					}
				},
				{
					"type": "string",
					"title": "Element Zwei",
					"examples": [ "2" ]
				}
			]
		}
	},
	"additionalProperties": false
}
