-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanaged-storage-schema.json
More file actions
30 lines (30 loc) · 1.01 KB
/
managed-storage-schema.json
File metadata and controls
30 lines (30 loc) · 1.01 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
{
"type": "object",
"properties": {
"managedScripts": {
"title": "Managed userscripts",
"description": "Userscripts provisioned by enterprise policy. Each item may provide a remote userscript URL or inline userscript source.",
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"title": "Userscript URL",
"description": "HTTPS or HTTP userscript URL fetched through ScriptVault's normal install guards.",
"type": "string"
},
"code": {
"title": "Inline userscript source",
"description": "Complete userscript source including a ==UserScript== metadata block.",
"type": "string"
}
}
}
},
"managedScriptsCleanup": {
"title": "Prune removed managed scripts",
"description": "When true, ScriptVault removes locally stored managed scripts that are no longer present in managedScripts.",
"type": "boolean"
}
}
}