Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[OAS 3.1.0] Add summary to Info #435

Closed
jmini opened this issue Jul 2, 2020 · 1 comment · Fixed by #603
Closed

[OAS 3.1.0] Add summary to Info #435

jmini opened this issue Jul 2, 2020 · 1 comment · Fixed by #603
Assignees
Labels
OAS 3.1.0 All issues related to OpenAPI version 3.1.0 support

Comments

@jmini
Copy link
Contributor

jmini commented Jul 2, 2020

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
Copy link
Contributor

benjamin-confino commented Apr 30, 2024

Comment to say I'm working on this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
OAS 3.1.0 All issues related to OpenAPI version 3.1.0 support
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants