License RDF
Revision as of 19:36, 29 January 2008 by Nathan Yergler (talk | contribs) (New page: {{draft}} == License Files (.rdf) == === Attributes === * cc:license ** about ** permits ** requires ** prohibits * dc:title - The human readable name of the license. * dc:description - ...)
This article describes a DRAFT under discussion; contents, specifications and recommendations may change until the public discussion is complete.
License Files (.rdf)
Attributes
- cc:license
- about
- permits
- requires
- prohibits
- dc:title - The human readable name of the license.
- dc:description - Description of the license.
- dc:coverage - The jurisdiction of the license. (country code from ISO3166)
- dc:relation
- dc:type - always "License"
- dc:creator
- dc:publisher
- dc:identifier - URI of license (URI)
Example
<rdf:RDF
xmlns="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dcq="http://purl.org/dc/terms/"
>
<rdf:Description rdf:about="http://creativecommons.org/licenses/by-nd/2.0/za/">
<dc:title>Creative Commons Attribution No Derivatives</dc:title>
<dc:description>This license allows for redistribution, commercial and non-commercial,
as long as it is passed along unchanged and in whole, with credit to you.</dc:description>
<dc:coverage>
<dcq:ISO3166>
<rdf:value>za</rdf:value>
</dcq:ISO3166>
</dc:coverage>
<dc:hasVersion>2.0</dc:hasVersion>
<dc:isReplacedBy>
<dcq:URI>
<rdf:value>http://creativecommons.org/licenses/by-nd/2.5/za/</rdf:value>
</dcq:URI>
</dc:isReplacedBy>
<dc:isBasedOn>
<dcq:URI>
<rdf:value>http://creativecommons.org/licenses/by-nd/2.5/</rdf:value>
</dcq:URI>
</dc:isBasedOn>
<dc:type>License</dc:type>
<dc:creator>iCommons</dc:creator>
<dc:publisher>Creative Commons</dc:publisher>
<dc:identifier>http://creativecommons.org/licenses/by-nd/2.0/za/</dc:identifier>
<rdf:type rdf:resource="http://creativecommons.org/ns#License"/>
<permits rdf:resource="http://creativecommons.org/ns#Distribution"/>
<permits rdf:resource="http://creativecommons.org/ns#Reproduction"/>
<requires rdf:resource="http://creativecommons.org/ns#Attribution"/>
<requires rdf:resource="http://creativecommons.org/ns#Notice"/>
</rdf:Description>
</rdf:RDF>
Example (i18n)
<rdf:RDF
xmlns="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dcq="http://purl.org/dc/terms/"
>
<rdf:Description rdf:about="http://creativecommons.org/licenses/by-nd/2.0/">
<dc:title>
<rdf:Alt>
<rdf:li xml:lang="x-default">Creative Commons Attribution No Derivatives</rdf:li>
<rdf:li xml:lang="es-cl">Creative Commons Atribución-SinDerivadas</rdf:li>
</rdf:Alt>
</dc:title>
<dc:description>
<rdf:Alt>
<rdf:li xml:lang="x-default">This license allows for redistribution, commercial and non-commercial,
as long as it is passed along unchanged and in whole, with credit to you.</rdf:li>
</rdf:Alt>
</dc:description>
<dc:coverage>
<dcq:ISO3166>
<rdf:value>us</rdf:value>
</dcq:ISO3166>
</dc:coverage>
<dc:hasVersion>2.0</dc:hasVersion>
<dc:isReplacedBy>
<dcq:URI>
<rdf:value>http://creativecommons.org/licenses/by-nd/2.5/</rdf:value>
</dcq:URI>
</dc:isReplacedBy>
<dc:type>License</dc:type>
<dc:creator>Creative Commons</dc:creator>
<dc:publisher>Creative Commons</dc:publisher>
<dc:identifier>http://creativecommons.org/licenses/by-nd/2.0/</dc:identifier>
<rdf:type rdf:resource="http://creativecommons.org/ns#License"/>
<permits rdf:resource="http://creativecommons.org/ns#Distribution"/>
<permits rdf:resource="http://creativecommons.org/ns#Reproduction"/>
<requires rdf:resource="http://creativecommons.org/ns#Attribution"/>
<requires rdf:resource="http://creativecommons.org/ns#Notice"/>
</rdf:Description>
</rdf:RDF>