SearchResult

Paginated search results from the Adobe Stock library

CreativeDesignGraphicsPhotographyVideo

Properties

Name Type Description
nb_results integer Total number of files matching the search query
files array List of matching stock files
View JSON Schema on GitHub

JSON Schema

adobe-creative-suite-searchresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SearchResult",
  "title": "SearchResult",
  "type": "object",
  "description": "Paginated search results from the Adobe Stock library",
  "properties": {
    "nb_results": {
      "type": "integer",
      "description": "Total number of files matching the search query",
      "example": 4521
    },
    "files": {
      "type": "array",
      "description": "List of matching stock files",
      "items": {
        "$ref": "#/components/schemas/StockFile"
      }
    }
  }
}