{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-creative-suite/refs/heads/main/json-schema/adobe-creative-suite-stock-category-schema.json", "title": "Category", "description": "A stock content category", "type": "object", "properties": { "id": { "type": "integer", "description": "Unique category identifier", "example": 1043 }, "name": { "type": "string", "description": "Localized category name", "example": "Nature" }, "link": { "type": "string", "description": "URL to browse this category on the Adobe Stock website", "example": "example_value" }, "children": { "type": "array", "description": "Child subcategories (present in category tree responses)", "items": { "$ref": "#/components/schemas/Category" } } } }