{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/configuration-status", "title": "configuration-status", "type": "object", "properties": { "status": { "type": "string" }, "progress": { "type": "array", "items": { "type": "object", "properties": { "status": { "type": "string" }, "key": { "type": "string" } }, "required": [ "status", "key" ] } } } }