# Unified Models Object

> Source: https://truto.one/docs/api-reference/admin/unified-models/

Schema for the `Unified Models` resource in **Admin API**.

## Properties

- **`id`** _(string)_
  The ID of the unified model.
- **`name`** _(string)_
  The name of the unified model.
- **`category`** _(string)_
  The category of the unified model.
- **`description`** _(string)_
  A brief description of what this unified model represents.
- **`team_id`** _(string)_
  The ID of the team that owns this unified model.
- **`sharing`** _(string)_
  The sharing policy of the unified model.
  Allowed: `allow`, `ask`, `deny`
- **`resources`** _(object)_
  Map of resource name (e.g. `users`, `contacts`) → resource definition (`UnifiedModelResource`).
- **`docs`** _(object)_
  Per-resource documentation (pricing plan / scopes / instructions).
- **`scopes`** _(object)_
  Per-resource OAuth/permission scopes required to call its methods.
- **`webhooks`** _(object)_
  Per-resource webhook routing expression (JSONata that decides whether an inbound webhook should be delivered to this resource).
- **`created_at`** _(string)_
  The date and time when the unified model was created.
- **`updated_at`** _(string)_
  The date and time when the unified model was last updated.
- **`version`** _(number)_
  The current version of the unified model.
- **`installed_environment`** _(array<string>)_
  A list of environment IDs where this unified model is installed.
- **`team`** _(object)_
  - **`id`** _(string)_
    The ID of the team.
  - **`name`** _(string)_
    The name of the team.
  - **`domain`** _(string)_
    The domain of the team.
  - **`logo`** _(string)_
    The URL of the team's logo.
  - **`is_verified`** _(boolean)_
    Whether the team is verified or not.
  - **`is_white_label`** _(boolean)_
    Whether the team is white-labeled or not.
  - **`tos_link`** _(string)_
    A link to the team's Terms of Service, if available.
  - **`allow_impersonation`** _(boolean)_
    Whether the team allows impersonation.
  - **`created_at`** _(string)_
    The date and time when the team was created.
  - **`updated_at`** _(string)_
    The date and time when the team was last updated.

## Methods

- [GET /unified-model](/docs/api-reference/admin/unified-models/list) — List unified models
- [POST /unified-model](/docs/api-reference/admin/unified-models/create) — Create unified model
- [GET /unified-model/{id}](/docs/api-reference/admin/unified-models/get) — Get unified model
- [PATCH /unified-model/{id}](/docs/api-reference/admin/unified-models/update) — Update unified model
- [DELETE /unified-model/{id}](/docs/api-reference/admin/unified-models/delete) — Delete unified model
