-
Notifications
You must be signed in to change notification settings - Fork 1
/
repository.schema.json
176 lines (176 loc) · 9.31 KB
/
repository.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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
{
"$id": "https://raw.githubusercontent.com/Icikowski/MyApps/master/repository.schema.json",
"$schema": "http://json-schema.org/draft-07/schema",
"description": "Definition of the MyApps' repository",
"required": [
"name",
"description",
"maintainer",
"contents"
],
"title": "MyApps' repository definition",
"type": "object",
"additionalProperties": true,
"properties": {
"name": {
"$id": "#/properties/name",
"description": "Short name of the repository",
"title": "Repository name",
"type": "string"
},
"description": {
"$id": "#/properties/description",
"description": "Short repository description",
"title": "Repository description",
"type": "string"
},
"maintainer": {
"$id": "#/properties/maintainer",
"description": "Maintainer's name and optional info",
"examples": [
"Jane Doe",
"Jane Doe <[email protected]>"
],
"title": "Maintainer name",
"type": "string"
},
"contents": {
"$id": "#/properties/contents",
"description": "List of apps available in repository",
"title": "Repository contents",
"type": "array",
"additionalItems": true,
"items": {
"$id": "#/properties/contents/items",
"anyOf": [
{
"$id": "#/properties/contents/items/anyOf/0",
"description": "Application details and related scenarios",
"required": [
"name",
"description",
"newest_version_check",
"current_version_check",
"install_scenario",
"update_scenario",
"uninstall_scenario"
],
"title": "Application definition",
"type": "object",
"additionalProperties": true,
"properties": {
"name": {
"$id": "#/properties/contents/items/anyOf/0/properties/name",
"description": "Short application name",
"title": "Application name",
"type": "string"
},
"description": {
"$id": "#/properties/contents/items/anyOf/0/properties/description",
"description": "Few words about application and its purpose",
"title": "Application description",
"type": "string"
},
"newest_version_check": {
"$id": "#/properties/contents/items/anyOf/0/properties/newest_version_check",
"description": "List of command that will produce latest application's version as standard output",
"title": "Newest version check scenario",
"type": "array",
"additionalItems": true,
"minItems": 1,
"items": {
"$id": "#/properties/contents/items/anyOf/0/properties/newest_version_check/items",
"anyOf": [
{
"$id": "#/properties/contents/items/anyOf/0/properties/newest_version_check/items/anyOf/0",
"description": "Shell commands, pipes, etc.",
"title": "Shell command(s)",
"type": "string"
}
]
}
},
"current_version_check": {
"$id": "#/properties/contents/items/anyOf/0/properties/current_version_check",
"default": [],
"description": "List of command that will produce current application's version as standard output",
"title": "Current version check scenario",
"type": "array",
"additionalItems": true,
"minItems": 1,
"items": {
"$id": "#/properties/contents/items/anyOf/0/properties/current_version_check/items",
"anyOf": [
{
"$id": "#/properties/contents/items/anyOf/0/properties/current_version_check/items/anyOf/0",
"description": "Shell commands, pipes, etc.",
"title": "Shell command(s)",
"type": "string"
}
]
}
},
"install_scenario": {
"$id": "#/properties/contents/items/anyOf/0/properties/install_scenario",
"type": "array",
"title": "Install scenario",
"description": "Steps (commands) used to install application; 'OS', 'ARCH', 'TEMP' & 'LATEST_VERSION' environment variables are available",
"additionalItems": true,
"minItems": 1,
"items": {
"$id": "#/properties/contents/items/anyOf/0/properties/install_scenario/items",
"anyOf": [
{
"$id": "#/properties/contents/items/anyOf/0/properties/install_scenario/items/anyOf/0",
"description": "Shell commands, pipes, etc.",
"title": "Shell command(s)",
"type": "string"
}
]
}
},
"update_scenario": {
"$id": "#/properties/contents/items/anyOf/0/properties/update_scenario",
"type": "array",
"title": "Update scenario",
"description": "Steps (commands) used to update application; 'OS', 'ARCH', 'TEMP', 'CURRENT_VERSION' & 'LATEST_VERSION' environment variables are available",
"additionalItems": true,
"minItems": 1,
"items": {
"$id": "#/properties/contents/items/anyOf/0/properties/update_scenario/items",
"anyOf": [
{
"$id": "#/properties/contents/items/anyOf/0/properties/update_scenario/items/anyOf/0",
"description": "Shell commands, pipes, etc.",
"title": "Shell command(s)",
"type": "string"
}
]
}
},
"uninstall_scenario": {
"$id": "#/properties/contents/items/anyOf/0/properties/uninstall_scenario",
"type": "array",
"title": "The uninstall_scenario schema",
"description": "Steps (commands) used to uninstall application; 'OS', 'ARCH' & 'CURRENT_VERSION' environment variables are available",
"additionalItems": true,
"minItems": 1,
"items": {
"$id": "#/properties/contents/items/anyOf/0/properties/uninstall_scenario/items",
"anyOf": [
{
"$id": "#/properties/contents/items/anyOf/0/properties/uninstall_scenario/items/anyOf/0",
"description": "Shell commands, pipes, etc.",
"title": "Shell command(s)",
"type": "string"
}
]
}
}
}
}
]
}
}
}
}