-
Notifications
You must be signed in to change notification settings - Fork 9.3k
OAS 3.0: Parameter types are not displayed #3428
Copy link
Copy link
Closed
Description
Version: ft/oas3 branch, as of commit a1ce0e7
Parameter types (integer, string, etc.) are not displayed for OAS 3.0 specs:
They are displayed for 2.0 specs:

Sample spec:
openapi: 3.0.0
info:
version: 0.0.0
title: test
paths:
/{id}:
get:
parameters:
- in: path
name: id
required: true
schema:
type: integer
- in: query
name: foo
schema:
type: boolean
- in: header
name: X-Something
schema:
type: string
responses:
'200':
description: OK
Reactions are currently unavailable
