-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopen-data.json
More file actions
50 lines (50 loc) · 1.35 KB
/
open-data.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"$schema": "https://agentpolicy.org/schema/v1/agent-policy.schema.json",
"version": "1.0",
"policyUrl": "https://data.example.gov/.well-known/agent-policy.json",
"defaultPolicy": {
"allow": true,
"actions": ["read", "index", "extract", "summarize", "render", "api_call"],
"rateLimit": {
"requests": 10000,
"window": "hour"
},
"requireVerification": false
},
"pathPolicies": [
{
"path": "/datasets/**",
"allow": true,
"actions": ["read", "index", "extract", "summarize", "api_call"],
"requireVerification": false,
"rateLimit": {
"requests": 50000,
"window": "day"
}
},
{
"path": "/api/v1/**",
"allow": true,
"actions": ["api_call", "read", "extract"],
"requireVerification": false,
"rateLimit": {
"requests": 10000,
"window": "hour"
}
},
{
"path": "/admin/**",
"allow": false
}
],
"contact": {
"email": "[email protected]",
"policyUrl": "https://data.example.gov/terms"
},
"metadata": {
"description": "Open data portal: fully permissive access for all agents. High rate limits, no verification required. Intended for government open data initiatives.",
"owner": "Example Government Data Office",
"lastModified": "2026-02-14T00:00:00Z",
"license": "CC0-1.0"
}
}