Adobe Creative Suite · JSON Structure

Adobe Creative Suite Stock License Response Structure

Response returned after successfully licensing a stock asset

Type: object Properties: 3
CreativeDesignGraphicsPhotographyVideo

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

Properties

content_id purchase_details download_url

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-stock-license-response-structure.json",
  "name": "LicenseResponse",
  "description": "Response returned after successfully licensing a stock asset",
  "type": "object",
  "properties": {
    "content_id": {
      "type": "int32",
      "description": "Content ID of the licensed asset",
      "example": 123456789
    },
    "purchase_details": {
      "type": "object",
      "description": "Details of the license purchase transaction",
      "properties": {
        "state": {
          "type": "string",
          "description": "State of the license purchase",
          "enum": [
            "just_purchased",
            "already_purchased",
            "overage"
          ]
        },
        "license": {
          "type": "string",
          "description": "License type applied"
        },
        "nb_downloads": {
          "type": "int32",
          "description": "Number of times this asset has been downloaded by the member"
        }
      }
    },
    "download_url": {
      "type": "string",
      "description": "URL to download the licensed full-resolution file",
      "example": "https://stock.adobe.com/Rest/Libraries/Download/123456789/1"
    }
  }
}