jsonix-schema-compiler icon indicating copy to clipboard operation
jsonix-schema-compiler copied to clipboard

Compiles XML Schemas into XML<->JSON mappings for Jsonix.

Results 44 jsonix-schema-compiler issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

enhancement

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"...

question

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?

enhancement

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...