Skip to content

Instantly share code, notes, and snippets.

@martin-mfg
Created July 2, 2024 06:16
Show Gist options
  • Save martin-mfg/cfa60c6f2af27dd7749ea9b1f3b21ab4 to your computer and use it in GitHub Desktop.
Save martin-mfg/cfa60c6f2af27dd7749ea9b1f3b21ab4 to your computer and use it in GitHub Desktop.
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