Variable $UsuarioInputCreateViewConst
$UsuarioInputCreateView: {
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";
};
};
required: readonly ["nome", "matriculaSiape", "email"];
type: "object";
} = ...
Type declaration
Readonly
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";
};
}
Readonly
required: readonly ["nome", "matriculaSiape", "email"]
Readonly
type: "object"