{
	"$id": "schema:UIText",
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"title": "UIText",
	"alias": "text",
	"$ref": "schema:UIElement",
	"type": "object",
	"properties": {
		"font_size": {
			"description": "the X/Y fontsize to use",
			"type": "array",
			"items": {
				"type": "number"
			},
			"maxItems": 2,
			"minItems": 2
		},
		"padding": {
			"description": "padding to add onto the edges of our UI element",
			"type": "array",
			"items": {
				"type": "number"
			},
			"maxItems": 2,
			"minItems": 2
		},
		"text": {
			"description": "Text to display in this",
			"type": "string"
		},
		"font": {
			"description": "font name",
			"type": "font" 
		}
	}
}
