mirror of
https://github.com/LukeHagar/redocly-cli.git
synced 2025-12-06 04:21:09 +00:00
37 lines
762 B
YAML
37 lines
762 B
YAML
openapi: '3.0.0'
|
|
info:
|
|
version: v0
|
|
title: my_Api
|
|
description: my_api
|
|
contact:
|
|
name: my_api
|
|
license:
|
|
name: Proprietary
|
|
url: https://my_api.com
|
|
servers:
|
|
- url: https://my_api.com
|
|
|
|
paths:
|
|
/my_post:
|
|
post:
|
|
operationId: my_post
|
|
description: my_post
|
|
summary: my_post
|
|
requestBody:
|
|
required: true
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
additionalProperties: false
|
|
properties:
|
|
my_list:
|
|
type: array
|
|
uniqueItems: true
|
|
items:
|
|
type: string
|
|
example: test
|
|
responses:
|
|
'200':
|
|
description: My 200 response
|