-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin-schema.json
More file actions
46 lines (46 loc) · 1011 Bytes
/
plugin-schema.json
File metadata and controls
46 lines (46 loc) · 1011 Bytes
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": [
"id",
"version",
"supported_versions",
"file",
"args"
],
"properties": {
"$schema": {
"type": "string",
"description": "Path or URL to the plugin schema"
},
"id": {
"type": "string",
"description": "Unique plugin identifier",
"minLength": 1
},
"version": {
"type": "string",
"description": "Plugin version",
"pattern": "^\\d+\\.\\d+\\.\\d+$"
},
"supported_versions": {
"type": "array",
"description": "List of supported host versions",
"items": {
"type": "string"
}
},
"file": {
"type": "string",
"description": "Executable or runtime used to launch the plugin"
},
"args": {
"type": "array",
"description": "Arguments passed to the executable",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}