Created
July 2, 2024 06:16
-
-
Save martin-mfg/cfa60c6f2af27dd7749ea9b1f3b21ab4 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.3 | |
info: | |
version: 1.0.0 | |
title: initialization demo | |
paths: | |
/: | |
get: | |
responses: | |
'200': | |
description: dummy | |
content: | |
application/json: | |
schema: | |
type: object | |
required: | |
- r1n0 | |
- r1n1 | |
- r1 | |
properties: | |
r0n0: | |
type: array | |
items: | |
type: string | |
nullable: false | |
r0n1: | |
type: array | |
items: | |
type: string | |
nullable: true | |
r1n0: | |
type: array | |
items: | |
type: string | |
nullable: false | |
r1n1: | |
type: array | |
items: | |
type: string | |
nullable: true | |
r0: | |
type: array | |
items: | |
type: string | |
r1: | |
type: array | |
items: | |
type: string |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment