eclipse / microprofile-open-api

Microprofile open api
Apache License 2.0
131 stars 82 forks source link

[OAS 3.1.0] Add summary to Info #435

Closed jmini closed 4 months ago

jmini commented 4 years ago

In order to support OpenAPI 3.1.0 (see #333) we need to add summary to the info object

Reference: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#infoObject

Example

openapi: 3.1.0
info:
  title: Example Specification
  summary: This is an example specification
  version: "1.0"
servers:
- url: http://localhost:8080/
paths:
  /ping:
    get:
      operationId: ping
      responses:
        200:
          description: OK

To be added:

benjamin-confino commented 4 months ago

Comment to say I'm working on this