0
I have the following enumeration on XSD for a WSDL
<xsd:simpleType name="tipoDocumento">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="INICIAL"/>
<xsd:enumeration value="FINAL"/>
<xsd:enumeration value="JUSTIFICATIVA"/>
</xsd:restriction>
</xsd:simpleType>
I am converting the same to JSON
How I define the enumeration above in a JSON interface?
Very interesting thank you
– Marquezani