This repository has been archived by the owner on Jan 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINPUT_SCHEMA.json
96 lines (96 loc) · 2.47 KB
/
INPUT_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
{
"title": "PuppeteerCrawler Template",
"description": "lorem ipsum",
"type": "object",
"schemaVersion": 1,
"properties": {
"cloud": {
"title": "Cloud",
"type": "string",
"description": "Filters images for specific cloud provider (i.e. Amazon AWS)",
"editor": "select",
"enum": [
"Amazon AWS",
"Oracle Cloud Platform",
"Joyent",
"Google Compute Engine",
"Microsoft Azure",
"Amazon GovCloud",
"Amazon AWS China",
"Any"
],
"example": "Amazon AWS"
},
"zone": {
"title": "Zone",
"description": "Zone ~ group of data-centers (i.e. us-east-1)",
"type": "string",
"editor": "textfield",
"prefill": "us-east-1",
"default": "us-east-1",
"example": "us-east-1"
},
"name": {
"title": "Name",
"description": "Ubuntu friendly name (i.e. focal)",
"type": "string",
"editor": "textfield",
"prefill": "focal",
"default": "focal",
"example": "focal"
},
"version": {
"title": "Version",
"description": "Ubuntu version (i.e. 20.04)",
"type": "string",
"editor": "textfield",
"prefill": "20.04",
"default": "20.04",
"example": "20.04"
},
"arch": {
"title": "Architecture",
"description": "Processor architecture (i.e. amd64)",
"type": "string",
"editor": "textfield",
"prefill": "amd64",
"default": "amd64",
"example": "amd64"
},
"instanceType": {
"title": "Instance type",
"description": "Instance type depending on cloud provider (i.e. hvm-ssd)",
"type": "string",
"editor": "textfield",
"prefill": "hvm-ssd",
"default": "hvm-ssd",
"example": "hvm-ssd"
},
"release": {
"title": "Release",
"description": "Ubuntu release (i.e. 20200729). Keep any to get latest",
"type": "string",
"editor": "textfield",
"prefill": "Any",
"default": "Any",
"example": "Any"
},
"id": {
"title": "ID",
"description": "Image ID. Keep any for most cases.",
"type": "string",
"editor": "textfield",
"prefill": "Any",
"default": "Any",
"example": "Any"
},
"numberOfResults": {
"title": "Number of results",
"description": "Number of images to be fetched. (sorted from latest to oldest)",
"type": "integer",
"default": 1,
"prefill": 1,
"example": 1
}
}
}