Source Intelligence
Sweep 28 Aug 2026 · 00:00Z Build v2.1.250 478 read Stable v2.1.236 Latest v2.1.250 Next v2.1.250 Feeds RSS JSON llms.txt

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

One change

Deployment Runs

api/beta/deployment_runs

first seen The page's own history The capture it came from

Nearest release: v2.1.245, published an hour after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

api/beta/deployment_runs Changed · +119 / -252 lines

### Query parameters ### Headers #### Response (200) ### Path parameters ### Headers #### Response (200) ## Domain types ### Query Parameters ### Header Parameters #### Response ### Path Parameters ### Header Parameters #### Response ## Domain Types

from line 1
----
-title: Deployment Runs
-url: https://platform.claude.com/docs/en/api/beta/deployment_runs
----
-
 # Deployment Runs
 
 ## List Deployment Runs
 
-**get** `/v1/deployment_runs`
+**GET** `/v1/deployment_runs`
 
 List Deployment Runs
 
-### Query Parameters
+### Query parameters
 
 - `"created_at[gt]": optional string`
 
   Return runs created strictly after this time (exclusive).
 
+  format: date-time
+
 - `"created_at[gte]": optional string`
 
   Return runs created at or after this time (inclusive).
 
+  format: date-time
+
 - `"created_at[lt]": optional string`
 
   Return runs created strictly before this time (exclusive).
 
+  format: date-time
+
 - `"created_at[lte]": optional string`
 
   Return runs created at or before this time (inclusive).
 
+  format: date-time
+
 - `deployment_id: optional string`
 
   Filter to a specific deployment. Omit to list across all deployments in the workspace. Filtering by a non-existent deployment_id returns 200 with empty data.
from line 44
 
   Maximum results per page. Default 20, maximum 1000.
 
+  format: int32
+
 - `page: optional string`
 
   Opaque pagination cursor. Pass next_page from the previous response. Invalid or expired cursors return 400.
from line 58
 
   - `"manual"`
 
-### Header Parameters
+### Headers
 
 - `"anthropic-beta": optional array of AnthropicBeta`
 
from line 154
 
     - `type: "agent"`
 
-      - `"agent"`
-
     - `version: number`
 
+      format: int32
+
   - `created_at: string`
 
     A timestamp in RFC 3339 format
 
+    format: date-time
+
   - `deployment_id: string`
 
     ID of the deployment that produced this run.
from line 172
 
     Why the run failed to create a session. The type identifies the failure; message is human-readable detail.
 
-    - `BetaManagedAgentsEnvironmentArchivedRunError object { message, type }`
+    - `BetaManagedAgentsEnvironmentArchivedRunError object`
 
       The deployment's environment was archived.
 
from line 182
 
       - `type: "environment_archived_error"`
 
-        - `"environment_archived_error"`
+    - `BetaManagedAgentsAgentArchivedRunError object`
 
-    - `BetaManagedAgentsAgentArchivedRunError object { message, type }`
-
       The deployment's agent was archived.
 
       - `message: string`
from line 192
 
       - `type: "agent_archived_error"`
 
-        - `"agent_archived_error"`
+    - `BetaManagedAgentsEnvironmentNotFoundRunError object`
 
-    - `BetaManagedAgentsEnvironmentNotFoundRunError object { message, type }`
-
       The deployment's environment no longer exists.
 
       - `message: string`
from line 202
 
       - `type: "environment_not_found_error"`
 
-        - `"environment_not_found_error"`
+    - `BetaManagedAgentsVaultNotFoundRunError object`
 
-    - `BetaManagedAgentsVaultNotFoundRunError object { message, type }`
-
       A vault referenced by the deployment no longer exists.
 
       - `message: string`
from line 212
 
       - `type: "vault_not_found_error"`
 
-        - `"vault_not_found_error"`
+    - `BetaManagedAgentsVaultArchivedRunError object`
 
-    - `BetaManagedAgentsVaultArchivedRunError object { message, type }`
-
       A vault referenced by the deployment is archived.
 
       - `message: string`
from line 222
 
       - `type: "vault_archived_error"`
 
-        - `"vault_archived_error"`
+    - `BetaManagedAgentsFileNotFoundRunError object`
 
