Adobe Photoshop · Schema

FillMaskedAreasRequest

FillMaskedAreasRequest from Adobe Photoshop API

AI/MLCreative CloudImage EditingPhotoshopPluginsREST APIScripting

Properties

Name Type Description
image object
masks array
View JSON Schema on GitHub

JSON Schema

adobe-photoshop-api-fill-masked-areas-request-schema.json Raw ↑
{
  "$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-fill-masked-areas-request-schema.json",
  "title": "FillMaskedAreasRequest",
  "description": "FillMaskedAreasRequest from Adobe Photoshop API",
  "type": "object",
  "properties": {
    "image": {
      "type": "object",
      "required": [
        "source"
      ],
      "properties": {
        "source": {
          "type": "object",
          "required": [
            "url"
          ],
          "properties": {
            "url": {
              "type": "string",
              "description": "Pre-signed URL of the source image."
            }
          }
        }
      }
    },
    "masks": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "source"
        ],
        "properties": {
          "source": {
            "type": "object",
            "required": [
              "url"
            ],
            "properties": {
              "url": {
                "type": "string",
                "description": "Pre-signed URL of the mask image."
              }
            }
          }
        }
      }
    }
  },
  "required": [
    "image",
    "masks"
  ]
}