COI guidance TG124 Structuring information on the Web for re-usability is now re-issued as version 1.2. Diligent implementers have identified two small errors in version 1.1 and these have now been corrected. They were correct in the examples on the Google Code website and only incorrect in the abstracted guidance.
The first correction is in paragraph 31.
Old version
<div about="#this" typeof="foaf:Document" rel="dc:type" resource="[argot:Consultation]" > ... </div>
Correct code
<div about="#this" typeof="foaf:Document"> <span rel="dc:type" resource="[argot:Consultation]"></span> ... </div>
Notice how the @rel attribute is in a separate span element.
There is a similar correction in paragraph 34.
Old version
<div about="#this" typeof="foaf:Document" rel="dc:type" resource="[argot:Consultation]" > <span property="dc:publisher" content="Ministry of Justice"></span> ... </div>
or even merged onto the first element:
<div about="#this" typeof="foaf:Document" rel="dc:type" resource="[argot:Consultation]" property="dc:publisher" content="Ministry of Justice" > ... </div>
Correct code
<div about="#this" typeof="foaf:Document"> <span rel="dc:type" resource="[argot:Consultation]"></span> <span property="dc:publisher" content="Ministry of Justice"></span> ... </div>
or even merged onto the first element:
<div about="#this" typeof="foaf:Document" property="dc:publisher" content="Ministry of Justice"> <span rel="dc:type" resource="[argot:Consultation]"></span> ... </div>
Apologies for the changes. If you have any questions, please contact me at adam.bailin@coi.gsi.gov.uk.

