{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Theme", "title": "Theme", "required": [ "themeKey" ], "type": "object", "properties": { "themeKey": { "type": "string", "example": "example_value" }, "name": { "type": "string", "example": "Example Title" }, "description": { "type": "string", "example": "A sample description." }, "icon": { "$ref": "#/components/schemas/Icon" }, "_links": { "$ref": "#/components/schemas/GenericLinks" } } }