XML.orgXML.org
FOCUS AREAS |XML-DEV |XML.org DAILY NEWSLINK |REGISTRY |RESOURCES |ABOUT
OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]
Abandon the (mistaken) belief that XML attributes provide"metadata" and set yourself free to explore capability-based designs

Hi Folks,

I just did a search of the XML specification for the word "metadata" 

Number of occurrences: 0


Consider this XML snippet:

  <altitude units="feet">12000</altitude>

I have heard it stated:

   The units attribute provides data about the
   element's data. That is, units provides
   metadata.

However, the XML specification makes no such claim about attributes providing "metadata". This is what the XML specification says:

  Attributes are used to associate name-value pairs with elements.

And then the specification goes on to describe the specific syntax for attributes.

Thus, attributes don't provide data about an element's content. Attributes don't provide metadata.  

Attributes are purely a syntactic construct. 

If you abandon the belief that attributes provide metadata then it frees you to create XML designs based on the capabilities of the applications you use.

Example: In XML Schema 1.1 attributes (but not elements) can be declared "inheritable". There are benefits to having an inheritable item. Namely, descendent elements can make decisions (using the new <assert> element) on inherited attributes. Thus, if it is important to enable the descendants of <altitude> to make decisions based on units and value, then design the XML using exclusively attributes:

   <altitude units="feet" value="12000">
      <!-- descendant elements -->
   </altitude>

In the XML Schema the attributes are declared inheritable:

   <attribute name="units" inheritable="true" />
   <attribute name="value" inheritable="true" />

Note that your decision to make them attributes was not based on whether their values are providing metadata (whatever that means), but rather, based on the ability to exploit inheritance in XML Schema 1.1.

Comments?

/Roger


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 1993-2007 XML.org. This site is hosted by OASIS