Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Feb 22nd, 2012  |  syntax: None  |  size: 4.01 KB  |  hits: 39  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
  2. @prefix owl: <http://www.w3.org/2002/07/owl#> .
  3. @prefix : <http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#> .
  4. @prefix xml: <http://www.w3.org/XML/1998/namespace> .
  5. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  6. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  7. @base <http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl> .
  8.  
  9. <http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl> rdf:type owl:Ontology .
  10.  
  11.  
  12. #################################################################
  13. #
  14. #    Datatypes
  15. #
  16. #################################################################
  17.  
  18.  
  19.  
  20.  
  21. #################################################################
  22. #
  23. #    Object Properties
  24. #
  25. #################################################################
  26.  
  27.  
  28. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#hasCoords
  29.  
  30. :hasCoords rdf:type owl:ObjectProperty ;
  31.            
  32.            rdfs:range :GeoCoordinates ;
  33.            
  34.            rdfs:domain :Place .
  35.  
  36.  
  37.  
  38. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#hasResidencyTemple
  39.  
  40. :hasResidencyTemple rdf:type owl:ObjectProperty ;
  41.                    
  42.                     rdfs:domain :Residency ;
  43.                    
  44.                     rdfs:range :Temple ;
  45.                    
  46.                     rdfs:subPropertyOf :tookPlaceAt .
  47.  
  48.  
  49.  
  50. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#tookPlaceAt
  51.  
  52. :tookPlaceAt rdf:type owl:ObjectProperty ;
  53.              
  54.              rdfs:domain :Event ;
  55.              
  56.              rdfs:range :Place .
  57.  
  58.  
  59.  
  60.  
  61.  
  62. #################################################################
  63. #
  64. #    Data properties
  65. #
  66. #################################################################
  67.  
  68.  
  69. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#endTime
  70.  
  71. :endTime rdf:type owl:DatatypeProperty ;
  72.          
  73.          rdfs:domain :Interval ;
  74.          
  75.          rdfs:range xsd:dateTime .
  76.  
  77.  
  78.  
  79. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#latitude
  80.  
  81. :latitude rdf:type owl:DatatypeProperty ;
  82.          
  83.           rdfs:domain :Place ;
  84.          
  85.           rdfs:range xsd:double .
  86.  
  87.  
  88.  
  89. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#longitude
  90.  
  91. :longitude rdf:type owl:DatatypeProperty ;
  92.            
  93.            rdfs:domain :Place ;
  94.            
  95.            rdfs:range xsd:double .
  96.  
  97.  
  98.  
  99. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#startTime
  100.  
  101. :startTime rdf:type owl:DatatypeProperty ;
  102.            
  103.            rdfs:domain :Interval ;
  104.            
  105.            rdfs:range xsd:dateTime .
  106.  
  107.  
  108.  
  109.  
  110.  
  111. #################################################################
  112. #
  113. #    Classes
  114. #
  115. #################################################################
  116.  
  117.  
  118. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#Event
  119.  
  120. :Event rdf:type owl:Class .
  121.  
  122.  
  123.  
  124. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#GeoCoordinates
  125.  
  126. :GeoCoordinates rdf:type owl:Class .
  127.  
  128.  
  129.  
  130. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#Interval
  131.  
  132. :Interval rdf:type owl:Class ;
  133.          
  134.           rdfs:subClassOf :Time .
  135.  
  136.  
  137.  
  138. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#Mobile
  139.  
  140. :Mobile rdf:type owl:Class .
  141.  
  142.  
  143.  
  144. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#Monk
  145.  
  146. :Monk rdf:type owl:Class ;
  147.      
  148.       rdfs:subClassOf :Person .
  149.  
  150.  
  151.  
  152. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#Person
  153.  
  154. :Person rdf:type owl:Class ;
  155.        
  156.         rdfs:subClassOf :Mobile .
  157.  
  158.  
  159.  
  160. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#Place
  161.  
  162. :Place rdf:type owl:Class .
  163.  
  164.  
  165.  
  166. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#Residency
  167.  
  168. :Residency rdf:type owl:Class ;
  169.            
  170.            rdfs:subClassOf :Event .
  171.  
  172.  
  173.  
  174. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#Temple
  175.  
  176. :Temple rdf:type owl:Class ;
  177.        
  178.         rdfs:subClassOf :Place .
  179.  
  180.  
  181.  
  182. ###  http://gaia.cias.kyoto-u.ac.jp/onto/core/test.owl#Time
  183.  
  184. :Time rdf:type owl:Class .
  185.  
  186.  
  187.  
  188.  
  189. ###  Generated by the OWL API (version 3.2.3.1824) http://owlapi.sourceforge.net