Files
goodpackagerepo/templates/auth_scope_template.json
2025-12-29 09:00:42 +00:00

26 lines
476 B
JSON

{
"name": "custom_scope",
"description": "Custom authentication scope",
"actions": [
"blob.get",
"blob.put",
"kv.get",
"kv.put",
"index.query"
],
"examples": [
{
"use_case": "Read-only scope",
"actions": ["blob.get", "kv.get", "index.query"]
},
{
"use_case": "Write-only scope",
"actions": ["blob.put", "kv.put", "index.upsert"]
},
{
"use_case": "Admin scope",
"actions": ["*"]
}
]
}