{
    "openapi": "3.0.0",
    "info": {
        "title": "API de repositórios",
        "contact": {
            "name": "Pixerama Labs",
            "email": "pixerama@pixerama.com.br"
        },
        "version": "1.0"
    },
    "paths": {
        "/": {
            "get": {
                "tags": [
                    "yourtag"
                ],
                "operationId": "/",
                "parameters": [
                    {
                        "name": "category",
                        "in": "path",
                        "description": "The category parameter in path",
                        "required": true,
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "criteria",
                        "in": "query",
                        "description": "Some optional other parameter",
                        "required": false,
                        "schema": {
                            "type": "string"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "Returns some sample category things",
                        "content": {
                            "application/json": {
                                "schema": {}
                            }
                        }
                    },
                    "400": {
                        "description": "Error: Bad request. When required parameters were not supplied."
                    }
                }
            }
        }
    }
}