-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path$$schema.json
42 lines (42 loc) · 1.35 KB
/
$$schema.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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "aero-addon",
"title": "Addon Listing",
"description": "A listing for an aero addon",
"type": "object",
"properties": {
"added": {
"description": "serialised Date",
"type": "string"
},
"id": {
"description": "The unique identifier for the addon.",
"type": "string"
},
"title": {
"description": "The title of the addon.",
"type": "string"
},
"description": {
"description": "The description of the addon.",
"type": "string"
},
"author": {
"description": "The author of the addon.",
"type": "string"
},
"repository": {
"description": "The GitHub repository path. (e.g. TheCommieAxolotl/aero-addons)",
"type": "string"
},
"path": {
"description": "The path to the addon inside the GitHub repository. (e.g. plugins/ExampleAddon.ts or themes/ExampleTheme/)",
"type": "string"
},
"sha256": {
"description": "The commit hash of the verified version of the addon.",
"type": "string"
}
},
"required": ["id", "added", "title", "description", "repository", "path", "sha256"]
}