jsonix-schema-compiler
jsonix-schema-compiler copied to clipboard
Compiles XML Schemas into XML<->JSON mappings for Jsonix.
Similar to jsonix [mapping styles](https://github.com/highsource/jsonix/wiki/Mapping-Styles) feature this change enables the use of a [Simplified Mapping Style](https://github.com/highsource/jsonix/wiki/Simplified-Mapping-Style) as an alternative to the [Standard Mapping Style](https://github.com/highsource/jsonix/wiki/Standard-Mapping-Style) for the generated Json Schemas.
I had to tweak the xsd file so that the MXDataTypes.xsd file would "include" the MXIntegrationMeta.xsd file because the parser could not handle two import elements with the same namespace.
After using the Maven plugin for generating a JSON-Schema from an XSD (which is included in a WSDL), I notice that the maximum length restrictions are not reflected in the...
I am brand new to using the schema compiler, and not very familiar with the xml schema notation. I ran the shiporder example, and got the expected results. I am...
Referring stackoverflow question: http://stackoverflow.com/questions/29256036/jsonix-get-restrictions-and-default-value-for-properties
We are unable to get maxLength and minLength properties in XSD while converting into JSON
Hi! I tried to generate a JSON schema from a sample XSD. All elements were generated successfully to json schema except one element from my XSD schema was generated improperly....
We have an particular xsd file that has an include to a Globals.xsd. Globals contains a lot of definitions including many that are not applicable to that xsd file. When...
Hi, I have an xsd that references another XSD thats contains the types for the main schema, will this allow me to generate a JSON schema for the main schema...
In a XSD-schema file, if xsd elements names include _ . - etc. they will be mapped to javaStyledPropertyNames: "person.name" would be mapped to: "personName" Conclusively if you want to...