{
	"$id": "schema:UIList",
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"title": "UIList",
	"alias": "list",
	"$ref": "schema:UIElement",
	"type": "object",
	"properties": {
		"scroll_count": {
			"description": "maximum amount of scrollage allowed by our size",
			"type": "number"
		},
		"scroll": {
			"description": "current scroll, in number of elements",
			"type": "number"
		},
		"separation": {
			"description": "offset to apply position between children, for example value of '0 16' would add 16vpx vertical gap between each child. Only use 1 axis at a time.",
			"type": "array",
			"items": {
				"type": "number"
			},
			"maxItems": 2,
			"minItems": 2
		}
	}
}