/
Coderdev
/
web-nodejs-labs
Обзор
Документация
Войти
/
Coderdev
/
web-nodejs-labs
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
backend/src/schemas/lab8/task1.schema.js
13 строк
438 B
Coderdev
1
13 апр 2026, 21:35
13 апр 2026, 21:35
d23c89a
Код
Авторство
О чём код?
export const task1QuerySchema = { type: 'object', properties: { lastname: { type: 'string', minLength: 1 }, firstname: { type: 'string', minLength: 1 }, surname: { type: 'string', minLength: 1 }, gender: { type: 'string' }, faculty: { type: 'string', minLength: 1 }, project: { type: 'string' }, projectName: { type: 'string' } }, required: ['lastname', 'firstname', 'surname', 'gender', 'faculty'] };