-    - `BetaManagedAgentsFileNotFoundRunError object { message, type }`
-
       A file resource referenced by the deployment no longer exists.
 
       - `message: string`
from line 232
 
       - `type: "file_not_found_error"`
 
-        - `"file_not_found_error"`
+    - `BetaManagedAgentsMemoryStoreArchivedRunError object`
 
-    - `BetaManagedAgentsMemoryStoreArchivedRunError object { message, type }`
-
       A memory store referenced by the deployment is archived.
 
       - `message: string`
from line 242
 
       - `type: "memory_store_archived_error"`
 
-        - `"memory_store_archived_error"`
+    - `BetaManagedAgentsSkillNotFoundRunError object`
 
-    - `BetaManagedAgentsSkillNotFoundRunError object { message, type }`
-
       A skill referenced by the deployment's agent no longer exists.
 
       - `message: string`
from line 252
 
       - `type: "skill_not_found_error"`
 
-        - `"skill_not_found_error"`
+    - `BetaManagedAgentsSessionResourceNotFoundRunError object`
 
-    - `BetaManagedAgentsSessionResourceNotFoundRunError object { message, type }`
-
       A referenced resource no longer exists and its kind was not reported.
 
       - `message: string`
from line 262
 
       - `type: "session_resource_not_found_error"`
 
-        - `"session_resource_not_found_error"`
+    - `BetaManagedAgentsWorkspaceArchivedRunError object`
 
-    - `BetaManagedAgentsWorkspaceArchivedRunError object { message, type }`
-
       The deployment's workspace was archived.
 
       - `message: string`
from line 272
 
       - `type: "workspace_archived_error"`
 
-        - `"workspace_archived_error"`
+    - `BetaManagedAgentsOrganizationDisabledRunError object`
 
-    - `BetaManagedAgentsOrganizationDisabledRunError object { message, type }`
-
       The deployment's organization is disabled.
 
       - `message: string`
from line 282
 
       - `type: "organization_disabled_error"`
 
-        - `"organization_disabled_error"`
+    - `BetaManagedAgentsSessionRateLimitedRunError object`
 
-    - `BetaManagedAgentsSessionRateLimitedRunError object { message, type }`
-
       Session creation was rejected due to rate limiting. The schedule keeps firing; subsequent runs may succeed.
 
       - `message: string`
from line 292
 
       - `type: "session_rate_limited_error"`
 
-        - `"session_rate_limited_error"`
+    - `BetaManagedAgentsSessionCreationRejectedRunError object`
 
-    - `BetaManagedAgentsSessionCreationRejectedRunError object { message, type }`
-
       The session create request was rejected with a non-retryable validation error.
 
       - `message: string`
from line 302
 
       - `type: "session_creation_rejected_error"`
 
-        - `"session_creation_rejected_error"`
+    - `BetaManagedAgentsUnknownRunError object`
 
-    - `BetaManagedAgentsUnknownRunError object { message, type }`
-
       An unknown or unexpected error caused the run to fail. A fallback variant; clients that do not recognize a new error type can match on message alone.
 
       - `message: string`
from line 312
 
       - `type: "unknown_error"`
 
-        - `"unknown_error"`
+    - `BetaManagedAgentsSelfHostedResourcesUnsupportedRunError object`
 
-    - `BetaManagedAgentsSelfHostedResourcesUnsupportedRunError object { message, type }`
-
       The deployment configures resources, but its environment is self-hosted and cannot mount them.
 
       - `message: string`
from line 322
 
       - `type: "self_hosted_resources_unsupported_error"`
 
-        - `"self_hosted_resources_unsupported_error"`
+    - `BetaManagedAgentsMCPEgressBlockedRunError object`
 
-    - `BetaManagedAgentsMCPEgressBlockedRunError object { message, type }`
-
       An MCP server host used by the deployment's agent is blocked by the environment's network policy.
 
       - `message: string`
from line 332
 
       - `type: "mcp_egress_blocked_error"`
 
-        - `"mcp_egress_blocked_error"`
-
   - `session_id: string or null`
 
     Populated on success. Null on creation failure. Exactly one of session_id or error is non-null.
from line 340
 
     Describes what triggered a deployment run, with trigger-specific metadata.
 
