JSON Encoding
Created on June 21, 2022
On this Page :
JSON Encoding details that will be used when EncodingType=”JSON”.
JSONEncoding Properties
Property | Type | Required |
---|---|---|
ReportFormat | string | Required |
ReportTimestamp | string | Required |
ReportFormat
JSON Format to be used for JSON encoding in the generated report.
NOTE: Only “NameValuePair” is currently supported in Telemetry 2.0.
ReportFormat
- is required
- Type:
string
ReportFormat Constraints
enum: the value of this property must be equal to one of the following values:
Value | Explanation |
---|---|
"NameValuePair" | Reports are formatted with each parameter of the data model encoded as a corresponding array of JSON Objects with the parameters specified as name/value pairs. |
ReportTimestamp
Timestamp format to be used in generated report.
NOTE: Only “None” is currently supported in Telemetry 2.0.
ReportTimestamp
- is required
- Type:
string
ReportTimestamp Constraints
enum: the value of this property must be equal to one of the following values:
Value | Explanation |
---|---|
"None" | No Timestamp “CollectionTime” will be inserted into the JSON. |
Go To Top