-
Notifications
You must be signed in to change notification settings - Fork 2
/
api.yaml
69 lines (65 loc) · 1.61 KB
/
api.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
58
59
60
61
62
63
64
65
66
67
68
69
swagger: '2.0'
info:
title: Tank Validator
version: "0.3.0"
description: Validates tank configs
basePath: /
paths:
/config/validate:
post:
operationId: api.validate_config
# summary: returns list of validation errors
consumes:
- multipart-form/file
- multipart/form-data
parameters:
- name: config
in: formData
type: file
required: true
- name: fmt
in: query
required: true
type: string
enum:
- ini
- yaml
responses:
'200':
description: validation info
schema:
type: object
properties:
config:
type: object
description: resulting config (accounting local tank configuration)
errors:
type: array
items:
type: object
/config/validate.json:
post:
operationId: api.validate_config_json
# summary: returns list of validation errors
# consumes: ""
parameters:
- name: config
in: body
required: true
schema:
type: object
consumes:
- application/json
responses:
'200':
description: validation info
schema:
type: object
properties:
config:
type: object
description: resulting config (accounting local tank configuration)
errors:
type: array
items:
type: object