{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LookAndFeelSelection", "title": "LookAndFeelSelection", "required": [ "lookAndFeelType", "spaceKey" ], "type": "object", "properties": { "spaceKey": { "type": "string", "description": "The key of the space for which the look and feel settings will be\nset.", "example": "example_value" }, "lookAndFeelType": { "type": "string", "enum": [ "global", "custom", "theme" ], "example": "global" } }, "description": "Look and feel selection" }