-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpersistencyMetadataFormat.json
39 lines (39 loc) · 1.23 KB
/
persistencyMetadataFormat.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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://aws-iot-automotive.com/edgeConfiguration",
"type": "object",
"additionalProperties": false,
"title": "IoTFleetWise Persistency Metadata",
"description": "The persistency metadata schema. Payloads are stored in separate files",
"properties": {
"version": {
"type": "string",
"description": "Schema Version"
},
"files": {
"type": "array",
"additionalProperties": false,
"description": "Persisted payload filenames with associated metadata",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"filename": {
"type": "string",
"description": "Payload filename"
},
"payloadSize": {
"type": "number",
"description": "Payload size is used to validate that payload was persisted completely"
},
"compressionRequired": {
"type": "boolean",
"description": "Specifies if payload compression was required by campaign"
}
},
"required": ["filename", "payloadSize", "compressionRequired"]
}
}
},
"required": ["version", "files"]
}