addedInput schema / properties / trust_request / examples
Added value: +[
+ {
+ "actor": {
+ "authentication_context": "session_cookie",
+ "declared_name": "Example Shopping Agent",
+ "declared_type": "ai_agent",
+ "declared_user_agent": "ExampleShoppingAgent/1.0",
+ "operator": "Example Consumer"
+ },
+ "asset_or_resource": "order-123",
+ "dated_sources": [
+ {
+ "date": "2026-05-28",
+ "id": "ait-1",
+ "source_type": "agent_identity_claim",
+ "title": "Declared agent identity header"
+ }
+ ],
+ "decision_stage": "pre_execution",
+ "requested_action": "complete purchase of two restricted-delivery items",
+ "requested_output": "structured_json",
+ "risk_question": "Is this agent-mediated checkout ready to allow, step up, or route to human review?",
+ "target_surface": "checkout"
+ }
+]
addedInput schema / properties / trust_request / properties
Added value: +{
+ "actor": {
+ "properties": {
+ "authentication_context": {
+ "enum": [
+ "anonymous",
+ "session_cookie",
+ "api_key",
+ "oauth",
+ "mTLS",
+ "signed_agent_manifest",
+ "unknown",
+ "other"
+ ],
+ "type": "string"
+ },
+ "declared_agent_id": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "declared_name": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "declared_type": {
+ "enum": [
+ "ai_agent",
+ "automation_script",
+ "api_client",
+ "browser_bot",
+ "human_delegated_agent",
+ "unknown",
+ "other"
+ ],
+ "type": "string"
+ },
+ "declared_user_agent": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "operator": {
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "required": [
+ "declared_type",
+ "declared_name"
+ ],
+ "type": "object"
+ },
+ "asset_or_resource": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "dated_sources": {
+ "items": {
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "decision_stage": {
+ "enum": [
+ "pre_execution",
+ "in_session",
+ "post_alert",
+ "policy_review",
+ "committee_review",
+ "other"
+ ],
+ "type": "string"
+ },
+ "notes": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "requested_action": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "requested_output": {
+ "enum": [
+ "structured_json",
+ "markdown_summary",
+ "both"
+ ],
+ "type": "string"
+ },
+ "risk_question": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "target_surface": {
+ "enum": [
+ "checkout",
+ "account",
+ "api",
+ "mcp_tool",
+ "a2a_endpoint",
+ "content_or_catalog",
+ "auth_flow",
+ "support_or_messaging",
+ "other"
+ ],
+ "type": "string"
+ }
+}