{
	"$schema": "https://cratly.io/schema/section-types/v0.json",
	"specVersion": 0,
	"sections": {
		"section": { "label": "Section" },
		"article": { "label": "Article" },
		"aside": { "label": "Aside" },
		"header": { "label": "Header" },
		"footer": { "label": "Footer" },
		"main": { "label": "Main" },
		"nav": { "label": "Nav" },
		"video": {
			"label": "Video",
			"hint": "Embedded video with playback controls.",
			"props": {
				"src": { "type": "media-file", "label": "Video file", "required": true },
				"poster": { "type": "media-file", "label": "Poster image" },
				"autoplay": { "type": "boolean", "label": "Autoplay (muted)", "default": false },
				"loop": { "type": "boolean", "label": "Loop" },
				"muted": { "type": "boolean", "label": "Muted" },
				"controls": { "type": "boolean", "label": "Show controls", "default": true },
				"preload": {
					"type": "enum",
					"label": "Preload",
					"values": [ "none", "metadata", "auto" ],
					"default": "metadata"
				},
				"label": {
					"type": "text",
					"label": "Accessible label",
					"hint": "Announced by screen readers when the surrounding text does not describe the video."
				}
			}
		}
	}
}
