{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-photoshop/refs/heads/main/json-schema/adobe-photoshop-api-artboard-create-request-schema.json", "title": "ArtboardCreateRequest", "description": "ArtboardCreateRequest from Adobe Photoshop API", "type": "object", "properties": { "options": { "type": "object", "required": [ "artboards" ], "properties": { "artboards": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "Artboard name." }, "width": { "type": "integer", "description": "Artboard width in pixels." }, "height": { "type": "integer", "description": "Artboard height in pixels." }, "layers": { "type": "array", "items": { "$ref": "#/components/schemas/LayerOperation" } } } } } } }, "outputs": { "type": "array", "items": { "$ref": "#/components/schemas/StorageOutput" } } }, "required": [ "options", "outputs" ] }