Last active
April 5, 2021 13:54
-
-
Save mathis-m/fcd7022b7f7db2e14112a87ab7c3b637 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: | |
| version: "{version}" | |
| title: Sample API with anyOf and oneOf | |
| paths: | |
| /test: | |
| get: | |
| parameters: | |
| - in: query | |
| name: afterDate | |
| schema: | |
| type: string | |
| format: date | |
| example: "2020-10-15" | |
| - in: query | |
| name: afterDate2 | |
| schema: | |
| type: string | |
| format: date-time | |
| example: "2021-01-01T15:53:09.703Z" | |
| responses: | |
| "200": | |
| description: "" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment