{"openapi":"3.0.1","info":{"title":"Spring Boot Demo","description":"Spring Boot Sample Application","license":{"name":"License","url":"https://github.com/RafhaanShah/Spring-Boot-Camp"},"version":"0.0.6-SNAPSHOT"},"externalDocs":{"description":"Spring Boot Demo Documentation","url":"https://github.com/RafhaanShah/Spring-Boot-Camp"},"servers":[{"url":"https://spring-boot-camp.herokuapp.com"}],"tags":[{"name":"greeting","description":"Returns a greeting"}],"paths":{"/hello":{"get":{"tags":["greeting"],"summary":"Says 'Hello'","operationId":"getHello","parameters":[{"name":"name","in":"query","required":false,"schema":{"type":"string","default":"World"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/Greeting"}}}}}}}},"components":{"schemas":{"Greeting":{"type":"object","properties":{"id":{"type":"integer","format":"int64"},"content":{"type":"string"}}}}}}