Paginated search results from the Adobe Stock library
{ "$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" } } } }