Error when modeling XSD

0

From this XML code, I have the XSD block:

Code

<?xml version="1.0" encoding="UTF-8"?>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.example.org/arquivoValidador" 
    xmlns:tns="http://www.example.org/arquivoValidador" elementFormDefault="qualified">

      <xs:complexType name="teste">
        <xs:sequence>
            <xs:element type="xs:int" name="numeronfd"/>
            <xs:element type="xs:int" name="codseriedocumento"/>
            <xs:element type="xs:int" name="codnaturezaoperacao"/>
            <xs:element type="xs:byte" name="codigocidade"/>
            <xs:element type="xs:int" name="inscricaomunicipalemissor"/>
        </xs:sequence>
    </complexType>

</schema>

The elements do not appear:

Image:

    
asked by anonymous 24.04.2018 / 00:09

0 answers