-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmulti-protocol.json
More file actions
91 lines (91 loc) · 2.67 KB
/
multi-protocol.json
File metadata and controls
91 lines (91 loc) · 2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"$schema": "https://agentpolicy.org/schema/v1/agent-policy.schema.json",
"version": "1.0",
"policyUrl": "https://platform.example.com/.well-known/agent-policy.json",
"defaultPolicy": {
"allow": true,
"actions": ["read", "render", "index", "summarize"],
"disallow": ["automated_purchase"],
"rateLimit": {
"requests": 500,
"window": "hour"
},
"requireVerification": false
},
"pathPolicies": [
{
"path": "/api/v1/**",
"allow": true,
"actions": ["api_call", "read", "tool_invoke"],
"requireVerification": true,
"rateLimit": {
"requests": 2000,
"window": "hour"
}
},
{
"path": "/mcp/**",
"allow": true,
"actions": ["tool_invoke", "api_call"],
"requireVerification": true,
"rateLimit": {
"requests": 1000,
"window": "hour"
}
},
{
"path": "/a2a/**",
"allow": true,
"actions": ["api_call", "tool_invoke"],
"requireVerification": true
},
{
"path": "/commerce/**",
"allow": true,
"actions": ["api_call", "automated_purchase"],
"requireVerification": true,
"rateLimit": {
"requests": 50,
"window": "hour"
},
"agentAllowlist": [
"did:web:comet.perplexity.ai",
"did:web:shopping.google.com",
"did:web:claude.anthropic.com"
]
},
{
"path": "/admin/**",
"allow": false
}
],
"verification": {
"method": ["did", "verifiable-credential", "pkix", "partner-token"],
"registry": "https://registry.agentpolicy.org",
"trustedIssuers": [
"did:web:trust.agentpolicy.org",
"did:web:google.com",
"did:web:anthropic.com",
"did:web:openai.com"
],
"verificationEndpoint": "https://platform.example.com/agent-verify"
},
"contact": {
"email": "platform@example.com",
"policyUrl": "https://platform.example.com/agent-policy",
"abuseUrl": "https://platform.example.com/report-abuse"
},
"metadata": {
"description": "Full multi-protocol interoperability example: A2A Agent Card, MCP server, WebMCP tools, UCP commerce capabilities, and APAAI audit endpoint all declared. Demonstrates APoP as the authorization layer for the complete agentic stack.",
"owner": "Example Platform Inc",
"lastModified": "2026-02-14T00:00:00Z",
"license": "Apache-2.0"
},
"interop": {
"a2aAgentCard": "https://platform.example.com/.well-known/agent.json",
"mcpServerUrl": "https://platform.example.com/mcp",
"webmcpEnabled": true,
"ucpCapabilities": "https://platform.example.com/.well-known/ucp.json",
"apaaiEndpoint": "https://platform.example.com/apaai/audit"
}
}