{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StatusOfExtensionsObject", "title": "StatusOfExtensionsObject", "type": "object", "required": [ "status" ], "properties": { "status": { "type": "string", "enum": [ "OK", "ERRORS" ], "description": "Status of the validated array of extensions.\n * `OK` - Indicates that all extensions were validated.\n * `ERRORS` - Indicates that not all extensions were validated.\n" }, "extensionStatus": { "type": "array", "items": { "$ref": "#/components/schemas/ExtensionStatusObject" }, "description": "Array of extensions statuses." } } }