きゃらりこ日誌

クリエイティブ・コモンズ 表示 2.1 日本ライセンスのRDF

自分用メモ。
かつて、ライセンス選択ツール(http://creativecommons.org/license/)で生成されていたものと、ほぼ同じものです。

<rdf:RDF xmlns="http://web.resource.org/cc/"

  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:dc="http://purl.org/dc/elements/1.1/">
  <Work rdf:about="<strong>作品の置き場所(URI)</strong>">
    <license rdf:resource="http://creativecommons.org/licenses/by/2.1/jp/"/>
    <dc:title><strong>作品名</strong></dc:title>
    <dc:date><strong>日付(※1)</strong></dc:date>
    <dc:description><strong>コメント欄</strong></dc:description>
    <dc:creator><Agent>
      <dc:title><strong>作者</strong></dc:title>
    </Agent></dc:creator>
    <dc:rights><Agent>
        <dc:title><strong>著作権者</strong></dc:title>
    </Agent></dc:rights>
    <dc:source rdf:resource="<strong>作品の置き場所(URI)</strong>" />
    <dc:type rdf:resource="<strong>種別(URI)(※2)</strong>" />

  </Work>
  <License rdf:about="http://creativecommons.org/licenses/by/2.1/jp/">
    <permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
    <permits rdf:resource="http://web.resource.org/cc/Distribution"/>
    <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
    <requires rdf:resource="http://web.resource.org/cc/Notice"/>
    <requires rdf:resource="http://web.resource.org/cc/Attribution"/>
  </License>
</rdf:RDF>


The Web KANZAKIの「クリエイティブ・コモンズのメタデータ -- 著作権とライセンス記述の新しい形」([http://www.kanzaki.com/docs/sw/ccm.html])を読むと、このRDFの意味がよく分かる。


※1 W3CDTF形式で記載 詳しくはhttp://www.kanzaki.com/docs/html/dtf.htmlを参照


※2 http://purl.org/dc/dcmitype/Imageのように書く 詳しくはhttp://dublincore.org/documents/dcmi-type-vocabulary/を参照

(初出:はてなダイアリー「Tech² memo」)