{ "$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-rate-increase-criteria-schema.json", "title": "IoTJobRateIncreaseCriteria", "description": "Contains information about criteria to meet before a job increases its rollout rate. Specify either numberOfNotifiedThings or numberOfSucceededThings.", "type": "object", "properties": { "numberOfNotifiedThings": { "allOf": [ { "$ref": "#/components/schemas/IoTJobNumberOfThings" }, { "description": "The number of devices to receive the job notification before the rollout rate increases." } ] }, "numberOfSucceededThings": { "allOf": [ { "$ref": "#/components/schemas/IoTJobNumberOfThings" }, { "description": "The number of devices to successfully run the configuration job before the rollout rate increases." } ] } } }