{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PostValidateExtensionResponse", "title": "PostValidateExtensionResponse", "type": "object", "required": [ "status", "extensionStatus" ], "properties": { "status": { "type": "string", "enum": [ "OK", "ERRORS" ], "description": "OK , ERRORS\n * `OK` - Validated succesfully.\n * `ERRORS` - Validated with errors.\n" }, "extensionStatus": { "type": "array", "items": { "$ref": "#/components/schemas/extentionStatusObject" } } } }