Como tirar namespace do XML usando XSD

olá,

estou usando XSD e não consigo tirar namespace da tag


EnviNFeDocument enviNfeDoc = EnviNFeDocument.Factory.newInstance();
			
TEnviNFe tEnviNFe = enviNfeDoc.addNewEnviNFe();
		
tEnviNFe.setVersao("1.01");

como gera


<?xml version="1.0" encoding="UTF-8" ?> 
 <nfe:enviNFe versao="1.01" xmlns:nfe="http://www.portalfiscal.inf.br/nfe">
  <nfe:idLote>114</nfe:idLote> 
 <nfe:NFe>
 <nfe:infNFe Id="NFe35080460605664004365550010041739161225443433" versao="1.10">

e o correto é :

<?xml version="1.0" encoding="UTF-8" ?> 
 <enviNFe versao="1.01" xmlns:nfe="http://www.portalfiscal.inf.br/nfe">
  <idLote>114</idLote> 
 <NFe>
 <infNFe Id="NFe35080460605664004365550010041739161225443433" versao="1.10">


--arq.xsd

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.portalfiscal.inf.br/nfe" targetNamespace="http://www.portalfiscal.inf.br/nfe" elementFormDefault="qualified" attributeFormDefault="unqualified">
	<xs:import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="xmldsig-core-schema_v1.01.xsd"/>
	<xs:include schemaLocation="tiposBasico_v1.02.xsd"/>
	<xs:complexType name="TNFe">

se alguém puder me ajudar agradeceria…

abs