forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-deviceupdate-import-manifest-5.0.json
204 lines (204 loc) · 6.09 KB
/
azure-deviceupdate-import-manifest-5.0.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://json.schemastore.org/azure-deviceupdate-import-manifest-5.0.json",
"definitions": {
"instructions": {
"type": "object",
"title": "Installation instructions",
"description": "Update installation instructions.",
"properties": {
"steps": {
"type": "array",
"title": "Installation steps",
"items": {
"anyOf": [
{
"$ref": "#/definitions/inlineStep"
},
{
"$ref": "#/definitions/referenceStep"
}
]
},
"minItems": 1,
"maxItems": 10
}
},
"additionalProperties": false,
"required": ["steps"]
},
"stepDescription": {
"type": "string",
"title": "Step description",
"description": "Optional instruction step description.",
"minLength": 1,
"maxLength": 64
},
"inlineStep": {
"type": "object",
"title": "Inline installation step",
"description": "Installation instruction step that performs code execution.",
"properties": {
"type": {
"$ref": "azure-deviceupdate-manifest-definitions-5.0.json#/definitions/inlineStepType"
},
"description": {
"$ref": "#/definitions/stepDescription"
},
"handler": {
"$ref": "azure-deviceupdate-manifest-definitions-5.0.json#/definitions/inlineStepHandler"
},
"files": {
"type": "array",
"title": "Step update files",
"description": "Names of update files that agent will pass to handler.",
"items": {
"$ref": "azure-deviceupdate-manifest-definitions-5.0.json#/definitions/filename"
},
"minItems": 1,
"maxItems": 10
},
"handlerProperties": {
"$ref": "azure-deviceupdate-manifest-definitions-5.0.json#/definitions/inlineStepHandlerProperties"
}
},
"additionalProperties": false,
"required": ["handler", "files"]
},
"referenceStep": {
"type": "object",
"title": "Reference installation step",
"description": "Installation instruction step that installs another update.",
"properties": {
"type": {
"$ref": "azure-deviceupdate-manifest-definitions-5.0.json#/definitions/referenceStepType"
},
"description": {
"$ref": "#/definitions/stepDescription"
},
"updateId": {
"$ref": "azure-deviceupdate-manifest-definitions-5.0.json#/definitions/updateId"
}
},
"additionalProperties": false,
"required": ["type", "updateId"]
}
},
"description": "Schema for import manifest used for importing an update to Device Update for IoT Hub.",
"examples": [
{
"updateId": {
"provider": "Microsoft",
"name": "Toaster",
"version": "1.0"
},
"description": "Example update",
"compatibility": [
{
"deviceManufacturer": "Microsoft",
"deviceModel": "Toaster"
}
],
"instructions": {
"steps": [
{
"description": "pre-install script",
"handler": "microsoft/script:1",
"handlerProperties": {
"arguments": "--pre-install"
},
"files": ["configure.sh"]
},
{
"type": "reference",
"updateId": {
"provider": "Microsoft",
"name": "Sensor",
"version": "1.0"
}
}
]
},
"files": [
{
"filename": "configure.sh",
"sizeInBytes": 718,
"hashes": {
"sha256": "mcB5SexMU4JOOzqmlJqKbue9qMskWY3EI/iVjJxCtAs="
},
"relatedFiles": [
{
"filename": "in1_in2_deltaupdate.dat",
"sizeInBytes": 102910752,
"hashes": {
"sha256": "2MIldV8LkdKenjJasgTHuYi+apgtNQ9FeL2xsV3ikHY="
},
"properties": {
"microsoft.sourceFileHashAlgorithm": "sha256",
"microsoft.sourceFileHash": "YmFYwnEUddq2nZsBAn5v7gCRKdHx+TUntMz5tLwU+24="
}
}
],
"downloadHandler": {
"id": "microsoft/delta:1"
}
}
],
"manifestVersion": "5.0",
"createdDateTime": "2020-10-02T22:18:04.9446744Z"
}
],
"properties": {
"$schema": {
"type": "string",
"description": "JSON schema reference."
},
"updateId": {
"$ref": "azure-deviceupdate-manifest-definitions-5.0.json#/definitions/updateId"
},
"description": {
"type": "string",
"title": "Update description",
"description": "Optional update description.",
"minLength": 1,
"maxLength": 512
},
"compatibility": {
"$ref": "azure-deviceupdate-manifest-definitions-5.0.json#/definitions/compatibility"
},
"instructions": {
"$ref": "#/definitions/instructions"
},
"files": {
"type": "array",
"title": "Update files",
"description": "List of update payload files. Sum of all file sizes may not exceed 2 GB. May be empty or null if all instruction steps are reference steps.",
"items": {
"$ref": "azure-deviceupdate-manifest-definitions-5.0.json#/definitions/file"
},
"minItems": 0,
"maxItems": 10
},
"manifestVersion": {
"type": "string",
"title": "Import manifest schema version",
"description": "Import manifest schema version. Must be 5.0.",
"const": "5.0"
},
"createdDateTime": {
"type": "string",
"title": "Created date & time",
"description": "Date & time import manifest was created in ISO 8601 format.",
"examples": ["2020-10-02T22:18:04.9446744Z"]
}
},
"required": [
"updateId",
"compatibility",
"instructions",
"manifestVersion",
"createdDateTime"
],
"title": "JSON Schema for Azure Device Update for IoT Hub 'Import Manifest' version 5.0",
"type": "object"
}