mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 10:54:28 +00:00
32 lines
827 B
JSON
32 lines
827 B
JSON
|
|
{
|
|
"generate": [
|
|
{
|
|
"title": "Generate password",
|
|
"description": "Generate a strong password",
|
|
"run_check": false,
|
|
"request": {
|
|
"length": 16
|
|
},
|
|
"response": {
|
|
"password": "jSUHz74x8qW#aXRe"
|
|
}
|
|
},
|
|
{
|
|
"title": "Generate password without special characters",
|
|
"description": "Generate a password without special characters",
|
|
"run_check": true,
|
|
"request": {
|
|
"length": 16,
|
|
"lowercase": true,
|
|
"numbers": true,
|
|
"special": false,
|
|
"uppercase": true
|
|
},
|
|
"response": {
|
|
"password": "Gia6II0TQePjkql1"
|
|
}
|
|
}
|
|
]
|
|
}
|