-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathswagger.yaml
More file actions
48 lines (48 loc) · 1.01 KB
/
swagger.yaml
File metadata and controls
48 lines (48 loc) · 1.01 KB
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
openapi: 3.0.0
paths:
/:
post:
operationId: AppController_solveRiddle
parameters: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/SolveRiddleDto'
responses:
'200':
description: ''
info:
title: WaterJugRiddle API
description: An API for the WaterJugRiddle problem
version: '1.0'
contact: {}
tags:
- name: WaterJuggleRiddle
description: ''
servers: []
components:
schemas:
SolveRiddleDto:
type: object
properties:
x:
type: integer
description: The capacity of the first jug
minimum: 0
example: 100
'y':
type: integer
description: The capacity of the second jug
minimum: 0
example: 2
z:
type: integer
description: The amount to measure
minimum: 1
example: 96
required:
- x
- 'y'
- z