mirror of https://github.com/vernonkeenan/lib
13 lines
241 B
YAML
13 lines
241 B
YAML
|
Credentials:
|
||
|
type: object
|
||
|
required: [email, password]
|
||
|
properties:
|
||
|
email:
|
||
|
type: string
|
||
|
format: email
|
||
|
example: user@example.com
|
||
|
password:
|
||
|
type: string
|
||
|
minLength: 12
|
||
|
example: "p@55w0rd-example"
|