LicenseRequest

Request body for licensing a stock asset

CreativeDesignGraphicsPhotographyVideo

Properties

Name Type Description
content_id integer Adobe Stock content ID of the asset to license
license string License type to apply
locale string BCP 47 locale for localized response data
purchase_params object Optional purchase parameters and reference metadata
View JSON Schema on GitHub

JSON Schema

adobe-creative-suite-licenserequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LicenseRequest",
  "title": "LicenseRequest",
  "type": "object",
  "description": "Request body for licensing a stock asset",
  "required": [
    "content_id",
    "license"
  ],
  "properties": {
    "content_id": {
      "type": "integer",
      "description": "Adobe Stock content ID of the asset to license",
      "example": 123456789
    },
    "license": {
      "type": "string",
      "description": "License type to apply",
      "enum": [
        "Standard",
        "Extended",
        "Video_HD",
        "Video_4K"
      ],
      "example": "Standard"
    },
    "locale": {
      "type": "string",
      "description": "BCP 47 locale for localized response data",
      "example": "en_US"
    },
    "purchase_params": {
      "type": "object",
      "description": "Optional purchase parameters and reference metadata",
      "properties": {
        "references": {
          "type": "array",
          "description": "List of reference key-value pairs for tracking the license",
          "items": {
            "$ref": "#/components/schemas/LicenseReference"
          }
        }
      }
    }
  }
}