<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="./ns-schema.xsl" type="text/xsl" media="screen"?>
<rdf:RDF
  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:dcterms="http://purl.org/dc/terms/"
  xmlns:foaf="http://xmlns.com/foaf/0.1/"
  xmlns:owl="http://www.w3.org/2002/07/owl#"
  xmlns:ex="http://purl.org/net/ns/ex#"
  xmlns:ont="http://purl.org/net/ns/ontology-annot#"
  xml:base="http://purl.org/net/ns/ex"
  >

 <owl:Ontology rdf:about="">
  <owl:imports rdf:resource="http://www.kanzaki.com/ns/dliser.rdf"/>
  <rdfs:label>Example vocabulary</rdfs:label>
  <rdfs:comment>Vocabulary to include sample codes in a schema. Can work with XSLT (http://purl.org/net/ns/ns-schema.xsl) to present schema as XHTML list with examples.</rdfs:comment>
  <rdfs:comment xml:lang="ja">スキーマにサンプルコードを埋め込むための語彙。XSLTを使って、XHTMLの中で例を表示させることができる。</rdfs:comment>
  <ont:created>2003-07-04</ont:created>
  <ont:modified>2007-12-13</ont:modified>
  <owl:versionInfo>Version 0.35</owl:versionInfo>
  <ont:creator>
   <foaf:Person rdf:about="urn:pin:MK705">
    <foaf:name xml:lang="ja">神崎正英</foaf:name>
    <foaf:homepage rdf:resource="http://www.kanzaki.com/"/>
    <rdfs:seeAlso rdf:resource="http://www.kanzaki.com/info/webwho.rdf"/>
   </foaf:Person>
  </ont:creator>
 </owl:Ontology>

<!-- ==== Class definitions ==== -->

 <owl:Class rdf:ID="Example">
  <rdfs:label>Example</rdfs:label>
  <rdfs:comment>A class represents one example.</rdfs:comment>
  <rdfs:comment xml:lang="ja">ひとつの例を表すクラス</rdfs:comment>
  <rdfs:isDefinedBy rdf:resource=""/>
 </owl:Class>



<!-- ==== Property definitions ==== -->
 <owl:AnnotationProperty rdf:ID="example">
  <rdfs:label>Example</rdfs:label>
  <rdfs:comment>The subject has an Example. Use to include example(s) in a term definition.</rdfs:comment>
  <rdfs:comment xml:lang="ja">主語となる語彙定義が例を持つ。</rdfs:comment>
  <rdfs:isDefinedBy rdf:resource=""/>
 </owl:AnnotationProperty>

 <owl:AnnotationProperty rdf:ID="exampleOf">
  <rdfs:label>Example of</rdfs:label>
  <rdfs:comment>The subject is an example of the object vocabulary.</rdfs:comment>
  <rdfs:comment xml:lang="ja">主語は目的語語彙の用例である。</rdfs:comment>
  <rdfs:isDefinedBy rdf:resource=""/>
 </owl:AnnotationProperty>


<owl:AnnotationProperty rdf:ID="code">
  <rdfs:label>Code</rdfs:label>
  <rdfs:comment>Has an example code of an RDF/XML statements that use the schema. Content may be CDATA section or rdf:parseType="Literal".</rdfs:comment>
  <rdfs:comment xml:lang="ja">スキーマを使ったRDF/XMLのサンプルを記述する。CDATAセクションもしくはrdf:parseType="Literal"にすると、タグをそのまま記述できて便利。</rdfs:comment>
  <rdfs:isDefinedBy rdf:resource=""/>
 </owl:AnnotationProperty>

 <owl:AnnotationProperty rdf:ID="pfx">
  <rdfs:label>Prefix</rdfs:label>
  <rdfs:comment>A prefix used in the example to represent the schema namespace. A rendaring application may use this value to distinguish target terms in the example.</rdfs:comment>
  <rdfs:comment xml:lang="ja">例の中でスキーマを表すために用いている名前空間接頭辞。例をレンダリングする場合、この値を使ってスキーマの語彙を他の語彙と区別することができる。</rdfs:comment>
  <rdfs:isDefinedBy rdf:resource=""/>
 </owl:AnnotationProperty>

 <owl:AnnotationProperty rdf:ID="trial">
  <rdfs:label>Trial</rdfs:label>
  <rdfs:comment>A pointer to a real example or a trial page.</rdfs:comment>
  <rdfs:comment xml:lang="ja">語彙が使われている実例、あるいはトライアルページへのポインタ。</rdfs:comment>
  <rdfs:isDefinedBy rdf:resource=""/>
 </owl:AnnotationProperty>

 <owl:AnnotationProperty rdf:ID="image">
  <rdfs:label>Image</rdfs:label>
  <rdfs:comment>A pointer to an image that helps to understand the vocabulary.</rdfs:comment>
  <rdfs:comment xml:lang="ja">語彙の理解を助ける画像へのポインタ。</rdfs:comment>
  <rdfs:isDefinedBy rdf:resource=""/>
 </owl:AnnotationProperty>




<!-- ==== Examples ==== -->
<ex:Example>
 <rdfs:comment>An example included in a schema definition.</rdfs:comment>
 <rdfs:comment xml:lang="ja">スキーマに例を埋め込む例。</rdfs:comment>
 <ex:pfx>ex:</ex:pfx>
 <ex:code><![CDATA[
<ex:Example>
 <rdfs:comment>An example to use Dublin Core vocabulary.</rdfs:comment>
 <rdfs:comment xml:lang="ja">ダブリンコア語彙を使う例</rdfs:comment>
 <ex:pfx>dc:</ex:pfx>
 <ex:code rdf:parseType="Literal">
  <rdf:Description rdf:about="http://www.kanzaki.com/">
   <dc:title>The Web KANZAKI</dc:title>
   <dc:creator>Masahide Kanzaki</dc:creator>
  </rdf:Description>
 </ex:code>
 <ex:exampleOf rdf:resource=""/>
</ex:Example>
 ]]></ex:code>
 <ex:exampleOf rdf:resource=""/>
</ex:Example>


</rdf:RDF>
