yesamer opened a new issue, #665:
URL: https://github.com/apache/incubator-kie-issues/issues/665
`xml-parser-ts `it's not able to manage Complex Types with Simple Content,
please consider the following example:
**XML**
`<rawValue class="string">Above speed limit: 10km/h and 30 km/h</rawValue>`
**XSD**
```
<xsd:complexType name="rawValueType">
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute type="xsd:string" name="class" />
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
```
**Current generated type:**
```
export type SceSim__rawValueType = {
}
```
Fields are missing
**At Runtime:**
```
rawValue:
@_class: "string"
```
Only the attribute is correctly parsed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]