-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpluginPatten.json
137 lines (136 loc) · 3.85 KB
/
pluginPatten.json
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"perm": {
"type": "string",
"pattern": "^[A-Za-z]+\.[A-Za-z\.]+$"
},
"cperm": {
"type": "boolean"
},
"stringArray": {
"type": "array",
"items": { "type": "string" },
"uniqueItems": true,
"default": []
},
"command": {
"type": "object",
"pattern": "[A-Za-z]+:$",
"properties": {
"usage": { "type": "string" },
"aliases": {
"type": "stringArray"
},
"description": { "type": "string" },
"permission": { "$ref": "#/definitions/perm" },
"permission-message": {
"type": "string",
"default": "§cYou don't have enough permissions to execute this command."
}
},
"required": ["description"]
},
"permission": {
"type": "object",
"pattern": "^[A-Za-z]+\.[A-Za-z\.]+$",
"properties": {
"description": { "type": "string" },
"default": {
"type": ["string", "boolean"],
"enum": [true, false, "op", "not op"]
},
"children": {
"type": "object",
"description": "List of children permissions",
"propertyNames": {
"pattern": "^[A-Za-z]+\.[A-Za-z\.]+$"
},
"additionalProperties": {
"$ref": "#/definitions/cperm"
}
}
},
"required": ["description"]
}
},
"properties": {
"main" : {
"type": "string",
"description": "Package path to main class that extends JavaPlugin"
},
"name": {
"type": "string",
"default": "CMC-",
"description": "The name of your plugin."
},
"version": {
"type": "string",
"description": "The version of your plugin."
},
"description" : {
"type": "string",
"description": "A human friendly description of the functionality your plugin provides."
},
"api-version" : {
"type": "string",
"default": "1.13",
"description": "The version of the API you want to use."
},
"load" : {
"type": "string",
"enum": ["STARTUP", "POSTWORLD"],
"default": "POSTWORLD",
"description": "Select when the plugin should startup."
},
"author" : {
"type": "string",
"description": "Author of this plugin"
},
"authors" : {
"$ref": "#/definitions/stringArray",
"description": "List of authors of this plugin"
},
"website" : {
"type": "string",
"pattern": "^https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&\/\/=]*)$",
"description": "The plugin's or author's website."
},
"depend" : {
"$ref": "#/definitions/stringArray",
"description": "List of plugins that must load before this plugin"
},
"prefix" : {
"type": "string",
"description": "The name to use when logging to console instead of the plugin's name."
},
"softdepend" : {
"$ref": "#/definitions/stringArray",
"description": "List of plugins that should if available load before this plugin"
},
"loadbefore" : {
"$ref": "#/definitions/stringArray",
"description": "A list of plugins that should be loaded after this plugin."
},
"commands": {
"type": "object",
"description": "List of plugin commands.",
"propertyNames": {
"pattern": "^[^\s]+$"
},
"additionalProperties": {
"$ref": "#/definitions/command"
}
},
"permissions": {
"type": "object",
"description": "List of plugin permission nodes.",
"propertyNames": {
"pattern": "^[A-Za-z]+\.[A-Za-z\.\*]+$"
},
"additionalProperties": {
"$ref": "#/definitions/permission"
}
}
}
}