{
	"$id": "schema:UITextShadow",
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"title": "UITextShadow",
	"alias": "textshadow",
	"$ref": "schema:UIText",
	"type": "object",
	"properties": {
		"shadow_font_size": {
			"description": "the X/Y fontsize to use for the shadow",
			"type": "array",
			"items": {
				"type": "number"
			},
			"maxItems": 2,
			"minItems": 2
		},
		"shadow_font": {
			"description": "font name for the shadow",
			"type": "font" 
		},
		"shadow_offset": {
			"description": "origin offset for the shadow",
			"type": "array",
			"items": {
				"type": "number"
			},
			"maxItems": 2,
			"minItems": 2
		},
		"shadow_color": {
			"description": "color of the shadow",
			"type": "array",
			"items": {
				"type": "number"
			},
			"maxItems": 3,
			"minItems": 3
		},
		"shadow_alpha": {
			"description": "opacity of the shadow",
			"type": "number"
		}
	}
}
