Open
Description
Example:
`<xsd:element name="MobileAppVer" nillable="true" minOccurs="0" type="xsd:string"/>`
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"
}
},
"elementName":{
"localPart":"MobileAppVer",
"namespaceURI":""
}
}
],
"propertyType":"elementRef",
"elementName":{
"localPart":"MobileAppVer",
"namespaceURI":""
}
},`
And for an xsd with no target namespace why is the localPart & namespaceURI needed?