{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-events/refs/heads/main/json-schema/iot-events-analysis-results-schema.json", "title": "AnalysisResults", "description": "AnalysisResults schema", "type": "array", "items": { "type": "object", "properties": { "type": { "allOf": [ { "$ref": "#/components/schemas/AnalysisType" }, { "description": "

The type of the analysis result. Analyses fall into the following types based on the validators used to generate the analysis result:

For more information, see Running detector model analyses in the AWS IoT Events Developer Guide.

" } ] }, "level": { "allOf": [ { "$ref": "#/components/schemas/AnalysisResultLevel" }, { "description": "

The severity level of the analysis result. Based on the severity level, analysis results fall into three general categories:

" } ] }, "message": { "allOf": [ { "$ref": "#/components/schemas/AnalysisMessage" }, { "description": "Contains additional information about the analysis result." } ] }, "locations": { "allOf": [ { "$ref": "#/components/schemas/AnalysisResultLocations" }, { "description": "Contains one or more locations that you can use to locate the fields in your detector model that the analysis result references." } ] } }, "description": "Contains the result of the analysis." } }