{
	"$ref": "#/definitions/SeedWidgetArea",
	"$schema": "http://json-schema.org/draft-07/schema#",
	"definitions": {
		"SeedWidget": {
			"additionalProperties": false,
			"description": "Widget in seed",
			"properties": {
				"componentId": {
					"type": "string"
				},
				"content": {
					"items": {
						"additionalProperties": {},
						"properties": {
							"_key": {
								"type": "string"
							},
							"_type": {
								"type": "string"
							}
						},
						"required": [
							"_type"
						],
						"type": "object"
					},
					"type": "array"
				},
				"menuName": {
					"type": "string"
				},
				"props": {
					"additionalProperties": {},
					"type": "object"
				},
				"title": {
					"type": "string"
				},
				"type": {
					"enum": [
						"content",
						"menu",
						"component"
					],
					"type": "string"
				}
			},
			"required": [
				"type"
			],
			"type": "object"
		},
		"SeedWidgetArea": {
			"additionalProperties": false,
			"description": "Widget area definition in seed",
			"properties": {
				"description": {
					"type": "string"
				},
				"label": {
					"type": "string"
				},
				"name": {
					"type": "string"
				},
				"widgets": {
					"items": {
						"$ref": "#/definitions/SeedWidget"
					},
					"type": "array"
				}
			},
			"required": [
				"name",
				"label",
				"widgets"
			],
			"type": "object"
		}
	},
	"$id": "https://premium-cms.com/schemas/seed/widget-area.schema.json",
	"title": "SeedWidgetArea"
}
