# Installed Unified Models - Environment Unified Models Object

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

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

## Properties

- **`id`** _(string)_
  The ID of the environment-unified-model record.
- **`unified_model_id`** _(string)_
  The ID of the unified model being installed or overridden.
- **`environment_id`** _(string)_
  The ID of the environment where this unified model is installed.
- **`override`** _(object)_
  An optional object containing environment-level overrides for the unified model. Deep-merged on top of the base unified model. See `EnvironmentUnifiedModelOverride` for the typed shape.
  - **`resources`** _(object)_
    Resource-level overrides keyed by resource name.
  - **`scopes`** _(object)_
    Per-integration extra OAuth scopes appended to the base unified-model scopes.
  - **`webhooks`** _(object)_
    Per-integration JSONata expressions that route inbound webhooks to unified-model resources.
  - **`docs`** _(object)_
    Per-integration documentation overrides.
- **`created_at`** _(string)_
  Timestamp when this record was created.
- **`updated_at`** _(string)_
  Timestamp when this record was last updated.
- **`unified_model`** _(object)_
  - **`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 /environment-unified-model](/docs/api-reference/admin/installed-unified-models-environment-unified-models/list) — List environment unified models
- [POST /environment-unified-model](/docs/api-reference/admin/installed-unified-models-environment-unified-models/create) — Create environment unified model
- [GET /environment-unified-model/{id}](/docs/api-reference/admin/installed-unified-models-environment-unified-models/get) — Get environment unified model
- [PATCH /environment-unified-model/{id}](/docs/api-reference/admin/installed-unified-models-environment-unified-models/update) — Update environment unified model
- [DELETE /environment-unified-model/{id}](/docs/api-reference/admin/installed-unified-models-environment-unified-models/delete) — Delete environment unified model
