I have the following enumeration in 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'm converting the same to JSON
How do I define the above enumeration on a JSON interface?