{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/deleteImageResponseSuccessObject", "title": "deleteImageResponseSuccessObject", "type": "object", "required": [ "fileName", "result" ], "properties": { "fileName": { "type": "string", "example": "CompanyLogoBlue", "description": "The name of the image file." }, "result": { "type": "object", "required": [ "status" ], "properties": { "status": { "type": "number", "example": 200, "description": "The status of the deletion." } }, "description": "The result of the deletion." } } }