removedInput schema / additionalProperties
Removed value: -false
addedInput schema / properties / fillColor
Added value: +{
+ "description": "Fill color in RGBA format",
+ "properties": {
+ "a": {
+ "description": "Alpha component (0-1)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ },
+ "b": {
+ "description": "Blue component (0-1)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ },
+ "g": {
+ "description": "Green component (0-1)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ },
+ "r": {
+ "description": "Red component (0-1)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ }
+ },
+ "required": [
+ "r",
+ "g",
+ "b"
+ ],
+ "type": "object"
+}
addedInput schema / properties / height
Added value: +{
+ "description": "Height of the ellipse",
+ "type": "number"
+}
addedInput schema / properties / name
Added value: +{
+ "description": "Optional name for the ellipse",
+ "type": "string"
+}
addedInput schema / properties / parentId
Added value: +{
+ "description": "Optional parent node ID to append the ellipse to",
+ "type": "string"
+}
addedInput schema / properties / strokeColor
Added value: +{
+ "description": "Stroke color in RGBA format",
+ "properties": {
+ "a": {
+ "description": "Alpha component (0-1)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ },
+ "b": {
+ "description": "Blue component (0-1)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ },
+ "g": {
+ "description": "Green component (0-1)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ },
+ "r": {
+ "description": "Red component (0-1)",
+ "maximum": 1,
+ "minimum": 0,
+ "type": "number"
+ }
+ },
+ "required": [
+ "r",
+ "g",
+ "b"
+ ],
+ "type": "object"
+}
addedInput schema / properties / strokeWeight
Added value: +{
+ "description": "Stroke weight",
+ "exclusiveMinimum": 0,
+ "type": "number"
+}
addedInput schema / properties / width
Added value: +{
+ "description": "Width of the ellipse",
+ "type": "number"
+}
addedInput schema / properties / x
Added value: +{
+ "description": "X position",
+ "type": "number"
+}
addedInput schema / properties / y
Added value: +{
+ "description": "Y position",
+ "type": "number"
+}
addedInput schema / required
Added value: +[
+ "x",
+ "y",
+ "width",
+ "height"
+]