We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5079dd commit 4fdbb37Copy full SHA for 4fdbb37
1 file changed
src/main/resources/wfc/schemas/auth.yaml
@@ -125,4 +125,17 @@ $def:
125
description: "Payload with username and password information. \
126
It will be automatically formatted in a proper payload based on content type."
127
type: object
128
- ### TODO
+ properties:
129
+ username:
130
+ description: "The id of the user."
131
+ type: string
132
+ password:
133
+ description: "The password of the user, in plain-text. This must NOT be hashed."
134
135
+ usernameField:
136
+ description: "The name of the field in the body payload containing the username."
137
138
+ passwordField:
139
+ description: "The name of the field in the body payload containing the password"
140
141
+ required: ["username","usernameField","password","passwordField"]
0 commit comments