Adobe Creative Suite · Schema
Category
A stock content category
CreativeDesignGraphicsPhotographyVideo
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique category identifier |
| name | string | Localized category name |
| link | string | URL to browse this category on the Adobe Stock website |
| children | array | Child subcategories (present in category tree responses) |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Category",
"title": "Category",
"type": "object",
"description": "A stock content category",
"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"
}
}
}
}