I'm looking for converting XSD schema into datamodel. Do we know how to convert XSD into datamodel using any tool or some set of code?
Any help would be greatly appreciated. Data Model defines how to convert data to and from XML. Data Models are detected when they are stored in directory that has been registered to provide data models, these models then appear for us in tools.
DataModel looks like...
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<model>
<strategyId>fixedlen</strategyId>
<id>
<part>Test</part>
</id>
<description>Description</description>
<optionSet id="fixedlen" modelDefinitionType="definition">
<optionSet id="section">
<optionSet id="general">
<option id="name">section</option>
<option id="recordName">row</option>
<option id="recordSeparator">{platform newline}</option>
<compoundOption id="recordOwner">
<option id="ownerType">greedy</option>
</compoundOption>
</optionSet>
<optionSequence id="components"/>
</optionSet>
</optionSet>
</model>