Skip to content

Commit 0a5555d

Browse files
authored
Merge pull request #49 from davidbolvansky/patch-1
Fixed OAS specification to match real implementation
2 parents 2c504db + acd354d commit 0a5555d

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

openapi_specs/openapi3.yml

+13-10
Original file line numberDiff line numberDiff line change
@@ -66,16 +66,19 @@ paths:
6666
content:
6767
application/json:
6868
schema:
69-
type: array
70-
items:
71-
type: object
72-
properties:
73-
email:
74-
type: string
75-
example: '[email protected]'
76-
username:
77-
type: string
78-
example: 'name1'
69+
type: object
70+
properties:
71+
users:
72+
type: array
73+
items:
74+
type: object
75+
properties:
76+
email:
77+
type: string
78+
example: '[email protected]'
79+
username:
80+
type: string
81+
example: 'name1'
7982
/users/v1/_debug:
8083
get:
8184
tags:

0 commit comments

Comments
 (0)