<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ontology Web &#187; resource</title>
	<atom:link href="http://www.ontologyweb.com/tag/resource/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ontologyweb.com</link>
	<description>Become a triple in the web!</description>
	<lastBuildDate>Sun, 31 Jul 2011 13:10:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>RDF stands for Resource Description Framework</title>
		<link>http://www.ontologyweb.com/2009/12/rdf-stands-for-resource-description-framework/</link>
		<comments>http://www.ontologyweb.com/2009/12/rdf-stands-for-resource-description-framework/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 08:17:57 +0000</pubDate>
		<dc:creator>Working Ontologist</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Ontology]]></category>
		<category><![CDATA[Semantics]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[description]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[rdf]]></category>
		<category><![CDATA[resource]]></category>

		<guid isPermaLink="false">http://www.ontologyweb.com/?p=173</guid>
		<description><![CDATA[RDF is short for Resource Description Framework. RDF is the language for describing resources and contents in the semantic web. In the semantic web RDF is used to describe resources on the web. Resources are addressed by a unique URI. A URI looks like a normal Internet URL. Look at the following fragment of a RDF file: &#60;?xml version=&#34;1.0&#34;?&#62; &#60;rdf:RDF &#160;&#160;&#160; xmlns:rdf=&#34;http://www.w3.org/1999/02/22-rdf-syntax-ns#&#34; &#160;&#160;&#160; xmlns:owl=&#34;http://www.w3.org/2002/07/owl#&#34; &#160;&#160;&#160; xmlns:xsd=&#34;http://www.w3.org/2001/XMLSchema#&#34; &#160;&#160;&#160; xmlns=&#34;http://example.org/pets#&#34; &#160;&#160;&#160; xmlns:rdfs=&#34;http://www.w3.org/2000/01/rdf-schema#&#34; &#160; xml:base=&#34;http://example.org/pets&#34;&#62; &#160; &#60;owl:Class rdf:ID=&#34;Goldfish&#34;&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>RDF is short for Resource Description Framework. RDF is the language for describing resources and contents in the semantic web. In the semantic web RDF is used to describe resources on the web. Resources are addressed by a unique URI. A URI looks like a normal Internet URL.</p>
<p>Look at the following fragment of a RDF file:</p>
<p><code>&lt;?xml version=&quot;1.0&quot;?&gt;<br />
	&lt;rdf:RDF<br />
	&nbsp;&nbsp;&nbsp; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;<br />
	&nbsp;&nbsp;&nbsp; xmlns:owl=&quot;http://www.w3.org/2002/07/owl#&quot;<br />
	&nbsp;&nbsp;&nbsp; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema#&quot;<br />
	&nbsp;&nbsp;&nbsp; xmlns=&quot;http://example.org/pets#&quot;<br />
	&nbsp;&nbsp;&nbsp; xmlns:rdfs=&quot;http://www.w3.org/2000/01/rdf-schema#&quot;<br />
	&nbsp; xml:base=&quot;http://example.org/pets&quot;&gt;<br />
	&nbsp; &lt;owl:Class rdf:ID=&quot;Goldfish&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;rdfs:subClassOf&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;owl:Class rdf:ID=&quot;Pet&quot;/&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;/rdfs:subClassOf&gt;<br />
	&nbsp; &lt;/owl:Class&gt;<br />
	&nbsp; &lt;owl:Class rdf:ID=&quot;Cat&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;rdfs:subClassOf&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;owl:Class rdf:about=&quot;#Pet&quot;/&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;/rdfs:subClassOf&gt;<br />
	&nbsp; &lt;/owl:Class&gt;<br />
	&nbsp; &lt;owl:Class rdf:ID=&quot;Dog&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;rdfs:subClassOf&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;owl:Class rdf:about=&quot;#Pet&quot;/&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;/rdfs:subClassOf&gt;<br />
	&nbsp; &lt;/owl:Class&gt;<br />
	&nbsp; &lt;owl:Class rdf:ID=&quot;Elephant&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;rdfs:subClassOf&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;owl:Class rdf:ID=&quot;Wild&quot;/&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;/rdfs:subClassOf&gt;<br />
	&nbsp; &lt;/owl:Class&gt;<br />
	&nbsp; &lt;owl:Class rdf:about=&quot;#Pet&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;rdfs:subClassOf&gt;<br />
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;owl:Class rdf:ID=&quot;Animal&quot;/&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;/rdfs:subClassOf&gt;<br />
	&nbsp; &lt;/owl:Class&gt;<br />
	&nbsp; &lt;owl:Class rdf:about=&quot;#Wild&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;rdfs:subClassOf rdf:resource=&quot;#Animal&quot;/&gt;<br />
	&nbsp; &lt;/owl:Class&gt;<br />
	&nbsp; &lt;owl:Class rdf:ID=&quot;Leopard&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;rdfs:subClassOf rdf:resource=&quot;#Wild&quot;/&gt;<br />
	&nbsp; &lt;/owl:Class&gt;<br />
	&nbsp; &lt;owl:Class rdf:ID=&quot;Tiger&quot;&gt;<br />
	&nbsp;&nbsp;&nbsp; &lt;rdfs:subClassOf rdf:resource=&quot;#Wild&quot;/&gt;<br />
	&nbsp; &lt;/owl:Class&gt;<br />
	&lt;/rdf:RDF&gt;<br />
	</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ontologyweb.com/2009/12/rdf-stands-for-resource-description-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

