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

# BaseReviewObject

GraphQL interface

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

## Fields

- `id` — Unique id (UUID).
- `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.
- `tenantId` — Document tenant id.
- `reviewTime` — Timestamp when document was created.
- `locationExternalId` — External id from source.
- `locationId` — Location id.

## Implemented by

- ProcessedReview

## Definition

```graphql
interface BaseReviewObject {
  id: UUID
  activeState: ActiveState
  created: DateTime
  changed: DateTime
  changedBy: String
  tenantId: String
  reviewTime: DateTime
  locationExternalId: String
  locationId: String
}
```