Variable $UsuarioInputUpdateViewConst
$UsuarioInputUpdateView: {
properties: {
email: {
description: "E-mail do usuário.";
format: "email";
nullable: true;
type: "string";
};
matriculaSiape: {
description: "Matrícula SIAPE do usuário.";
minLength: 1;
nullable: true;
type: "string";
};
nome: {
description: "Nome do usuário.";
minLength: 1;
nullable: true;
type: "string";
};
};
type: "object";
} = ...