SearchResponse

SearchResponse from Adobe API

AI/MLCloudCreativeDesignDocumentsPhotographySaaSVideo

Properties

Name Type Description
nb_results integer Total number of matching results.
files array
View JSON Schema on GitHub

JSON Schema

adobe-stock-api-search-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-search-response-schema.json",
  "title": "SearchResponse",
  "description": "SearchResponse from Adobe API",
  "type": "object",
  "properties": {
    "nb_results": {
      "type": "integer",
      "description": "Total number of matching results.",
      "example": 42
    },
    "files": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StockAsset"
      }
    }
  }
}