vote up 2 vote down star
2

We are working on a schema for a client, and we want them to be able to review it so that tyey can understand it. They are not "untechnical", but a schema file or large diagram seems very unfriendly for the purposes of someone learning what it contains. Further down the line other developers are going to have to learn to use the schema, and a decent documenting system would be good.

Is there a tool or diagram or similar that is useful for this? How do you handle this situation? What do you recommend?

flag

1 Answer

vote up 2 vote down

Do you have example usage of all of your schema elements that would make sense to the business. I'd present the example and then show the structure - maybe with an XML Spy style diagram.

The joy of XML is that it's supposed to be self documenting so provided that you have used suitable names in your XSD then it should be reasonably easily to understand.

alt text

link|flag
The diagram that we get is way too big to fit on a single sheet. I note that your diagram has a fair few '+'s which implies that you present it in segments. That might be sensible. – mj2008 Aug 11 at 14:54
Yes it's best to create complex types for each of the major reusable pieces (e.g. an address structure) and then reuse these types where they need to go. These smaller pieces should be easier to validate than validating the whole schema in one go. – pjp Aug 11 at 15:16
@pjp: I'm curious: does your above schema have any recursion? i.e. a complexType X that somewhere inside it contains an element of that same complexType X? e.g. a Sequence (in the above) might include another CustomerStatementMessage. I'm also wondering if you might know of where I might find examples of real-world schema? (I'm making a schema-related tool, and it helps to optimize it for the common cases). Thanks for any help! – 13ren Aug 12 at 3:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.