{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-greengrass/refs/heads/main/json-schema/iot-greengrass-io-t-job-timeout-config-schema.json", "title": "IoTJobTimeoutConfig", "description": "Contains information about the timeout configuration for a job.", "type": "object", "properties": { "inProgressTimeoutInMinutes": { "allOf": [ { "$ref": "#/components/schemas/IoTJobInProgressTimeoutInMinutes" }, { "description": "

The amount of time, in minutes, that devices have to complete the job. The timer starts when the job status is set to IN_PROGRESS. If the job status doesn't change to a terminal state before the time expires, then the job status is set to TIMED_OUT.

The timeout interval must be between 1 minute and 7 days (10080 minutes).

" } ] } } }