Adobe Creative Suite · Schema
ArtboardRequest
Request to create artboards within a PSD document
CreativeDesignGraphicsPhotographyVideo
Properties
| Name | Type | Description |
|---|---|---|
| inputs | array | |
| outputs | array | |
| options | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ArtboardRequest",
"title": "ArtboardRequest",
"type": "object",
"description": "Request to create artboards within a PSD document",
"required": [
"inputs",
"outputs",
"options"
],
"properties": {
"inputs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/JobInput"
}
},
"outputs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/JobOutput"
}
},
"options": {
"type": "object",
"properties": {
"artboards": {
"type": "array",
"description": "List of artboards to create",
"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"
}
}
}
}
}
}
}
}