Created
September 23, 2021 21:52
-
-
Save mathis-m/e36a96df77e045a2e79810a219692b0b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.0.0 | |
info: | |
title: asd | |
version: "123" | |
paths: | |
/: | |
post: | |
requestBody: | |
content: | |
application/json: | |
schema: | |
type: object | |
properties: | |
data: | |
type: object | |
properties: | |
myProperty: | |
type: number | |
format: double | |
example: 0.0 | |
responses: | |
"200": | |
description: OK! | |
content: | |
application/json: | |
schema: | |
{} | |
examples: | |
jsonObject: | |
summary: A sample object |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment