{
    "openapi": "3.1.0",
    "info": {
        "title": "QA Demo REST API",
        "version": "0.0.1"
    },
    "servers": [
        {
            "url": "http://justapi.ru"
        }
    ],
    "paths": {
        "/testers": {
            "get": {
                "summary": "Get List of Test Engineers",
                "operationId": "Get_List_of_Test_Engineers_get",
                "responses": {
                    "200": {
                        "description": "Successful Response",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "type": "array",
                                    "title": "Testers"
                                }
                            }
                        }
                    }
                }
            }
        }
    },
    "components": {
        "securitySchemes": {
            "basicAuth": {
                "type": "http",
                "scheme": "basic"
            }
        }
    },
    "security": [
        {
            "basicAuth": []
        }
    ]
}