{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-management/refs/heads/main/json-structure/iot-device-management-retry-criteria-list-structure.json", "name": "RetryCriteriaList", "description": "RetryCriteriaList schema", "type": "array", "items": { "type": "object", "required": [ "failureType", "numberOfRetries" ], "properties": { "failureType": { "allOf": [ { "$ref": "#/components/schemas/RetryableFailureType" }, { "description": "The type of job execution failures that can initiate a job retry." } ] }, "numberOfRetries": { "allOf": [ { "$ref": "#/components/schemas/NumberOfRetries" }, { "description": "The number of retries allowed for a failure type for the job." } ] } }, "description": "The criteria that determines how many retries are allowed for each failure type for a job." } }