mirror of
https://github.com/johndoe6345789/goodpackagerepo.git
synced 2026-04-24 13:54:59 +00:00
26 lines
476 B
JSON
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": ["*"]
|
|
}
|
|
]
|
|
}
|