Skip to content

Commit

Permalink
Merge pull request #44 from mikeacjones/patch-1
Browse files Browse the repository at this point in the history
Corrected OAS spec for _debug
  • Loading branch information
erev0s committed Oct 19, 2023
2 parents b8b31cd + 0dbdd47 commit d9fed08
Showing 1 changed file with 20 additions and 17 deletions.
37 changes: 20 additions & 17 deletions openapi_specs/openapi3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,22 +89,25 @@ paths:
content:
application/json:
schema:
type: array
items:
type: object
properties:
admin:
type: boolean
example: false
email:
type: string
example: '[email protected]'
password:
type: string
example: 'pass1'
username:
type: string
example: 'name1'
type: object
properties:
users:
type: array
items:
type: object
properties:
admin:
type: boolean
example: false
email:
type: string
example: '[email protected]'
password:
type: string
example: 'pass1'
username:
type: string
example: 'name1'
/users/v1/register:
post:
tags:
Expand Down Expand Up @@ -579,4 +582,4 @@ paths:
example: 'fail'
message:
type: string
example: 'Book not found!'
example: 'Book not found!'

0 comments on commit d9fed08

Please sign in to comment.