-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathopenapi.yaml
57 lines (57 loc) · 1.49 KB
/
openapi.yaml
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
50
51
52
53
54
55
56
57
---
openapi: 3.0.1
info:
title: fuzzer testers
description: test fuzzer
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0
version: 1.0.0
x-zally-ignore: ['105'] # No oauth for this API
servers:
- url: /
paths:
/positive/plains/{register}:
get:
summary: Use the testers
description: Get the plain positive test
operationId: positive_plain
parameters:
- $ref: "#/components/parameters/register_id"
responses:
'200':
description: Successful response.
'400':
description: Bad request.
'404':
description: Not found.
x-codegen-request-body-name: body
x-openapi-router-controller: openapi_server.controllers.register_controller
/positive/plains/:
get:
summary: Use the testers
description: Get the plain positive test
operationId: positive_plain1
parameters:
- $ref: "#/components/parameters/register_id"
responses:
'200':
description: Successful response.
'400':
description: Bad request.
'404':
description: Not found.
x-codegen-request-body-name: body
x-openapi-router-controller: openapi_server.controllers.register_controller
components:
parameters:
register_id:
style: simple
explode: false
name: register
schema:
type: integer
minimum: 1
maximum: 9223372036854775807
in: path
required: true