Created
September 8, 2017 03:23
-
-
Save owenconti/973ba7ac0eda7e82e6ad78b7e99cb080 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: 0.0.0 | |
title: test | |
paths: {} | |
components: | |
schemas: | |
# Item type is NOT displayed | |
ArrayOfStrOrInt: | |
type: array | |
items: | |
- $ref: '#/components/schemas/Pet' | |
Pet: | |
type: object | |
properties: | |
name: | |
type: string | |
required: | |
- name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment