-
Notifications
You must be signed in to change notification settings - Fork 7
/
schema.json
269 lines (269 loc) · 11.9 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
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"count-property": {
"title": "count",
"description": "A repetition count\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#actions",
"type": "integer",
"minimum": 0,
"default": 1
},
"speed-property": {
"title": "speed",
"description": "An interval between key typing in milliseconds\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#actions",
"type": "integer",
"minimum": 0,
"default": 10
}
},
"title": "clive settings",
"description": "clive settings\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#gear-configuration",
"type": "object",
"properties": {
"settings": {
"title": "settings",
"description": "clive settings\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#settings",
"type": "object",
"properties": {
"loginCommand": {
"title": "login command",
"description": "A login command with arguments\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#logincommand",
"type": "array",
"items": {
"type": "string",
"examples": [
"bash",
"--login"
]
},
"minItems": 1,
"default": [
"bash",
"--login"
]
},
"fontSize": {
"title": "font size",
"description": "A font size\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#fontsize",
"type": "integer",
"minimum": 1,
"default": 22
},
"fontFamily": {
"title": "font family",
"description": "A font family\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#fontfamily",
"type": "string",
"minLength": 1,
"pattern": "[^ ]",
"examples": [
"monospace"
]
},
"defaultSpeed": {
"title": "default speed",
"description": "An interval between key typing in milliseconds\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#defaultspeed",
"type": "integer",
"minimum": 0,
"default": 10
},
"skipPauseBeforeQuit": {
"title": "skip pause before quit",
"description": "Whether to skip pausing before quitting or not\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#skippausebeforequit",
"type": "boolean",
"default": false
},
"screenshotsDir": {
"title": "screenshots directory",
"description": "A directory to save screenshots\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#screenshotsdir",
"type": "boolean",
"default": false
},
"browserBin": {
"title": "browser binary",
"description": "A path to an executable browser binary\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#browserbin",
"type": "string",
"minLength": 1,
"pattern": "[^ ]",
"default": "screenshots"
},
"headless": {
"title": "headless",
"description": "Whether to run a browser in a headless mode\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#headless",
"type": "string",
"minLength": 1,
"pattern": "[^ ]",
"examples": [
"/Applications/Sidekick.app/Contents/MacOS/Sidekick"
]
},
"width": {
"title": "width",
"description": "A window width\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#width",
"type": "integer",
"minimum": 0
},
"height": {
"title": "height",
"description": "A window height\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#height",
"type": "integer",
"minimum": 0
}
},
"minProperties": 1,
"additionalProperties": false
},
"actions": {
"title": "actions",
"description": "Actions\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#actions",
"type": "array",
"items": {
"oneOf": [
{
"title": "type",
"description": "Type characters\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#type",
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"title": "type",
"description": "Characters to type\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#type",
"type": "string",
"examples": [
"echo 'Hello World'"
]
},
"count": {
"$ref": "#/definitions/count-property"
},
"speed": {
"$ref": "#/definitions/speed-property"
}
},
"additionalProperties": false
},
{
"title": "key",
"description": "Press special characters\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#key",
"type": "object",
"required": [
"key"
],
"properties": {
"key": {
"title": "key",
"description": "Character to press\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#key",
"type": "string",
"enum": [
"esc",
"backspace",
"tab",
"enter",
"left",
"up",
"right",
"down",
"space"
]
},
"count": {
"$ref": "#/definitions/count-property"
},
"speed": {
"$ref": "#/definitions/speed-property"
}
},
"additionalProperties": false
},
{
"title": "ctrl",
"description": "Press Ctrl with other character\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#ctrl",
"type": "object",
"required": [
"ctrl"
],
"properties": {
"ctrl": {
"title": "ctrl",
"description": "Character to type alongside Ctrl\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#ctrl",
"type": "string",
"minLength": 1,
"pattern": "[^ ]",
"examples": [
"C"
]
},
"count": {
"$ref": "#/definitions/count-property"
},
"speed": {
"$ref": "#/definitions/speed-property"
}
},
"additionalProperties": false
},
{
"title": "sleep",
"description": "Sleep for a specific number of milliseconds\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#sleep",
"type": "object",
"required": [
"sleep"
],
"properties": {
"sleep": {
"title": "sleep",
"description": "A milliseconds amount\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#sleep",
"type": "integer",
"minimum": 0
}
},
"additionalProperties": false
},
{
"title": "pause",
"description": "Wait for Enter to be pressed\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#screenshot",
"type": "string",
"enum": [
"pause"
]
},
{
"title": "screenshot",
"description": "Take a screenshot\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#screenshot",
"oneOf": [
{
"type": "string",
"enum": [
"screenshot"
]
},
{
"type": "object",
"required": [
"screenshot"
],
"properties": {
"screenshot": {
"title": "screenshot",
"description": "A screenshot path\nhttps://github.com/koki-develop/clive?tab=readme-ov-file#screenshot",
"type": "string",
"minLength": 1,
"pattern": "[^ ]",
"default": [
"ACTION_INDEX_yyyymmddHHMMSS.png"
]
}
},
"additionalProperties": false
}
]
}
]
},
"minItems": 1
}
},
"minProperties": 1,
"additionalProperties": false
}