tag documentation

C

Carmen Sei

for each tag in a namespace, is there easy way to get documentation on
what's that tag use for?

for Java, we have Java Doc, but for XML, do we usually refer to schema
file for the XML?

like XMLSchema name space, it has all the tags like
<xs:sequence>
<xs:element>
<xs:annotation>

where can I get more info for each tag?

===============
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:sql="urn:schemas-microsoft-com:mapping-schema">
 
M

Martin Honnen

Carmen said:
like XMLSchema name space, it has all the tags like
<xs:sequence>
<xs:element>
<xs:annotation>

where can I get more info for each tag?

===============
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:sql="urn:schemas-microsoft-com:mapping-schema">

It is a W3C recommendation, see <URL:http://www.w3.org/TR/xmlschema-0/>
for an informal introduction and <URL:http://www.w3.org/TR/xmlschema-1/>
and <URL:http://www.w3.org/TR/xmlschema-2/> for the formal specification.
 
P

Peter Flynn

Carmen said:
for each tag in a namespace, is there easy way to get documentation on
what's that tag use for?
Sometimes.

for Java, we have Java Doc, but for XML, do we usually refer to schema
file for the XML?

Unfortunately, that's sometimes all there is.
Or a DTD.
Or the owner's or creator's web site (eg www.docbook.org is an excellent
source of documentation about DocBook). Some industrial Schemas are
proprietary, so you have to be a member (or pay) to get the doc.
Or buy a book...

There have been at least a dozen proposals over the years for methods of
embedding documentation in Schemas and DTDs, mostly in an extractable
format, rather like Knuth's Literate Programming _WEB_, so as to
generate XML documentation, but:

a) none of them have taken off

b) programmers don't write documentation :)

c) document engineers do, but not usually in the Schema/DTD

d) no-one can agree on how to do it right

The most successful one IMHO is ODD, used to generate grammars and some
documentation for the TEI (www.tei-c.org).
like XMLSchema name space, it has all the tags like
<xs:sequence>
<xs:element>
<xs:annotation>

where can I get more info for each tag?

This is all documented in the XML Schema Specification at
http://www.w3.org/XML/Schema
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:sql="urn:schemas-microsoft-com:mapping-schema">

For Microsoft Schemas, ask Microsoft.

///Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,043
Latest member
CannalabsCBDReview

Latest Threads

Top