Last active
January 7, 2021 23:11
-
-
Save mathis-m/56c46511a9f398161925b41c718634bf 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: 2021-01-07 | |
- in: query | |
name: afterDateTime | |
schema: | |
type: string | |
format: date-time | |
example: 2021-01-07T12:00:00.00Z | |
responses: | |
"200": | |
description: "" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment