forked from naddeoa/micronaut-swagger-yml-bug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema_2.1.0.yml
49 lines (49 loc) · 1.08 KB
/
schema_2.1.0.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
openapi: 3.0.1
info:
title: repro
description: desc
version: "0.1"
paths:
/v1/repro/repro:
post:
tags:
- 'ReproController '
summary: summary
description: desc
operationId: id
parameters: []
responses:
default:
description: id default response
content:
application/json:
schema:
$ref: '#/components/schemas/ReproResponse'
/v1/repro/upload/{id}:
post:
tags:
- 'ReproController '
summary: summary
description: desc
operationId: id2
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
"200":
description: '''OK'' if the operation succeeded'
"404":
description: Invalid organization ID or model ID
"400":
description: Payload is invalid
components:
schemas:
ReproResponse:
type: object
properties:
id:
type: string
description: Respond payload for an upload request