Adobe Creative Suite · JSON Structure

Adobe Creative Suite Photoshop Render Output Structure

Details of a rendered output file

Type: object Properties: 4
CreativeDesignGraphicsPhotographyVideo

RenderOutput is a JSON Structure definition published by Adobe Creative Suite, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

input status details _links

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-render-output-structure.json",
  "name": "RenderOutput",
  "description": "Details of a rendered output file",
  "type": "object",
  "properties": {
    "input": {
      "type": "string",
      "description": "Reference to the input file used to produce this output",
      "example": "example_value"
    },
    "status": {
      "type": "string",
      "description": "Status of this specific output",
      "enum": [
        "pending",
        "running",
        "succeeded",
        "failed"
      ],
      "example": "pending"
    },
    "details": {
      "type": "string",
      "description": "Additional detail message for this output",
      "example": "example_value"
    },
    "_links": {
      "type": "object",
      "properties": {
        "renditions": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "href": {
                "type": "string",
                "description": "URL of the rendered output file"
              },
              "storage": {
                "type": "string"
              },
              "type": {
                "type": "string"
              },
              "width": {
                "type": "int32"
              },
              "height": {
                "type": "int32"
              }
            }
          }
        }
      }
    }
  }
}