> 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.

# BaseObject

GraphQL interface

Reference: https://docs.revvue.ai/api-reference/surveys/types/interfaces/base-object

## 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.

## Implemented by

- Survey
- SurveyTheme

## Definition

```graphql
interface BaseObject {
  id: UUID
  tenantId: String
  createdBy: String
  documentType: DocumentType
  activeState: ActiveState
  created: DateTime
  changed: DateTime
  changedBy: String
}
```