{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Theme", "title": "Theme", "description": "A theme.", "type": "object", "properties": { "variations": { "description": "The variations.", "type": "array", "items": { "description": "A variation.", "type": "object", "properties": { "description": { "description": "The description.", "type": "string" }, "external_id": { "description": "The external identifier.", "type": "string" }, "name": { "description": "The name.", "type": "string" }, "uuid": { "description": "The identifier.", "type": "string" } } } }, "uuid": { "description": "The identifier.", "type": "string" }, "name": { "description": "The theme name identifier.", "type": "string" }, "is_private": { "description": "Flag to identify private themes.", "type": "boolean" } }, "x-internal": false }