-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generate oneOf for xsd:choice #49
Comments
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 min/maxoccurs #40, default values #39 or enums #38. However the problem with |
Thanks for the prompt reply! I appreciate the warning. And in the meantime, I can add the oneOf's manually. Maybe someone more technically-inclined than me will be tempted to contribute an enhancement... |
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 classes with properties, there's no notion of "choice" there, you get a class with properties for complex types even if it is not So this would be quite hard to implement. |
hi Alexey, I work with pdesmarets and he asked me to have a look at this. I see the problem with xjc you were talking about: xjc only needs to generate a binding and some of the metadata in the schema is lost. <?xml version="1.0" encoding="UTF-8"?>
<bindings xmlns="http://java.sun.com/xml/ns/jaxb"
version="2.1">
<globalBindings choiceContentProperty="true" />
</bindings> Doing this now generates the following. "PostalCodeMunicipalityComplexType":{
"type":"object",
"title":"PostalCodeMunicipalityComplexType",
"properties":{
"structuredPostalCodeMunicipalityOrUnstructuredPostalCodeMunicipality":{
"title":"structuredPostalCodeMunicipalityOrUnstructuredPostalCodeMunicipality",
"allOf":[
{
"anyOf":[
{
"anyOf":[
{
"$ref":"#/definitions/StructuredPostalCodeMunicipalityComplexType"
}
],
"elementName":{
"localPart":"StructuredPostalCodeMunicipality",
"namespaceURI":"http://schema.bpost.be/services/common/address/ExternalMailingAddressProofingCSMessages/v001"
}
},
{
"anyOf":[
{
"$ref":"http://www.jsonix.org/jsonschemas/w3c/2001/XMLSchema.jsonschema#/definitions/string"
}
],
"elementName":{
"localPart":"UnstructuredPostalCodeMunicipality",
"namespaceURI":"http://schema.bpost.be/services/common/address/ExternalMailingAddressProofingCSMessages/v001"
}
}
]
}
],
"propertyType":"elements"
}
},
"typeType":"classInfo",
"typeName":{
"localPart":"PostalCodeMunicipalityComplexType",
"namespaceURI":"http://schema.bpost.be/services/common/address/ExternalMailingAddressProofingCSMessages/v001"
},
"propertiesOrder":[
"structuredPostalCodeMunicipalityOrUnstructuredPostalCodeMunicipality"
]
}, I made a little test case and followed the execution (but didn't understand it all). Could something could be done in JsonSchemaPropertyInfoProducerVisitor? Maybe xerces could help as well. It is possible to get at the underlying schema model: (https://xerces.apache.org/xerces2-j/javadocs/xs/org/apache/xerces/xs/XSModel.html) cheers, |
Hi Mark, thanks for the pointers. I think it would be good to start from some clear case - like So I believe this is solvable to some extent, but there will also be limits. I also think it's better to start with #40 and #50. Best wishes, |
6 years ago... I want to create a mapping of ptb.de/dcc and there are several xs:choice |
I'm trying to convert an XSD with lots of tags xsd:choice into a JSON Schema, using your compiler (through Clemens' http://www.xml-buddy.com/ValidatorBuddy.htm)
The good thing is that I got a JSON schema out, which is great already! However, I was expecting to get oneOf keywords. Example:
gets returned as:
What am I doing wrong, or misunderstanding?
The text was updated successfully, but these errors were encountered: