In this post, we explore a sample OpenAPI YAML file, which serves as a blueprint for creating RESTful web services within a Spring Boot application. The provided sample OpenAPI file is a valuable resource for developers seeking to streamline the process of designing and implementing RESTful APIs. By leveraging this YAML file, developers can efficiently generate the necessary RESTful endpoints and functionalities within their Spring Boot applications, fostering rapid development and enhanced interoperability.
Sample File Name : api-doc.yaml
{ "openapi": "3.0.1", "info": { "title": "OpenAPI definition", "version": "v0" }, "servers": [ { "url": "http://localhost:8080", "description": "Generated server url" } ], "paths": { "/employee/{id}": { "get": { "tags": [ "employee-controller" ], "operationId": "findById", "parameters": [ { "name": "id", "in": "path", "required": true, "schema": { "type": "integer", "format": "int32" } } ], "responses": { "200": { "description": "OK", "content": { "*/*": { "schema": { "$ref": "#/components/schemas/Employee" } } } } } } } }, "components": { "schemas": { "Employee": { "type": "object", "properties": { "id": { "type": "integer", "format": "int32" }, "name": { "type": "string" } } } } } }
Another Sample File Name : api-doc.yaml
{ "openapi": "3.0.1", "info": { "title": "OpenAPI definition", "version": "v0" }, "servers": [ { "url": "http://localhost:8080", "description": "Generated server url" } ], "paths": { "/employee/{id}": { "get": { "tags": [ "employee-controller" ], "operationId": "findById", "parameters": [ { "name": "id", "in": "path", "required": true, "schema": { "type": "integer", "format": "int32" } } ], "responses": { "200": { "description": "OK", "content": { "*/*": { "schema": { "$ref": "#/components/schemas/Employee" } } } } } }, "put": { "tags": [ "employee-controller" ], "operationId": "updateEmployee", "parameters": [ { "name": "id", "in": "path", "required": true, "schema": { "type": "integer", "format": "int32" } } ], "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/Employee" } } }, "required": true }, "responses": { "200": { "description": "OK", "content": { "*/*": { "schema": { "$ref": "#/components/schemas/Employee" } } } } } }, "post": { "tags": [ "employee-controller" ], "operationId": "addEmployee", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/Employee" } } }, "required": true }, "responses": { "200": { "description": "OK", "content": { "*/*": { "schema": { "$ref": "#/components/schemas/Employee" } } } } } } }, "/employee/": { "get": { "tags": [ "employee-controller" ], "operationId": "findEmployees", "responses": { "200": { "description": "OK", "content": { "*/*": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/Employee" } } } } } } } } }, "components": { "schemas": { "Employee": { "type": "object", "properties": { "id": { "type": "integer", "format": "int32" }, "name": { "type": "string" } } } } } }