> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.revvue.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.revvue.ai/_mcp/server.

# SurveyTheme

GraphQL object

Reference: https://docs.revvue.ai/api-reference/surveys/types/objects/survey-theme

## Fields

- `id` — Unique id (UUID).
- `tenantId` — Document tenant id.
- `createdBy` — Audit identification of who created the document.
- `documentType` — Document type.
- `activeState` — Active state
- `created` — Timestamp when document was created.
- `changed` — Timestamp of when the last change occurred.
- `changedBy` — Audit identification of who changed the document.
- `name` — Name.
- `clientTheme` — Client theme.
- `casinoIcons` — Casino icons.

## Definition

```graphql
type SurveyTheme implements BaseObject {
  id: UUID
  tenantId: String
  createdBy: String
  documentType: DocumentType
  activeState: ActiveState
  created: DateTime
  changed: DateTime
  changedBy: String
  name: String
  clientTheme: JSON
  casinoIcons: [String]
}
```