@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

<http://purl.org/rss/1.0/channel> a rdfs:Class ;
	rdfs:label "Channel" ;
	rdfs:comment "An RSS information channel." ;
	rdfs:isDefinedBy <http://purl.org/rss/1.0/> .

<http://purl.org/rss/1.0/image> a rdfs:Class ;
	rdfs:label "Image" ;
	rdfs:comment "An RSS image." ;
	rdfs:isDefinedBy <http://purl.org/rss/1.0/> .

<http://purl.org/rss/1.0/item> a rdfs:Class ;
	rdfs:label "Item" ;
	rdfs:comment "An RSS item." ;
	rdfs:isDefinedBy <http://purl.org/rss/1.0/> .

<http://purl.org/rss/1.0/textinput> a rdfs:Class ;
	rdfs:label "Text Input" ;
	rdfs:comment "An RSS text input." ;
	rdfs:isDefinedBy <http://purl.org/rss/1.0/> .

<http://purl.org/rss/1.0/items> a rdf:Property ;
	rdfs:label "Items" ;
	rdfs:comment "Points to a list of rss:item elements that are members of the subject channel." ;
	rdfs:isDefinedBy <http://purl.org/rss/1.0/> .

<http://purl.org/rss/1.0/title> a rdf:Property ;
	rdfs:label "Title" ;
	rdfs:comment "A descriptive title for the channel." ;
	rdfs:subPropertyOf dc:title ;
	rdfs:isDefinedBy <http://purl.org/rss/1.0/> .

<http://purl.org/rss/1.0/link> a rdf:Property ;
	rdfs:label "Link" ;
	rdfs:comment "The URL to which an HTML rendering of the subject will link." ;
	rdfs:subPropertyOf dc:identifier ;
	rdfs:isDefinedBy <http://purl.org/rss/1.0/> .

<http://purl.org/rss/1.0/url> a rdf:Property ;
	rdfs:label "URL" ;
	rdfs:comment "The URL of the image to used in the 'src' attribute of the channel's image tag when rendered as HTML." ;
	rdfs:subPropertyOf dc:identifier ;
	rdfs:isDefinedBy <http://purl.org/rss/1.0/> .

<http://purl.org/rss/1.0/description> a rdf:Property ;
	rdfs:label "Description" ;
	rdfs:comment "A short text description of the subject." ;
	rdfs:subPropertyOf dc:description ;
	rdfs:isDefinedBy <http://purl.org/rss/1.0/> .

<http://purl.org/rss/1.0/name> a rdf:Property ;
	rdfs:label "Name" ;
	rdfs:comment "The text input field's (variable) name." ;
	rdfs:isDefinedBy <http://purl.org/rss/1.0/> .
