jsonix-schema-compiler
jsonix-schema-compiler copied to clipboard
Compiles XML Schemas into XML<->JSON mappings for Jsonix.
Please see the Input XSD and the Output JSON below. The "BackStub" is a choice between a single element("None") and a sequence("Period", "Calculation"). However, the generated JSON schema suggests the...
Hello, according to 6.1 bullet in [1] the $schema keyword is recommended to be included in the json schema as a root element. I could not observe this element in...
Example: ``` `` ``` Gives the following. Why is "type" an object and not just the value type: ``` `"mobileAppVer":{ "title":"mobileAppVer", "allOf":[ { "type":"object", "properties":{ "name":{ "$ref":"http://www.jsonix.org/jsonschemas/w3c/2001/XMLSchema.jsonschema#/definitions/QName" }, "value":{ "$ref":"http://www.jsonix.org/jsonschemas/w3c/2001/XMLSchema.jsonschema#/definitions/string"...
Continued from highsource/jsonix#13.
Would it be possible to take my own Java classes produced from jsonschema2pojo and produce JSON Schema from Jsonix schema compiler? My JSON doesn't correspond to an XSD, we convert...
Couldn't this output from the compiler: ``` "allOf":[ { "$ref":"http://www.jsonix.org/jsonschemas/w3c/2001/XMLSchema.jsonschema#/definitions/string" } ] ... ``` just as simply be written as: ``` "type":"string" ``` Same thing for boolean?
At least at DEBUG log-level also include the paths of the generated files in the output string.
Hi, I've got a schema with a trailing space in an element name, this is valid XSD, so when I test a round trip marshaling on it, it throws an...