-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.schema.json
More file actions
37 lines (37 loc) · 1000 Bytes
/
plugin.schema.json
File metadata and controls
37 lines (37 loc) · 1000 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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Jar extension descriptor",
"description": "This document describes an extension descriptor in a jar file",
"type": "object",
"properties": {
"main": {
"description": "The entry point of the extension",
"type": "string"
},
"name": {
"description": "The name of the extension",
"type": "string"
},
"author": {
"description": "The author of the extension",
"type": "string"
},
"version": {
"description": "The version string of the extension e.g. 0.0.1",
"type": "string"
},
"description": {
"description": "The description for the extension",
"type": "string"
},
"identifier": {
"description": "The UUID 4 of the extension",
"type": "string"
},
"dependencies": {
"description": "List of dependencies of the dependency",
"type": "array",
"$ref": "jardependency.schema.json"
}
}
}