-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpersistencyMetadataFormat.json
106 lines (106 loc) · 3.79 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
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
{
"$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": {
"anyOf": [
{
"type": "object",
"description": "Legacy payload metadata for Telemetry. This is only produced by older versions.",
"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"
},
"s3UploadMetadata": {
"type": "object",
"additionalProperties": false,
"properties": {
"bucketName": {
"type": "string",
"description": "S3 bucket name set in campaign"
},
"bucketOwner": {
"type": "string",
"description": "Account ID of the bucket owner"
},
"region": {
"type": "string",
"description": "Region of S3 bucket set in campaign"
},
"uploadID": {
"type": "string",
"description": "Upload ID for multipart upload"
},
"partNumber": {
"type": "number",
"description": "ID of multipart for multipart upload"
}
},
"required": ["bucketName", "region"]
}
},
"required": ["filename", "payloadSize", "compressionRequired"]
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"description": "Specifies the type of this payload",
"enum": ["Telemetry"]
},
"payload": {
"anyOf": [
{
"type": "object",
"description": "Payload metadata for Telemetry data",
"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"]
}