Adobe Photoshop · JSON Structure

Adobe Photoshop Api Artboard Create Request Structure

ArtboardCreateRequest from Adobe Photoshop API

Type: object Properties: 2 Required: 2
AI/MLCreative CloudImage EditingPhotoshopPluginsREST APIScripting

ArtboardCreateRequest is a JSON Structure definition published by Adobe Photoshop, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

options outputs

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-photoshop/refs/heads/main/json-structure/adobe-photoshop-api-artboard-create-request-structure.json",
  "name": "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": "int32",
                "description": "Artboard width in pixels."
              },
              "height": {
                "type": "int32",
                "description": "Artboard height in pixels."
              },
              "layers": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/LayerOperation"
                }
              }
            }
          }
        }
      }
    },
    "outputs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StorageOutput"
      }
    }
  },
  "required": [
    "options",
    "outputs"
  ]
}