Jon Udell wants to put RDF into RSS. I'm not sure if it's a good idea (it's certainly ugly) - wouldn't it be better to rewrite the RDF to fit the RSS format, and keep a separate RDF feed for the pure data?
This is how I would have done it, in the same style as the RVW format:
<?xml version="1.0"?> <rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:job="http://ilrt.org/discovery/2000/11/rss-query/jobvocab.rdf#"> <channel> <title>A hypothetical job listings channel</title> <link>http://ilrt.org/discovery/2000/11/rss-query/</link> <description>This example shows RSS used as a lightweight data transport mechanism</description> <item> <title>The title of job1 goes here</title> <link>http://example.com/job1.html</link> <description>(Job1-Job1-Job1...)</description> <job:advertises> <job:title>Job title for job1 goes here</job:title> <job:salary>100000</job:salary> <job:currency>USD</job:currency> <job:orgHomepage>http://ilrt.org/</job:orgHomepage> </job:advertises> </item> <item> <title>The title of job2 goes here</title> <link>http://example.com/job2.html</link> <description>(Job2-Job2-Job2...)</description> <job:advertises> <job:title>Job title for job2 goes here</job:title> <job:salary>150000</job:salary> <job:currency>UKP</job:currency> <job:orgHomepage>http://www.ukoln.ac.uk/</job:orgHomepage> </job:advertises> </item> </channel> </rss>