lib/swagger/defs/credentials.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"