-    - `BetaManagedAgentsScheduleTriggerContext object { scheduled_at, type }`
+    - `BetaManagedAgentsScheduleTriggerContext object`
 
       The run was fired by the deployment's cron schedule.
 
from line 348
 
         A timestamp in RFC 3339 format
 
+        format: date-time
+
       - `type: "schedule"`
 
-        - `"schedule"`
+    - `BetaManagedAgentsManualTriggerContext object`
 
-    - `BetaManagedAgentsManualTriggerContext object { type }`
-
       The run was started manually by creating a session directly against the deployment.
 
       - `type: "manual"`
 
-        - `"manual"`
-
   - `type: "deployment_run"`
 
-    - `"deployment_run"`
-
 - `next_page: optional string or null`
 
   Opaque cursor for the next page. Null when no more results.
from line 366
 
 ### Example
 
-```http
+```bash
 curl https://api.anthropic.com/v1/deployment_runs \
     -H 'anthropic-version: 2023-06-01' \
     -H 'anthropic-beta: managed-agents-2026-04-01' \
from line 373
     -H "X-Api-Key: $ANTHROPIC_API_KEY"
 ```
 
-#### Response
+#### Response (200)
 
 ```json
 {
from line 405
 
 ## Get Deployment Run
 
-**get** `/v1/deployment_runs/{deployment_run_id}`
+**GET** `/v1/deployment_runs/{deployment_run_id}`
 
 Get Deployment Run
 
-### Path Parameters
+### Path parameters
 
 - `deployment_run_id: string`
 
-### Header Parameters
+### Headers
 
 - `"anthropic-beta": optional array of AnthropicBeta`
 
from line 493
 
 ### Returns
 
-- `BetaManagedAgentsDeploymentRun object { id, agent, created_at, 5 more }`
+- `BetaManagedAgentsDeploymentRun object`
 
   A persistent, append-only record of a single deployment execution. Records session creation success or failure — no session lifecycle tracking.
 
from line 509
 
     - `type: "agent"`
 
-      - `"agent"`
-
     - `version: number`
 
+      format: int32
+
   - `created_at: string`
 
     A timestamp in RFC 3339 format
 
+    format: date-time
+
   - `deployment_id: string`
 
     ID of the deployment that produced this run.
from line 527
 
     Why the run failed to create a session. The type identifies the failure; message is human-readable detail.
 
-    - `BetaManagedAgentsEnvironmentArchivedRunError object { message, type }`
+    - `BetaManagedAgentsEnvironmentArchivedRunError object`
 
       The deployment's environment was archived.
 
from line 537
 
       - `type: "environment_archived_error"`
 
-        - `"environment_archived_error"`
+    - `BetaManagedAgentsAgentArchivedRunError object`
 
-    - `BetaManagedAgentsAgentArchivedRunError object { message, type }`
-
       The deployment's agent was archived.
 
       - `message: string`
from line 547
 
       - `type: "agent_archived_error"`
 
-        - `"agent_archived_error"`
+    - `BetaManagedAgentsEnvironmentNotFoundRunError object`
 
-    - `BetaManagedAgentsEnvironmentNotFoundRunError object { message, type }`
-
       The deployment's environment no longer exists.
 
       - `message: string`
from line 557
 
       - `type: "environment_not_found_error"`
 
-        - `"environment_not_found_error"`
+    - `BetaManagedAgentsVaultNotFoundRunError object`
 
-    - `BetaManagedAgentsVaultNotFoundRunError object { message, type }`
-
       A vault referenced by the deployment no longer exists.
 
       - `message: string`
from line 567
 
       - `type: "vault_not_found_error"`
 
-        - `"vault_not_found_error"`
+    - `BetaManagedAgentsVaultArchivedRunError object`
 
-    - `BetaManagedAgentsVaultArchivedRunError object { message, type }`
-
       A vault referenced by the deployment is archived.
 
       - `message: string`
from line 577
 
       - `type: "vault_archived_error"`
 
-        - `"vault_archived_error"`
+    - `BetaManagedAgentsFileNotFoundRunError object`
 
-    - `BetaManagedAgentsFileNotFoundRunError object { message, type }`
-
       A file resource referenced by the deployment no longer exists.
 
       - `message: string`
from line 587
 
       - `type: "file_not_found_error"`
 
-        - `"file_not_found_error"`
+    - `BetaManagedAgentsMemoryStoreArchivedRunError object`
 
-    - `BetaManagedAgentsMemoryStoreArchivedRunError object { message, type }`
-
       A memory store referenced by the deployment is archived.
 
       - `message: string`
from line 597
 
       - `type: "memory_store_archived_error"`
 
-        - `"memory_store_archived_error"`
+    - `BetaManagedAgentsSkillNotFoundRunError object`
 
-    - `BetaManagedAgentsSkillNotFoundRunError object { message, type }`
-
       A skill referenced by the deployment's agent no longer exists.
 
       - `message: string`
from line 607
 
       - `type: "skill_not_found_error"`
 
-        - `"skill_not_found_error"`
+    - `BetaManagedAgentsSessionResourceNotFoundRunError object`
 
-    - `BetaManagedAgentsSessionResourceNotFoundRunError object { message, type }`
-
       A referenced resource no longer exists and its kind was not reported.
 
       - `message: string`
from line 617
 
       - `type: "session_resource_not_found_error"`
 
-        - `"session_resource_not_found_error"`
+    - `BetaManagedAgentsWorkspaceArchivedRunError object`
 
-    - `BetaManagedAgentsWorkspaceArchivedRunError object { message, type }`
-
       The deployment's workspace was archived.
 
       - `message: string`
from line 627
 
       - `type: "workspace_archived_error"`
 
-        - `"workspace_archived_error"`
+    - `BetaManagedAgentsOrganizationDisabledRunError object`
 
-    - `BetaManagedAgentsOrganizationDisabledRunError object { message, type }`
-
       The deployment's organization is disabled.
 
       - `message: string`
from line 637
 
       - `type: "organization_disabled_error"`
 
-        - `"organization_disabled_error"`
+    - `BetaManagedAgentsSessionRateLimitedRunError object`
 
-    - `BetaManagedAgentsSessionRateLimitedRunError object { message, type }`
-
       Session creation was rejected due to rate limiting. The schedule keeps firing; subsequent runs may succeed.
 
       - `message: string`
from line 647
 
       - `type: "session_rate_limited_error"`
 
-        - `"session_rate_limited_error"`
+    - `BetaManagedAgentsSessionCreationRejectedRunError object`
 
-    - `BetaManagedAgentsSessionCreationRejectedRunError object { message, type }`
-
       The session create request was rejected with a non-retryable validation error.
 
       - `message: string`
from line 657
 
       - `type: "session_creation_rejected_error"`
 
-        - `"session_creation_rejected_error"`
+    - `BetaManagedAgentsUnknownRunError object`
 
-    - `BetaManagedAgentsUnknownRunError object { message, type }`
-
       An unknown or unexpected error caused the run to fail. A fallback variant; clients that do not recognize a new error type can match on message alone.
 
       - `message: string`
from line 667
 
       - `type: "unknown_error"`
 
-        - `"unknown_error"`
+    - `BetaManagedAgentsSelfHostedResourcesUnsupportedRunError object`
 
-    - `BetaManagedAgentsSelfHostedResourcesUnsupportedRunError object { message, type }`
-
       The deployment configures resources, but its environment is self-hosted and cannot mount them.
 
       - `message: string`
from line 677
 
       - `type: "self_hosted_resources_unsupported_error"`
 
-        - `"self_hosted_resources_unsupported_error"`
+    - `BetaManagedAgentsMCPEgressBlockedRunError object`
 
-    - `BetaManagedAgentsMCPEgressBlockedRunError object { message, type }`
-
       An MCP server host used by the deployment's agent is blocked by the environment's network policy.
 
       - `message: string`
from line 687
 
       - `type: "mcp_egress_blocked_error"`
 
-        - `"mcp_egress_blocked_error"`
-
   - `session_id: string or null`
 
     Populated on success. Null on creation failure. Exactly one of session_id or error is non-null.
from line 695
 
     Describes what triggered a deployment run, with trigger-specific metadata.
 
-    - `BetaManagedAgentsScheduleTriggerContext object { scheduled_at, type }`
+    - `BetaManagedAgentsScheduleTriggerContext object`
 
       The run was fired by the deployment's cron schedule.
 
from line 703
 
         A timestamp in RFC 3339 format
 
+        format: date-time
+
       - `type: "schedule"`
 
-        - `"schedule"`
+    - `BetaManagedAgentsManualTriggerContext object`
 
-    - `BetaManagedAgentsManualTriggerContext object { type }`
-
       The run was started manually by creating a session directly against the deployment.
 
       - `type: "manual"`
 
-        - `"manual"`
-
   - `type: "deployment_run"`
 
-    - `"deployment_run"`
-
 ### Example
 
-```http
+```bash
 curl https://api.anthropic.com/v1/deployment_runs/$DEPLOYMENT_RUN_ID \
     -H 'anthropic-version: 2023-06-01' \
     -H 'anthropic-beta: managed-agents-2026-04-01' \
from line 724
     -H "X-Api-Key: $ANTHROPIC_API_KEY"
 ```
 
-#### Response
+#### Response (200)
 
 ```json
 {
from line 749
 }
 ```
 
-## Domain Types
+## Domain types
 
 ### Beta Managed Agents Agent Archived Run Error
 
-- `BetaManagedAgentsAgentArchivedRunError object { message, type }`
+- `BetaManagedAgentsAgentArchivedRunError object`
 
   The deployment's agent was archived.
 
from line 763
 
   - `type: "agent_archived_error"`
 
-    - `"agent_archived_error"`
-
 ### Beta Managed Agents Deployment Run
 
-- `BetaManagedAgentsDeploymentRun object { id, agent, created_at, 5 more }`
+- `BetaManagedAgentsDeploymentRun object`
 
   A persistent, append-only record of a single deployment execution. Records session creation success or failure — no session lifecycle tracking.
 
from line 781
 
     - `type: "agent"`
 
-      - `"agent"`
-
     - `version: number`
 
+      format: int32
+
   - `created_at: string`
 
     A timestamp in RFC 3339 format
 
+    format: date-time
+
   - `deployment_id: string`
 
     ID of the deployment that produced this run.
from line 799
 
     Why the run failed to create a session. The type identifies the failure; message is human-readable detail.
 
-    - `BetaManagedAgentsEnvironmentArchivedRunError object { message, type }`
+    - `BetaManagedAgentsEnvironmentArchivedRunError object`
 
       The deployment's environment was archived.
 
from line 809
 
       - `type: "environment_archived_error"`
 
-        - `"environment_archived_error"`
+    - `BetaManagedAgentsAgentArchivedRunError object`
 
-    - `BetaManagedAgentsAgentArchivedRunError object { message, type }`
-
       The deployment's agent was archived.
 
       - `message: string`
from line 819
 
       - `type: "agent_archived_error"`
 
-        - `"agent_archived_error"`
+    - `BetaManagedAgentsEnvironmentNotFoundRunError object`
 
-    - `BetaManagedAgentsEnvironmentNotFoundRunError object { message, type }`
-
       The deployment's environment no longer exists.
 
       - `message: string`
from line 829
 
       - `type: "environment_not_found_error"`
 
-        - `"environment_not_found_error"`
+    - `BetaManagedAgentsVaultNotFoundRunError object`
 
-    - `BetaManagedAgentsVaultNotFoundRunError object { message, type }`
-
       A vault referenced by the deployment no longer exists.
 
       - `message: string`
from line 839
 
       - `type: "vault_not_found_error"`
 
-        - `"vault_not_found_error"`
+    - `BetaManagedAgentsVaultArchivedRunError object`
 
-    - `BetaManagedAgentsVaultArchivedRunError object { message, type }`
-
       A vault referenced by the deployment is archived.
 
       - `message: string`
from line 849
 
       - `type: "vault_archived_error"`
 
-        - `"vault_archived_error"`
+    - `BetaManagedAgentsFileNotFoundRunError object`
 
-    - `BetaManagedAgentsFileNotFoundRunError object { message, type }`
-
       A file resource referenced by the deployment no longer exists.
 
       - `message: string`
from line 859
 
       - `type: "file_not_found_error"`
 
-        - `"file_not_found_error"`
+    - `BetaManagedAgentsMemoryStoreArchivedRunError object`
 
-    - `BetaManagedAgentsMemoryStoreArchivedRunError object { message, type }`
-
       A memory store referenced by the deployment is archived.
 
       - `message: string`
from line 869
 
       - `type: "memory_store_archived_error"`
 
-        - `"memory_store_archived_error"`
+    - `BetaManagedAgentsSkillNotFoundRunError object`
 
-    - `BetaManagedAgentsSkillNotFoundRunError object { message, type }`
-
       A skill referenced by the deployment's agent no longer exists.
 
       - `message: string`
from line 879
 
       - `type: "skill_not_found_error"`
 
-        - `"skill_not_found_error"`
+    - `BetaManagedAgentsSessionResourceNotFoundRunError object`
 
-    - `BetaManagedAgentsSessionResourceNotFoundRunError object { message, type }`
-
       A referenced resource no longer exists and its kind was not reported.
 
       - `message: string`
from line 889
 
       - `type: "session_resource_not_found_error"`
 
-        - `"session_resource_not_found_error"`
+    - `BetaManagedAgentsWorkspaceArchivedRunError object`
 
-    - `BetaManagedAgentsWorkspaceArchivedRunError object { message, type }`
-
       The deployment's workspace was archived.
 
       - `message: string`
from line 899
 
       - `type: "workspace_archived_error"`
 
-        - `"workspace_archived_error"`
+    - `BetaManagedAgentsOrganizationDisabledRunError object`
 
-    - `BetaManagedAgentsOrganizationDisabledRunError object { message, type }`
-
       The deployment's organization is disabled.
 
       - `message: string`
from line 909
 
       - `type: "organization_disabled_error"`
 
-        - `"organization_disabled_error"`
+    - `BetaManagedAgentsSessionRateLimitedRunError object`
 
-    - `BetaManagedAgentsSessionRateLimitedRunError object { message, type }`
-
       Session creation was rejected due to rate limiting. The schedule keeps firing; subsequent runs may succeed.
 
       - `message: string`
from line 919
 
       - `type: "session_rate_limited_error"`
 
-        - `"session_rate_limited_error"`
+    - `BetaManagedAgentsSessionCreationRejectedRunError object`
 
-    - `BetaManagedAgentsSessionCreationRejectedRunError object { message, type }`
-
       The session create request was rejected with a non-retryable validation error.
 
       - `message: string`
from line 929
 
       - `type: "session_creation_rejected_error"`
 
-        - `"session_creation_rejected_error"`
+    - `BetaManagedAgentsUnknownRunError object`
 
-    - `BetaManagedAgentsUnknownRunError object { message, type }`
-
       An unknown or unexpected error caused the run to fail. A fallback variant; clients that do not recognize a new error type can match on message alone.
 
       - `message: string`
from line 939
 
       - `type: "unknown_error"`
 
-        - `"unknown_error"`
+    - `BetaManagedAgentsSelfHostedResourcesUnsupportedRunError object`
 
-    - `BetaManagedAgentsSelfHostedResourcesUnsupportedRunError object { message, type }`
-
       The deployment configures resources, but its environment is self-hosted and cannot mount them.
 
       - `message: string`
from line 949
 
       - `type: "self_hosted_resources_unsupported_error"`
 
-        - `"self_hosted_resources_unsupported_error"`
+    - `BetaManagedAgentsMCPEgressBlockedRunError object`
 
-    - `BetaManagedAgentsMCPEgressBlockedRunError object { message, type }`
-
       An MCP server host used by the deployment's agent is blocked by the environment's network policy.
 
       - `message: string`
from line 959
 
       - `type: "mcp_egress_blocked_error"`
 
-        - `"mcp_egress_blocked_error"`
-
   - `session_id: string or null`
 
     Populated on success. Null on creation failure. Exactly one of session_id or error is non-null.
from line 967
 
     Describes what triggered a deployment run, with trigger-specific metadata.
 
-    - `BetaManagedAgentsScheduleTriggerContext object { scheduled_at, type }`
+    - `BetaManagedAgentsScheduleTriggerContext object`
 
       The run was fired by the deployment's cron schedule.
 
from line 975
 
         A timestamp in RFC 3339 format
 
+        format: date-time
+
       - `type: "schedule"`
 
-        - `"schedule"`
+    - `BetaManagedAgentsManualTriggerContext object`
 
-    - `BetaManagedAgentsManualTriggerContext object { type }`
-
       The run was started manually by creating a session directly against the deployment.
 
       - `type: "manual"`
 
-        - `"manual"`
-
   - `type: "deployment_run"`
 
-    - `"deployment_run"`
-
 ### Beta Managed Agents Environment Archived Run Error
 
-- `BetaManagedAgentsEnvironmentArchivedRunError object { message, type }`
+- `BetaManagedAgentsEnvironmentArchivedRunError object`
 
   The deployment's environment was archived.
 
from line 999
 
   - `type: "environment_archived_error"`
 
-    - `"environment_archived_error"`
-
 ### Beta Managed Agents Environment Not Found Run Error
 
-- `BetaManagedAgentsEnvironmentNotFoundRunError object { message, type }`
+- `BetaManagedAgentsEnvironmentNotFoundRunError object`
 
   The deployment's environment no longer exists.
 
from line 1011
 
   - `type: "environment_not_found_error"`
 
-    - `"environment_not_found_error"`
-
 ### Beta Managed Agents File Not Found Run Error
 
-- `BetaManagedAgentsFileNotFoundRunError object { message, type }`
+- `BetaManagedAgentsFileNotFoundRunError object`
 
   A file resource referenced by the deployment no longer exists.
 
from line 1023
 
   - `type: "file_not_found_error"`
 
-    - `"file_not_found_error"`
-
 ### Beta Managed Agents Manual Trigger Context
 
-- `BetaManagedAgentsManualTriggerContext object { type }`
+- `BetaManagedAgentsManualTriggerContext object`
 
   The run was started manually by creating a session directly against the deployment.
 
   - `type: "manual"`
 
-    - `"manual"`
-
 ### Beta Managed Agents MCP Egress Blocked Run Error
 
-- `BetaManagedAgentsMCPEgressBlockedRunError object { message, type }`
+- `BetaManagedAgentsMCPEgressBlockedRunError object`
 
   An MCP server host used by the deployment's agent is blocked by the environment's network policy.
 
from line 1043
 
   - `type: "mcp_egress_blocked_error"`
 
-    - `"mcp_egress_blocked_error"`
-
 ### Beta Managed Agents Memory Store Archived Run Error
 
-- `BetaManagedAgentsMemoryStoreArchivedRunError object { message, type }`
+- `BetaManagedAgentsMemoryStoreArchivedRunError object`
 
   A memory store referenced by the deployment is archived.
 
from line 1055
 
   - `type: "memory_store_archived_error"`
 
-    - `"memory_store_archived_error"`
-
 ### Beta Managed Agents Organization Disabled Run Error
 
-- `BetaManagedAgentsOrganizationDisabledRunError object { message, type }`
+- `BetaManagedAgentsOrganizationDisabledRunError object`
 
   The deployment's organization is disabled.
 
from line 1067
 
   - `type: "organization_disabled_error"`
 
-    - `"organization_disabled_error"`
-
 ### Beta Managed Agents Schedule Trigger Context
 
-- `BetaManagedAgentsScheduleTriggerContext object { scheduled_at, type }`
+- `BetaManagedAgentsScheduleTriggerContext object`
 
   The run was fired by the deployment's cron schedule.
 
from line 1077
 
     A timestamp in RFC 3339 format
 
+    format: date-time
+
   - `type: "schedule"`
 
-    - `"schedule"`
-
 ### Beta Managed Agents Self Hosted Resources Unsupported Run Error
 
-- `BetaManagedAgentsSelfHostedResourcesUnsupportedRunError object { message, type }`
+- `BetaManagedAgentsSelfHostedResourcesUnsupportedRunError object`
 
   The deployment configures resources, but its environment is self-hosted and cannot mount them.
 
from line 1093
 
   - `type: "self_hosted_resources_unsupported_error"`
 
-    - `"self_hosted_resources_unsupported_error"`
-
 ### Beta Managed Agents Session Creation Rejected Run Error
 
-- `BetaManagedAgentsSessionCreationRejectedRunError object { message, type }`
+- `BetaManagedAgentsSessionCreationRejectedRunError object`
 
   The session create request was rejected with a non-retryable validation error.
 
from line 1105
 
   - `type: "session_creation_rejected_error"`
 
-    - `"session_creation_rejected_error"`
-
 ### Beta Managed Agents Session Rate Limited Run Error
 
-- `BetaManagedAgentsSessionRateLimitedRunError object { message, type }`
+- `BetaManagedAgentsSessionRateLimitedRunError object`
 
   Session creation was rejected due to rate limiting. The schedule keeps firing; subsequent runs may succeed.
 
from line 1117
 
   - `type: "session_rate_limited_error"`
 
-    - `"session_rate_limited_error"`
-
 ### Beta Managed Agents Session Resource Not Found Run Error
 
-- `BetaManagedAgentsSessionResourceNotFoundRunError object { message, type }`
+- `BetaManagedAgentsSessionResourceNotFoundRunError object`
 
   A referenced resource no longer exists and its kind was not reported.
 
from line 1129
 
   - `type: "session_resource_not_found_error"`
 
-    - `"session_resource_not_found_error"`
-
 ### Beta Managed Agents Skill Not Found Run Error
 
-- `BetaManagedAgentsSkillNotFoundRunError object { message, type }`
+- `BetaManagedAgentsSkillNotFoundRunError object`
 
   A skill referenced by the deployment's agent no longer exists.
 
from line 1141
 
   - `type: "skill_not_found_error"`
 
-    - `"skill_not_found_error"`
-
 ### Beta Managed Agents Trigger Context
 
 - `BetaManagedAgentsTriggerContext = BetaManagedAgentsScheduleTriggerContext or BetaManagedAgentsManualTriggerContext`
from line 1147
 
   Describes what triggered a deployment run, with trigger-specific metadata.
 
-  - `BetaManagedAgentsScheduleTriggerContext object { scheduled_at, type }`
+  - `BetaManagedAgentsScheduleTriggerContext object`
 
     The run was fired by the deployment's cron schedule.
 
from line 1155
 
       A timestamp in RFC 3339 format
 
+      format: date-time
+
     - `type: "schedule"`
 
-      - `"schedule"`
+  - `BetaManagedAgentsManualTriggerContext object`
 
-  - `BetaManagedAgentsManualTriggerContext object { type }`
-
     The run was started manually by creating a session directly against the deployment.
 
     - `type: "manual"`
 
-      - `"manual"`
-
 ### Beta Managed Agents Trigger Type
 
 - `BetaManagedAgentsTriggerType = "schedule" or "manual"`
from line 1177
 
 ### Beta Managed Agents Unknown Run Error
 
-- `BetaManagedAgentsUnknownRunError object { message, type }`
+- `BetaManagedAgentsUnknownRunError object`
 
   An unknown or unexpected error caused the run to fail. A fallback variant; clients that do not recognize a new error type can match on message alone.
 
from line 1187
 
   - `type: "unknown_error"`
 
-    - `"unknown_error"`
-
 ### Beta Managed Agents Vault Archived Run Error
 
-- `BetaManagedAgentsVaultArchivedRunError object { message, type }`
+- `BetaManagedAgentsVaultArchivedRunError object`
 
   A vault referenced by the deployment is archived.
 
from line 1199
 
   - `type: "vault_archived_error"`
 
-    - `"vault_archived_error"`
-
 ### Beta Managed Agents Vault Not Found Run Error
 
-- `BetaManagedAgentsVaultNotFoundRunError object { message, type }`
+- `BetaManagedAgentsVaultNotFoundRunError object`
 
   A vault referenced by the deployment no longer exists.
 
from line 1211
 
   - `type: "vault_not_found_error"`
 
-    - `"vault_not_found_error"`
-
 ### Beta Managed Agents Workspace Archived Run Error
 
-- `BetaManagedAgentsWorkspaceArchivedRunError object { message, type }`
+- `BetaManagedAgentsWorkspaceArchivedRunError object`
 
   The deployment's workspace was archived.
 
from line 1222
     Human-readable error description.
 
   - `type: "workspace_archived_error"`
-
-    - `"workspace_archived_error"`