redocly-vs-code
redocly-vs-code copied to clipboard
Type null in OpenAPI 3.0
What happened?
Suggest null in schema->type for OpenApi 3.0
What should have happened instead? Null should not displayed in openapi 3.0 definition
Minimal reproducible OpenAPI snippet
openapi: 3.0.0
servers:
- url: //petstore.swagger.io/v2
description: Default server
info:
description: Test
version: 1.0.0
title: Swagger Petstore
termsOfService: 'http://swagger.io/terms/'
contact:
name: API Support
email: [email protected]
url: https://github.com/Redocly/redoc
license:
name: Apache 2.0
url: 'http://www.apache.org/licenses/LICENSE-2.0.html'
paths:
/pet:
post:
tags:
- pet
summary: Add a new pet to the store
description: Add new pet to the store inventory.
operationId: addPet
responses:
'200':
description: wrong type suggestions
content:
application/json:
schema:
type: null <--here is problem
Screenshots