{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-illustrator/refs/heads/main/json-structure/adobe-illustrator-scripting-artboard-create-structure.json", "name": "ArtboardCreate", "description": "ArtboardCreate from Adobe Illustrator API", "type": "object", "properties": { "name": { "type": "string", "description": "Name of the artboard.", "example": "Example Artboard" }, "artboardRect": { "type": "array", "description": "Bounding rectangle [left, top, right, bottom] in points.", "items": { "type": "double" }, "minItems": 4, "maxItems": 4 } }, "required": [ "artboardRect" ] }