Alexey Valikov

Results 217 comments of Alexey Valikov

Because you have an unbounded sequence with two elements. This results in a heterogeneous collection which may contain items of both elements. This is the only way to adequately represent...

Hi, not at the moment. I was thinking adding an option to produce different module styles - CJS, AMD, "pure" globals. This might be placed there. Why do you need...

I'll add the feature to produce different module formats and syntaxes in one of the next versions. As for your use case, I'd really advise to use [SystemJS](https://github.com/systemjs/systemjs). SystemJS can...

In principle, yes, but I'd prefer referencing an XML Schema type. There are also ints and integers and they have to be used form XMLSchema.jsonschema as they have constraints imposed...

Yes, makes sense. But I won't leave it to the user.

You're not getting any output as there's nothing to generate. Your schema does not declare any complex types. Try the following schema: ```xml ``` You should get `org_w3_xml__1998_namespace.jsonschema` and `org_w3_xml__1998_namespace.js`.

You'll need to use bindings to customize code generation. See this one for XLink: https://github.com/highsource/w3c-schemas/blob/master/xlink/1999/src/main/resources/xlink-v_1_0.xjb For `typesafeEnumMaxMembers` see: https://stackoverflow.com/questions/12779046/create-java-classes-with-jaxb If you need support, consider sending me a PR with your...

No, you're not doing anything wrong. It's just a missing feature. The whole JSON Schema generation thing is still in early stage, there are a number of things missing. Like...

I'd love to do this, but it's quite hard. Jsonix Schema Compiler uses the XJC, "XML Schema to Java Compiler" under the hood. And that one is interested in producing...

Hi Mark, thanks for the pointers. `choiceContentProperty` is really an option. By the way, XJC uses XSOM, not Xerces XSModel for XML Schema model, but it's similar. It is accessible...