You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
openapi: 3.0.1info:
title: My titledescription: API under testversion: 1.0.7servers:
- url: http://localhost:9999/apipaths:
/foo/bar:
get:
responses:
200:
description: it works!content:
application/json:
schema:
title: inline_response_200type: objectproperties:
name:
type: string
The line for the extension x-test: TEST ME under paths: is missing.
I think that other maps with extensions might be concerned as well.
Expected output:
openapi: 3.0.1info:
title: Test extensionsdescription: API under testversion: 1.0.7paths:
/foo/bar:
get:
responses:
200:
description: it works!content:
application/json:
schema:
title: inline_response_200type: objectproperties:
name:
type: stringx-test: TEST ME
When I run this code:
I get this output:
The line for the extension
x-test: TEST ME
underpaths:
is missing.I think that other maps with extensions might be concerned as well.
Expected output:
Which is correctly parsed by Swagger-Parser:
The text was updated successfully, but these errors were encountered: