LicenseHistoryResponse

LicenseHistoryResponse from Adobe API

AI/MLCloudCreativeDesignDocumentsPhotographySaaSVideo

Properties

Name Type Description
nb_results integer
files array
View JSON Schema on GitHub

JSON Schema

adobe-stock-api-license-history-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-creative-cloud/refs/heads/main/json-schema/adobe-stock-api-license-history-response-schema.json",
  "title": "LicenseHistoryResponse",
  "description": "LicenseHistoryResponse from Adobe API",
  "type": "object",
  "properties": {
    "nb_results": {
      "type": "integer",
      "example": 42
    },
    "files": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "title": {
            "type": "string"
          },
          "content_type": {
            "type": "string"
          },
          "thumbnail_url": {
            "type": "string",
            "format": "uri"
          },
          "license": {
            "type": "string"
          },
          "license_date": {
            "type": "string",
            "format": "date-time"
          },
          "download_url": {
            "type": "string",
            "format": "uri"
          }
        }
      }
    }
  }
}