{ "$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" } } } }