Variable $UsuarioFindOneResultDtoConst

$UsuarioFindOneResultDto: {
    properties: {
        dateCreated: {
            description: "Data de Criação do Registro.";
            format: "date-time";
            nullable: false;
            type: "string";
        };
        dateDeleted: {
            description: "Data de Exclusão do Registro.";
            format: "date-time";
            nullable: true;
            type: "string";
        };
        dateUpdated: {
            description: "Data de Atualização do Registro.";
            format: "date-time";
            nullable: false;
            type: "string";
        };
        email: {
            description: "E-mail do usuário.";
            format: "e-mail";
            nullable: false;
            type: "string";
        };
        id: {
            description: "ID do Registro.";
            format: "uuid";
            nullable: false;
            type: "string";
        };
        imagemCapa: {
            allOf: readonly [{
                $ref: "#/components/schemas/ImagemDto";
            }];
            description: "Imagem de capa";
            nullable: true;
        };
        imagemPerfil: {
            allOf: readonly [{
                $ref: "#/components/schemas/ImagemDto";
            }];
            description: "Imagem de perfil";
            nullable: true;
        };
        isSuperUser: {
            description: "Indentifica é um super usuário.";
            nullable: false;
            type: "boolean";
        };
        matriculaSiape: {
            description: "Matrícula Siape do usuário.";
            nullable: false;
            type: "string";
        };
        nome: {
            description: "Nome do usuário.";
            nullable: false;
            type: "string";
        };
    };
    required: readonly ["nome", "matriculaSiape", "email", "isSuperUser", "imagemCapa", "imagemPerfil", "id", "dateCreated", "dateUpdated", "dateDeleted"];
    type: "object";
} = ...