{"id":18011968,"url":"https://github.com/lwydyby/vertx-openapi","last_synced_at":"2025-04-04T13:44:19.436Z","repository":{"id":44221200,"uuid":"228749159","full_name":"lwydyby/vertx-openapi","owner":"lwydyby","description":"Generate openapi 3.0 documentation based on annotations","archived":false,"fork":false,"pushed_at":"2022-02-11T00:26:46.000Z","size":21,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-09T23:29:19.631Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lwydyby.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-12-18T03:21:25.000Z","updated_at":"2019-12-19T09:37:17.000Z","dependencies_parsed_at":"2022-09-03T13:00:40.720Z","dependency_job_id":null,"html_url":"https://github.com/lwydyby/vertx-openapi","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lwydyby%2Fvertx-openapi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lwydyby%2Fvertx-openapi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lwydyby%2Fvertx-openapi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lwydyby%2Fvertx-openapi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lwydyby","download_url":"https://codeload.github.com/lwydyby/vertx-openapi/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247189521,"owners_count":20898691,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-30T03:13:56.594Z","updated_at":"2025-04-04T13:44:19.413Z","avatar_url":"https://github.com/lwydyby.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vertx-openapi\nGenerate openapi 3.0 documentation based on annotations\n\n## example\n\n````java\npackage cn.lwydyby.openapi.example;\n\n\nimport cn.lwydyby.openapi.annotation.VertxHandler;\nimport cn.lwydyby.openapi.annotation.VertxPath;\nimport io.swagger.v3.oas.annotations.Operation;\nimport io.swagger.v3.oas.annotations.Parameter;\nimport io.swagger.v3.oas.annotations.enums.ParameterIn;\nimport io.swagger.v3.oas.annotations.headers.Header;\nimport io.swagger.v3.oas.annotations.media.Schema;\nimport io.swagger.v3.oas.annotations.responses.ApiResponse;\nimport io.vertx.ext.web.RoutingContext;\n\n@VertxHandler\npublic interface ServerHandler {\n\n    @Operation(summary = \"Creates a new upload unit-of-work.\", method = \"POST\",\n            parameters = {@Parameter(name = \"Upload-Length\", in = ParameterIn.HEADER, required = true),\n                    @Parameter(name = \"Upload-Concat\", in = ParameterIn.HEADER, schema = @Schema(type = \"string\")),\n                    @Parameter(name = \"Upload-Metadata\", in = ParameterIn.HEADER, schema = @Schema(type = \"string\"))},\n            responses = {\n                    @ApiResponse(responseCode = \"413\", description = \"Upload size too large.\"),\n                    @ApiResponse(responseCode = \"400\", description = \"Bad Request.\"),\n                    @ApiResponse(responseCode = \"201\", description = \"Upload unit of work Created.\",\n                            headers = {@Header(name = \"Location\", description = \"The uri of the created upload unit of work.\", required = true)})})\n    @VertxPath(path = \"/servers\")\n    void testHandler(RoutingContext context);\n}\n\n````\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flwydyby%2Fvertx-openapi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flwydyby%2Fvertx-openapi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flwydyby%2Fvertx-openapi/lists"}