Maximally Consumable Data
Goal: maximize the consumability of data.
Data can be formatted in a number of different ways. A data format may be well suited for one task, but not another; whereas a second data format may be well suited for the later task but not the former.
Thus, to create maximally consumable data, format your data in several ways. Here's my recommendation:
List of Consumable Items
- XHTML Version: format your data using XHTML. That will make your data consumable by browsers, and a variety of other devices.
- XML Version: format your data using XML. That will make your data consumable by machines.
- JSON Version: format your data using JSON. That will make your data consumable by JavaScript and Ajax applications. I wrote a short article that explains why JSON is well suited for JavaScript/Ajax applications: Why JSON is Important to You!