Adobe Creative Suite · JSON Structure

Adobe Creative Suite Photoshop Rendition Create Request Structure

Request to create one or more renditions from a PSD or image

Type: object Properties: 2 Required: 2
CreativeDesignGraphicsPhotographyVideo

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

Properties

inputs 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-creative-suite/refs/heads/main/json-structure/adobe-creative-suite-photoshop-rendition-create-request-structure.json",
  "name": "RenditionCreateRequest",
  "description": "Request to create one or more renditions from a PSD or image",
  "type": "object",
  "properties": {
    "inputs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/JobInput"
      }
    },
    "outputs": {
      "type": "array",
      "description": "List of rendition outputs to generate",
      "items": {
        "type": "object",
        "allOf": [
          {
            "$ref": "#/components/schemas/JobOutput"
          },
          {
            "type": "object",
            "properties": {
              "quality": {
                "type": "integer",
                "description": "JPEG quality (1-100)",
                "minimum": 1,
                "maximum": 100
              },
              "compression": {
                "type": "string",
                "description": "PNG compression level",
                "enum": [
                  "small",
                  "medium",
                  "large"
                ]
              }
            }
          }
        ]
      }
    }
  },
  "required": [
    "inputs",
    "outputs"
  ]
}