cul_hydra 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (221) hide show
  1. checksums.yaml +7 -0
  2. data/app/assets/images/cul_hydra/crystal/binary.png +0 -0
  3. data/app/assets/images/cul_hydra/crystal/document.png +0 -0
  4. data/app/assets/images/cul_hydra/crystal/file.png +0 -0
  5. data/app/assets/images/cul_hydra/crystal/file_broken.png +0 -0
  6. data/app/assets/images/cul_hydra/crystal/folder_documents.png +0 -0
  7. data/app/assets/images/cul_hydra/crystal/folder_images.png +0 -0
  8. data/app/assets/images/cul_hydra/crystal/folder_music.png +0 -0
  9. data/app/assets/images/cul_hydra/crystal/folder_sound.png +0 -0
  10. data/app/assets/images/cul_hydra/crystal/folder_video.png +0 -0
  11. data/app/assets/images/cul_hydra/crystal/kmultiple.png +0 -0
  12. data/app/assets/images/cul_hydra/crystal/knotify.png +0 -0
  13. data/app/assets/images/cul_hydra/crystal/mp3.png +0 -0
  14. data/app/assets/images/cul_hydra/crystal/multimedia2.png +0 -0
  15. data/app/assets/images/cul_hydra/crystal/video.png +0 -0
  16. data/app/assets/images/cul_hydra/filesystem/application.png +0 -0
  17. data/app/assets/images/cul_hydra/filesystem/code.png +0 -0
  18. data/app/assets/images/cul_hydra/filesystem/css.png +0 -0
  19. data/app/assets/images/cul_hydra/filesystem/db.png +0 -0
  20. data/app/assets/images/cul_hydra/filesystem/directory.png +0 -0
  21. data/app/assets/images/cul_hydra/filesystem/doc.png +0 -0
  22. data/app/assets/images/cul_hydra/filesystem/file.png +0 -0
  23. data/app/assets/images/cul_hydra/filesystem/film.png +0 -0
  24. data/app/assets/images/cul_hydra/filesystem/flash.png +0 -0
  25. data/app/assets/images/cul_hydra/filesystem/folder_open.png +0 -0
  26. data/app/assets/images/cul_hydra/filesystem/html.png +0 -0
  27. data/app/assets/images/cul_hydra/filesystem/java.png +0 -0
  28. data/app/assets/images/cul_hydra/filesystem/linux.png +0 -0
  29. data/app/assets/images/cul_hydra/filesystem/music.png +0 -0
  30. data/app/assets/images/cul_hydra/filesystem/pdf.png +0 -0
  31. data/app/assets/images/cul_hydra/filesystem/php.png +0 -0
  32. data/app/assets/images/cul_hydra/filesystem/picture.png +0 -0
  33. data/app/assets/images/cul_hydra/filesystem/ppt.png +0 -0
  34. data/app/assets/images/cul_hydra/filesystem/psd.png +0 -0
  35. data/app/assets/images/cul_hydra/filesystem/ruby.png +0 -0
  36. data/app/assets/images/cul_hydra/filesystem/script.png +0 -0
  37. data/app/assets/images/cul_hydra/filesystem/spinner.gif +0 -0
  38. data/app/assets/images/cul_hydra/filesystem/txt.png +0 -0
  39. data/app/assets/images/cul_hydra/filesystem/xls.png +0 -0
  40. data/app/assets/images/cul_hydra/filesystem/zip.png +0 -0
  41. data/app/controllers/concerns/cul/hydra/application_id_behavior.rb +43 -0
  42. data/app/controllers/concerns/cul/hydra/controller.rb +22 -0
  43. data/app/controllers/concerns/cul/hydra/resolver.rb +69 -0
  44. data/app/controllers/concerns/cul/hydra/thumbnails.rb +62 -0
  45. data/app/helpers/cul/hydra/ore_proxies_helper_behavior.rb +119 -0
  46. data/app/helpers/cul/hydra/struct_metadata_helper_behavior.rb +89 -0
  47. data/app/models/bag_aggregator.rb +7 -0
  48. data/app/models/concept.rb +23 -0
  49. data/app/models/concerns/cul/hydra/models.rb +24 -0
  50. data/app/models/concerns/cul/hydra/models/aggregator.rb +121 -0
  51. data/app/models/concerns/cul/hydra/models/common.rb +220 -0
  52. data/app/models/concerns/cul/hydra/models/image_resource.rb +106 -0
  53. data/app/models/concerns/cul/hydra/models/linkable_resources.rb +108 -0
  54. data/app/models/concerns/cul/hydra/models/resource.rb +87 -0
  55. data/app/models/concerns/nfo/common.rb +17 -0
  56. data/app/models/concerns/nfo/file_data_object.rb +10 -0
  57. data/app/models/concerns/nfo/folder.rb +10 -0
  58. data/app/models/concerns/nie/information_element.rb +10 -0
  59. data/app/models/concerns/ore/proxy.rb +124 -0
  60. data/app/models/concerns/rdf/cul.rb +77 -0
  61. data/app/models/concerns/rdf/fcrepo3.rb +360 -0
  62. data/app/models/concerns/rdf/nfo.rb +807 -0
  63. data/app/models/concerns/rdf/nie.rb +338 -0
  64. data/app/models/concerns/rdf/olo.rb +100 -0
  65. data/app/models/concerns/rdf/ore.rb +101 -0
  66. data/app/models/concerns/rdf/pimo.rb +605 -0
  67. data/app/models/concerns/rdf/sc.rb +47 -0
  68. data/app/models/concerns/sc/canvas.rb +12 -0
  69. data/app/models/concerns/sc/sequence.rb +21 -0
  70. data/app/models/content_aggregator.rb +3 -0
  71. data/app/models/cul/hydra/datastreams/dc_metadata.rb +107 -0
  72. data/app/models/cul/hydra/datastreams/mods_document.rb +195 -0
  73. data/app/models/cul/hydra/datastreams/struct_metadata.rb +176 -0
  74. data/app/models/dc_document.rb +39 -0
  75. data/app/models/generic_aggregator.rb +68 -0
  76. data/app/models/generic_object.rb +18 -0
  77. data/app/models/generic_resource.rb +210 -0
  78. data/app/models/jp2_image_aggregator.rb +34 -0
  79. data/app/models/mets_structured_aggregator.rb +18 -0
  80. data/app/models/resource.rb +78 -0
  81. data/app/models/resource_aggregator.rb +22 -0
  82. data/app/models/static_audio_aggregator.rb +12 -0
  83. data/app/models/static_image_aggregator.rb +32 -0
  84. data/bin/rails +12 -0
  85. data/config/fedora.yml +17 -0
  86. data/config/jetty.yml +6 -0
  87. data/config/locales/ldpd_hydra.en.yml +125 -0
  88. data/config/predicate_mappings.yml +79 -0
  89. data/config/solr.yml +8 -0
  90. data/config/solr_mappings.yml +26 -0
  91. data/config/solr_value_maps.yml +41 -0
  92. data/config/subs.yml +17 -0
  93. data/fixtures/cmodels/ldpd_ADLMetadata.xml +56 -0
  94. data/fixtures/cmodels/ldpd_AESMetadata.xml +56 -0
  95. data/fixtures/cmodels/ldpd_BagAggregator.xml +70 -0
  96. data/fixtures/cmodels/ldpd_Concept.xml +69 -0
  97. data/fixtures/cmodels/ldpd_ContentAggregator.xml +70 -0
  98. data/fixtures/cmodels/ldpd_DynamicAggregator.xml +56 -0
  99. data/fixtures/cmodels/ldpd_JP2ImageAggregator.xml +60 -0
  100. data/fixtures/cmodels/ldpd_METSMetadata.xml +56 -0
  101. data/fixtures/cmodels/ldpd_METSStructuredAggregator.xml +53 -0
  102. data/fixtures/cmodels/ldpd_MODSMetadata.xml +73 -0
  103. data/fixtures/cmodels/ldpd_MostRecent.xml +46 -0
  104. data/fixtures/cmodels/ldpd_PTIFImageAggregator.xml +63 -0
  105. data/fixtures/cmodels/ldpd_Resource.xml +72 -0
  106. data/fixtures/cmodels/ldpd_RestrictedResource.xml +54 -0
  107. data/fixtures/cmodels/ldpd_Since.xml +62 -0
  108. data/fixtures/cmodels/ldpd_StaticAudioAggregator.xml +54 -0
  109. data/fixtures/cmodels/ldpd_StaticImageAggregator.xml +71 -0
  110. data/fixtures/cmodels/ldpd_htest.xml +54 -0
  111. data/fixtures/cmodels/ldpd_nullbind.xml +63 -0
  112. data/fixtures/cmodels/ldpd_sdef.Aggregator.xml +71 -0
  113. data/fixtures/cmodels/ldpd_sdef.Core.xml +48 -0
  114. data/fixtures/cmodels/ldpd_sdef.Image.xml +47 -0
  115. data/fixtures/cmodels/ldpd_sdef.Metadata.xml +62 -0
  116. data/fixtures/cmodels/ldpd_sdef.Resource.xml +76 -0
  117. data/fixtures/cmodels/ldpd_sdef.ZoomingImage.xml +46 -0
  118. data/fixtures/cmodels/ldpd_sdep.BagAggregator.xml +160 -0
  119. data/fixtures/cmodels/ldpd_sdep.BagAggregatorCore.xml +221 -0
  120. data/fixtures/cmodels/ldpd_sdep.ContentAggregatorCore.xml +221 -0
  121. data/fixtures/cmodels/ldpd_sdep.DynamicAggregator.xml +171 -0
  122. data/fixtures/cmodels/ldpd_sdep.DynamicAggregatorCore.xml +215 -0
  123. data/fixtures/cmodels/ldpd_sdep.JP2Image.xml +220 -0
  124. data/fixtures/cmodels/ldpd_sdep.JP2ImageAggregator.xml +167 -0
  125. data/fixtures/cmodels/ldpd_sdep.JP2ImageCore.xml +229 -0
  126. data/fixtures/cmodels/ldpd_sdep.MODSMetadata.xml +158 -0
  127. data/fixtures/cmodels/ldpd_sdep.MODSMetadataCore.xml +227 -0
  128. data/fixtures/cmodels/ldpd_sdep.PTIFImage.xml +222 -0
  129. data/fixtures/cmodels/ldpd_sdep.PTIFImageAggregator.xml +167 -0
  130. data/fixtures/cmodels/ldpd_sdep.PTIFImageCore.xml +215 -0
  131. data/fixtures/cmodels/ldpd_sdep.StaticImage.xml +210 -0
  132. data/fixtures/cmodels/ldpd_sdep.StaticImageAggregator.xml +186 -0
  133. data/fixtures/cmodels/ldpd_sdep.StaticImageCore.xml +220 -0
  134. data/fixtures/cmodels/ore_Proxy.xml +50 -0
  135. data/fixtures/spec/BLOB/test001.jpg +0 -0
  136. data/fixtures/spec/CUL_DC/dc.xml +5 -0
  137. data/fixtures/spec/CUL_MODS/mods-001.xml +25 -0
  138. data/fixtures/spec/CUL_MODS/mods-all.xml +65 -0
  139. data/fixtures/spec/CUL_MODS/mods-bad-repo.xml +7 -0
  140. data/fixtures/spec/CUL_MODS/mods-date-created-range.xml +7 -0
  141. data/fixtures/spec/CUL_MODS/mods-date-created-single.xml +6 -0
  142. data/fixtures/spec/CUL_MODS/mods-date-end-with-all-u-characters.xml +7 -0
  143. data/fixtures/spec/CUL_MODS/mods-date-issued-range.xml +7 -0
  144. data/fixtures/spec/CUL_MODS/mods-date-issued-single.xml +6 -0
  145. data/fixtures/spec/CUL_MODS/mods-date-other-range.xml +7 -0
  146. data/fixtures/spec/CUL_MODS/mods-date-other-single.xml +6 -0
  147. data/fixtures/spec/CUL_MODS/mods-date-range-short-years.xml +7 -0
  148. data/fixtures/spec/CUL_MODS/mods-date-start-with-all-u-characters.xml +7 -0
  149. data/fixtures/spec/CUL_MODS/mods-dates-with-all-u-characters.xml +7 -0
  150. data/fixtures/spec/CUL_MODS/mods-dates-with-some-u-characters.xml +7 -0
  151. data/fixtures/spec/CUL_MODS/mods-item.xml +31 -0
  152. data/fixtures/spec/CUL_MODS/mods-names.xml +35 -0
  153. data/fixtures/spec/CUL_MODS/mods-notes.xml +8 -0
  154. data/fixtures/spec/CUL_MODS/mods-ns.xml +2 -0
  155. data/fixtures/spec/CUL_MODS/mods-origin-info.xml +9 -0
  156. data/fixtures/spec/CUL_MODS/mods-part.xml +22 -0
  157. data/fixtures/spec/CUL_MODS/mods-physical-description.xml +12 -0
  158. data/fixtures/spec/CUL_MODS/mods-physical-location.xml +9 -0
  159. data/fixtures/spec/CUL_MODS/mods-record-info.xml +4 -0
  160. data/fixtures/spec/CUL_MODS/mods-relateditem-project.xml +8 -0
  161. data/fixtures/spec/CUL_MODS/mods-subjects.xml +73 -0
  162. data/fixtures/spec/CUL_MODS/mods-textual-date.xml +8 -0
  163. data/fixtures/spec/CUL_MODS/mods-titles.xml +33 -0
  164. data/fixtures/spec/CUL_MODS/mods-top-level-location-vs-relateditem-location.xml +21 -0
  165. data/fixtures/spec/CUL_MODS/mods-unmapped-project.xml +7 -0
  166. data/fixtures/spec/CUL_SOLR/mods-001.xml +1 -0
  167. data/fixtures/spec/CUL_SOLR/mods-001.yml +30 -0
  168. data/fixtures/spec/FOXML/content-aggregator.xml +64 -0
  169. data/fixtures/spec/FOXML/content-cmodel.xml +48 -0
  170. data/fixtures/spec/FOXML/image-cmodel.xml +48 -0
  171. data/fixtures/spec/FOXML/resource-max.xml +83 -0
  172. data/fixtures/spec/FOXML/resource-screen.xml +273 -0
  173. data/fixtures/spec/FOXML/resource-thumb.xml +86 -0
  174. data/fixtures/spec/FOXML/static-image-aggregator.xml +31 -0
  175. data/fixtures/spec/STRUCTMAP/structmap-examples.xml +21 -0
  176. data/fixtures/spec/STRUCTMAP/structmap-nested.xml +10 -0
  177. data/fixtures/spec/STRUCTMAP/structmap-recto.xml +4 -0
  178. data/fixtures/spec/STRUCTMAP/structmap-seq.xml +5 -0
  179. data/fixtures/spec/STRUCTMAP/structmap-unordered-seq.xml +5 -0
  180. data/lib/cul_hydra.rb +20 -0
  181. data/lib/cul_hydra/access_controls_enforcement.rb +53 -0
  182. data/lib/cul_hydra/controllers.rb +13 -0
  183. data/lib/cul_hydra/controllers/aggregates.rb +93 -0
  184. data/lib/cul_hydra/controllers/aggregator_controller_helper.rb +27 -0
  185. data/lib/cul_hydra/controllers/catalog.rb +12 -0
  186. data/lib/cul_hydra/controllers/content_aggregators.rb +81 -0
  187. data/lib/cul_hydra/controllers/datastreams.rb +145 -0
  188. data/lib/cul_hydra/controllers/helpers.rb +10 -0
  189. data/lib/cul_hydra/controllers/helpers/active_fedora_helper_behavior.rb +9 -0
  190. data/lib/cul_hydra/controllers/helpers/application_helper_behavior.rb +16 -0
  191. data/lib/cul_hydra/controllers/helpers/dc_metadata_helper_behavior.rb +9 -0
  192. data/lib/cul_hydra/controllers/helpers/hydra_assets_helper_behavior.rb +46 -0
  193. data/lib/cul_hydra/controllers/helpers/hydra_autocomplete_helper_behavior.rb +35 -0
  194. data/lib/cul_hydra/controllers/helpers/hydra_uploader_helper_behavior.rb +34 -0
  195. data/lib/cul_hydra/controllers/helpers/resources_helper_behavior.rb +159 -0
  196. data/lib/cul_hydra/controllers/resources.rb +161 -0
  197. data/lib/cul_hydra/controllers/static_image_aggregators.rb +105 -0
  198. data/lib/cul_hydra/controllers/suggestions.rb +126 -0
  199. data/lib/cul_hydra/controllers/terms.rb +205 -0
  200. data/lib/cul_hydra/engine.rb +31 -0
  201. data/lib/cul_hydra/fedora.rb +41 -0
  202. data/lib/cul_hydra/fedora/dummy_object.rb +37 -0
  203. data/lib/cul_hydra/fedora/rubydora_patch.rb +16 -0
  204. data/lib/cul_hydra/fedora/url_helper_behavior.rb +32 -0
  205. data/lib/cul_hydra/indexer.rb +102 -0
  206. data/lib/cul_hydra/om.rb +7 -0
  207. data/lib/cul_hydra/om/standard_mods.rb +115 -0
  208. data/lib/cul_hydra/risearch_members.rb +92 -0
  209. data/lib/cul_hydra/solrizer.rb +10 -0
  210. data/lib/cul_hydra/solrizer/extractor.rb +27 -0
  211. data/lib/cul_hydra/solrizer/mods_fieldable.rb +473 -0
  212. data/lib/cul_hydra/solrizer/terminology_based_solrizer.rb +35 -0
  213. data/lib/cul_hydra/solrizer/value_mapper.rb +46 -0
  214. data/lib/cul_hydra/solrizer_patch.rb +172 -0
  215. data/lib/cul_hydra/version.rb +8 -0
  216. data/lib/cul_hydra/version.rb~ +8 -0
  217. data/lib/tasks/cmodel.rake +122 -0
  218. data/lib/tasks/cul_hydra_dev.rake +54 -0
  219. data/lib/tasks/index.rake +73 -0
  220. data/lib/tasks/transform.rake +23 -0
  221. metadata +503 -0
@@ -0,0 +1,605 @@
1
+ # -*- encoding: utf-8 -*-
2
+ # This file generated automatically using vocab-fetch from http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#
3
+ require 'rdf'
4
+ module RDF
5
+ class PIMO < RDF::StrictVocabulary("http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#")
6
+
7
+ # Class definitions
8
+ term :AbstractClass,
9
+ label: "AbstractClass".freeze,
10
+ type: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#ClassRole".freeze
11
+ term :Agent,
12
+ comment: %(An agent \(eg. person, group, software or physical artifact\). The Agent class is the class of agents; things that do stuff. A well known sub-class is Person, representing people. Other kinds of agents include Organization and Group.
13
+ \(inspired by FOAF\).
14
+ Agent is not a subclass of NAO:Party.).freeze,
15
+ "http://protege.stanford.edu/system#role" => %(abstract).freeze,
16
+ "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#classRole" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#AbstractClass).freeze,
17
+ label: "Agent".freeze,
18
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
19
+ type: "rdfs:Class".freeze
20
+ term :Association,
21
+ comment: %(An association between two or more pimo-things. This is used to model n-ary relations and metadata about relations. For example, the asociation of a person being organizational member is only effectual within a period of time \(after the person joined the organization and before the person left the organization\). There can be multiple periods of time when associations are valid.).freeze,
22
+ label: "Association".freeze,
23
+ subClassOf: ["rdfs:Resource".freeze, "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#ClassOrThingOrPropertyOrAssociation".freeze],
24
+ type: "rdfs:Class".freeze
25
+ term :Attendee,
26
+ comment: %(The role of someone attending a social event.).freeze,
27
+ label: "Attendee".freeze,
28
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#PersonRole".freeze,
29
+ type: "rdfs:Class".freeze
30
+ term :BlogPost,
31
+ comment: %(A blog note. You just want to write something down right now and need a place to do that. Add a blog-note! This is an example class for a document type, there are more detailled ontologies to model Blog-Posts \(like SIOC\).).freeze,
32
+ label: "Blog Post".freeze,
33
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Document".freeze,
34
+ type: "rdfs:Class".freeze
35
+ term :Building,
36
+ comment: %(A structure that has a roof and walls and stands more or less permanently in one place; "there was a three-story building on the corner"; "it was an imposing edifice". \(Definition from SUMO\).).freeze,
37
+ label: "Building".freeze,
38
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Location".freeze,
39
+ type: "rdfs:Class".freeze
40
+ term :City,
41
+ comment: %(A large and densely populated urban area; may include several independent administrative districts; "Ancient Troy was a great city". \(Definition from SUMO\)).freeze,
42
+ label: "City".freeze,
43
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Location".freeze,
44
+ type: "rdfs:Class".freeze
45
+ term :ClassOrThing,
46
+ comment: %(Superclass of class and thing. To add properties to both class and thing.).freeze,
47
+ "http://protege.stanford.edu/system#role" => %(abstract).freeze,
48
+ "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#classRole" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#AbstractClass).freeze,
49
+ label: "ClassOrThing".freeze,
50
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#ClassOrThingOrPropertyOrAssociation".freeze,
51
+ type: "rdfs:Class".freeze
52
+ term :ClassOrThingOrPropertyOrAssociation,
53
+ comment: %(Superclass of resources that can be generated by the user.).freeze,
54
+ "http://protege.stanford.edu/system#role" => %(abstract).freeze,
55
+ "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#classRole" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#AbstractClass).freeze,
56
+ label: "ClassOrThingOrPropertyOrAssociation".freeze,
57
+ subClassOf: "rdfs:Resource".freeze,
58
+ type: "rdfs:Class".freeze
59
+ term :ClassRole,
60
+ comment: %(Roles of classes in PIMO: concrete instances are Abstract and Concrete.).freeze,
61
+ label: "ClassRole".freeze,
62
+ subClassOf: "rdfs:Resource".freeze,
63
+ type: "rdfs:Class".freeze
64
+ term :Collection,
65
+ comment: %(A collection of Things, independent of their class. The items in the collection share a common property. Which property may be modelled explicitly or mentioned in the description of the Collection. The requirement of explicit modelling the semantic meaning of the collection is not mandatory, as collections can be created ad-hoc. Implizit modelling can be applied by the system by learning the properties. For example, a Collection of "Coworkers" could be defined as that all elements must be of class "Person" and have an attribute "work for the same Organization as the user". Further standards can be used to model these attributes.).freeze,
66
+ label: "Collection".freeze,
67
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
68
+ type: "rdfs:Class".freeze
69
+ term :ConcreteClass,
70
+ label: "ConcreteClass".freeze,
71
+ type: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#ClassRole".freeze
72
+ term :Contract,
73
+ comment: %(A binding agreement between two or more persons that is enforceable by law. \(Definition from SUMO\). This is an example class for a document type, there are more detailled ontologies to model Contracts.).freeze,
74
+ label: "Contract".freeze,
75
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Document".freeze,
76
+ type: "rdfs:Class".freeze
77
+ term :Country,
78
+ comment: %(The territory occupied by a nation; "he returned to the land of his birth"; "he visited several European countries". \(Definition from SUMO\)).freeze,
79
+ label: "Country".freeze,
80
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Location".freeze,
81
+ type: "rdfs:Class".freeze
82
+ term :Document,
83
+ comment: %(A generic document. This is a placeholder class for document-management domain ontologies to subclass. Create more and specified subclasses of pimo:Document for the document types in your domain. Documents are typically instances of both NFO:Document \(modeling the information element used to store the document\) and a LogicalMediaType subclass. Two examples are given for what to model here: a contract for a business domain, a BlogPost for an informal domain.).freeze,
84
+ label: "Document".freeze,
85
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#LogicalMediaType".freeze,
86
+ type: "rdfs:Class".freeze
87
+ term :Event,
88
+ comment: %(Something that happens
89
+ An Event is conceived as compact in time. \(Definition from Merriam-Webster\)).freeze,
90
+ label: "Event".freeze,
91
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#ProcessConcept".freeze,
92
+ type: "rdfs:Class".freeze
93
+ term :Locatable,
94
+ comment: %(Things that can be at a location. Abstract class, use it as a superclass of things that can be placed in physical space.).freeze,
95
+ "http://protege.stanford.edu/system#role" => %(abstract).freeze,
96
+ "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#classRole" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#AbstractClass).freeze,
97
+ label: "Locatable".freeze,
98
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
99
+ type: "rdfs:Class".freeze
100
+ term :Location,
101
+ comment: %(A physical location. Subclasses are modeled for the most common locations humans work in: Building, City, Country, Room, State. This selection is intended to be applicable cross-cultural and cross-domain. City is a prototype that can be further refined for villages, etc. Subclass of a WGS84:SpatialThing, can have geo-coordinates.).freeze,
102
+ label: "Location".freeze,
103
+ subClassOf: ["http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze, "geo:SpatialThing".freeze],
104
+ type: "rdfs:Class".freeze
105
+ term :LogicalMediaType,
106
+ comment: %(Logical media types represent the content aspect of information elements e.g. a flyer, a contract, a promotional video, a todo list. The user can create new logical media types dependend on their domain: a salesman will need MarketingFlyer, Offer, Invoice while a student might create Report, Thesis and Homework. This is independent from the information element and data object \(NIE/NFO\) in which the media type will be stored. The same contract can be stored in a PDF file, a text file, or an HTML website.
107
+ The groundingOccurrence of a LogicalMediaType is the Document that stores the content.).freeze,
108
+ "http://protege.stanford.edu/system#role" => %(abstract).freeze,
109
+ "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#classRole" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#AbstractClass).freeze,
110
+ label: "Logical Media Type".freeze,
111
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
112
+ type: "rdfs:Class".freeze
113
+ term :Meeting,
114
+ comment: %(The social act of assembling for some common purpose; "his meeting with the salesman was the high point of his day". \(Definition from SUMO\)).freeze,
115
+ label: "Meeting".freeze,
116
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#SocialEvent".freeze,
117
+ type: "rdfs:Class".freeze
118
+ term :Note,
119
+ comment: %(A note. The textual contents of the note should be expressed in the nao:description value of the note.).freeze,
120
+ label: "Note".freeze,
121
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Document".freeze,
122
+ type: "rdfs:Class".freeze
123
+ term :Organization,
124
+ comment: %(An administrative and functional structure \(as a business or a political party\). \(Definition from Merriam-Webster\)).freeze,
125
+ label: "Organization".freeze,
126
+ subClassOf: ["http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Agent".freeze, "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Locatable".freeze],
127
+ type: "rdfs:Class".freeze
128
+ term :OrganizationMember,
129
+ comment: %(The role of one or multiple persons being a member in one or multiple organizations. Use pimo:organization and pimo:roleHolder to link to the organizations and persons.).freeze,
130
+ label: "Member".freeze,
131
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#PersonRole".freeze,
132
+ type: "rdfs:Class".freeze
133
+ term :Person,
134
+ comment: %(Represents a person. Either living, dead, real or imaginary. \(Definition from foaf:Person\)).freeze,
135
+ label: "Person".freeze,
136
+ subClassOf: ["http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Agent".freeze, "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Locatable".freeze, "http://www.semanticdesktop.org/ontologies/2007/08/15/nao#Party".freeze],
137
+ type: "rdfs:Class".freeze
138
+ term :PersonGroup,
139
+ comment: %(A group of Persons. They are connected to each other by sharing a common attribute, for example they all belong to the same organization or have a common interest. Refer to pimo:Collection for more information about defining collections.).freeze,
140
+ label: "Group of Persons".freeze,
141
+ subClassOf: ["http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Agent".freeze, "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Collection".freeze],
142
+ type: "rdfs:Class".freeze
143
+ term :PersonRole,
144
+ comment: %(A person takes a certain role in a given context. The role can be that of "a mentor or another person" or "giving a talk at a meeting", etc.).freeze,
145
+ label: "Role of Person".freeze,
146
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Association".freeze,
147
+ type: "rdfs:Class".freeze
148
+ term :PersonalInformationModel,
149
+ comment: %(A Personal Information Model \(PIMO\) of a user. Represents the sum of all information from the personal knowledge workspace \(in literature also referred to as Personal Space of Information \(PSI\)\) which a user needs for Personal Information Management \(PIM\).).freeze,
150
+ label: "Personal Information Model".freeze,
151
+ subClassOf: ["rdfs:Resource".freeze, "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#KnowledgeBase".freeze],
152
+ type: "rdfs:Class".freeze
153
+ term :ProcessConcept,
154
+ comment: %(Concepts that relate to a series of actions or operations conducing to an end. Abstract class. Defines optional start and endtime properties, names taken from NCAL.).freeze,
155
+ "http://protege.stanford.edu/system#role" => %(abstract).freeze,
156
+ "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#classRole" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#AbstractClass).freeze,
157
+ label: "Process Concept".freeze,
158
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
159
+ type: "rdfs:Class".freeze
160
+ term :Project,
161
+ comment: %(Any piece of work that is undertaken or attempted \(Wordnet\). An enterprise carefully planned to achieve a particular aim \(Oxford Dictionary\).).freeze,
162
+ label: "Project".freeze,
163
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#ProcessConcept".freeze,
164
+ type: "rdfs:Class".freeze
165
+ term :Room,
166
+ comment: %(A properPart of a Building which is separated from the exterior of the Building and/or other Rooms of the Building by walls. Some Rooms may have a specific purpose, e.g. sleeping, bathing, cooking, entertainment, etc. \(Definition from SUMO\).).freeze,
167
+ label: "Room".freeze,
168
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Location".freeze,
169
+ type: "rdfs:Class".freeze
170
+ term :SocialEvent,
171
+ comment: %(A social occasion or activity. \(Definition from Merriam-Webster\)).freeze,
172
+ label: "Social Event".freeze,
173
+ subClassOf: ["http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Event".freeze, "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Locatable".freeze],
174
+ type: "rdfs:Class".freeze
175
+ term :State,
176
+ comment: %(Administrative subdivisions of a Nation that are broader than any other political subdivisions that may exist. This Class includes the states of the United States, as well as the provinces of Canada and European countries. \(Definition from SUMO\).).freeze,
177
+ label: "State".freeze,
178
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Location".freeze,
179
+ type: "rdfs:Class".freeze
180
+ term :Tag,
181
+ comment: %(Tags in the context of PIMO. A marker class for Things that are used to categorize documents \(or other things\). Tags must be a kind of Thing and must have a unique label. Documents should not be Tags by default.).freeze,
182
+ "http://protege.stanford.edu/system#role" => %(abstract).freeze,
183
+ "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#classRole" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#AbstractClass).freeze,
184
+ label: "Tag".freeze,
185
+ subClassOf: ["http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze, "http://www.semanticdesktop.org/ontologies/2007/08/15/nao#Tag".freeze],
186
+ type: "rdfs:Class".freeze
187
+ term :Task,
188
+ comment: %(A \(usually assigned\) piece of work \(often to be finished within a certain time\). \(Definition from Merriam-Webster\)).freeze,
189
+ label: "Task".freeze,
190
+ subClassOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#ProcessConcept".freeze,
191
+ type: "rdfs:Class".freeze
192
+ term :Thing,
193
+ comment: %(Entities that are in the direct attention of the user when doing knowledge work.).freeze,
194
+ label: "Thing".freeze,
195
+ subClassOf: ["http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#ClassOrThing".freeze, "rdfs:Resource".freeze],
196
+ type: "rdfs:Class".freeze
197
+ term :Topic,
198
+ comment: %(A topic is the subject of a discussion or document. Topics are distinguished from Things in their taxonomic nature, examples are scientific areas such as "Information Science", "Biology", or categories used in content syndication such as "Sports", "Politics". They are specific to the user's domain.).freeze,
199
+ label: "Topic".freeze,
200
+ subClassOf: ["http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Tag".freeze, "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze],
201
+ type: "rdfs:Class".freeze
202
+
203
+ # Property definitions
204
+ property :associationEffectual,
205
+ comment: %(During which time is this association effective? If omitted, the association is always effective. Start time and end-time may be left open, an open start time indicates that the fact is unknown, an open end-time indicates that the end-date is either unknown or the association has not ended.
206
+ There can be multiple effectual periods.).freeze,
207
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Association".freeze,
208
+ label: "association effectual during".freeze,
209
+ range: "rdfs:Resource".freeze,
210
+ type: "rdf:Property".freeze
211
+ property :associationMember,
212
+ comment: %(An super-property of all roles that an entity can have in an association. Member is the generic role of a thing in an association. Association subclasses should define sub-properties of this property. Associations can have Things as).freeze,
213
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Association".freeze,
214
+ label: "association member".freeze,
215
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
216
+ type: "rdf:Property".freeze
217
+ property :attendee,
218
+ comment: %(A social event is attended by a person.).freeze,
219
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#SocialEvent".freeze,
220
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#attends).freeze,
221
+ label: "attendee".freeze,
222
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Person".freeze,
223
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#isRelated".freeze,
224
+ type: "rdf:Property".freeze
225
+ property :attendingMeeting,
226
+ comment: %(the attended meeting).freeze,
227
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Attendee".freeze,
228
+ label: "attending meeting".freeze,
229
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#SocialEvent".freeze,
230
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#roleContext".freeze,
231
+ type: "rdf:Property".freeze
232
+ property :attends,
233
+ comment: %(A person attends a social event.).freeze,
234
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Person".freeze,
235
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#attendee).freeze,
236
+ label: "attends event".freeze,
237
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#SocialEvent".freeze,
238
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#isRelated".freeze,
239
+ type: "rdf:Property".freeze
240
+ property :classRole,
241
+ comment: %(Annotating abstract and concrete classes. Implementations may offer the feature to hide abstract classes. By default, classes are concrete. Classes can be declared abstract by setting their classRole to abstract. Instances should not have an abstract class as type \(if not inferred\).).freeze,
242
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze,
243
+ label: "class role".freeze,
244
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#ClassRole".freeze,
245
+ type: "rdf:Property".freeze
246
+ property :containsLocation,
247
+ comment: %(The subject location contains the object location. For example, a building contains a room or a country contains a city.).freeze,
248
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Location".freeze,
249
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#locatedWithin).freeze,
250
+ label: "contains location".freeze,
251
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Location".freeze,
252
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#hasPart".freeze,
253
+ type: "rdf:Property".freeze
254
+ property :createdPimo,
255
+ comment: %(The creator of the Personal Information Model. The human being whose mental models are represented in the PIMO.).freeze,
256
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Agent".freeze,
257
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#creator).freeze,
258
+ label: "created Pimo".freeze,
259
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#PersonalInformationModel".freeze,
260
+ type: "rdf:Property".freeze
261
+ property :creator,
262
+ comment: %(The creator of the Personal Information Model. A subproperty of NAO:creator. The human being whose mental models are represented in the PIMO. Range is an Agent.).freeze,
263
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#PersonalInformationModel".freeze,
264
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#createdPimo).freeze,
265
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze,
266
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#minCardinality" => %(1).freeze,
267
+ label: "creator".freeze,
268
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Agent".freeze,
269
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/08/15/nao#creator".freeze,
270
+ type: "rdf:Property".freeze
271
+ property :datatypeProperty,
272
+ comment: %(The object of statements is a literal, resource, or datatype value describing the subject thing. Users should be able to edit statements defined with this property. Abstract super-property.).freeze,
273
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
274
+ label: "datatype property".freeze,
275
+ type: "rdf:Property".freeze
276
+ property :dtend,
277
+ comment: %(This property specifies the date and time when a process ends. Inspired by NCAL:dtend.).freeze,
278
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#ProcessConcept".freeze,
279
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze,
280
+ label: "end date".freeze,
281
+ range: "xsd:dateTime".freeze,
282
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#datatypeProperty".freeze,
283
+ type: "rdf:Property".freeze
284
+ property :dtstart,
285
+ comment: %(This property specifies when the process begins. Inspired by NCAL:dtstart.).freeze,
286
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#ProcessConcept".freeze,
287
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze,
288
+ label: "start date".freeze,
289
+ range: "xsd:dateTime".freeze,
290
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#datatypeProperty".freeze,
291
+ type: "rdf:Property".freeze
292
+ property :duration,
293
+ comment: %(The duration of the process \(meeting, event, etc\). Difference between start and end time.).freeze,
294
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#ProcessConcept".freeze,
295
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze,
296
+ label: "duration".freeze,
297
+ range: "xsd:duration".freeze,
298
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#datatypeProperty".freeze,
299
+ type: "rdf:Property".freeze
300
+ property :groundingForDeletedThing,
301
+ comment: %(This NIE Information Element was used as a grounding occurrence for the object Thing. The Thing was then deleted by the user manually, indicating that this Information Element should not cause an automatic creation of another Thing in the future. The object resource has no range to indicate that it was completely removed from the user's PIMO, including the rdf:type statement. Relevant for data alignment and enrichment algorithms.).freeze,
302
+ label: "grounding for deleted thing".freeze,
303
+ range: "rdfs:Resource".freeze,
304
+ type: "rdf:Property".freeze
305
+ property :groundingOccurrence,
306
+ comment: %(The subject Thing represents the entity that is described in the object InformationElement. The subject Thing is the canonical, unique representation in the personal information model for the entity described in the object. Multiple InformationElements can be the grounding occurrence of the same Thing, one InformationElement can be the groundingOccurrence of only one Thing.).freeze,
307
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
308
+ label: "grounding occurrence".freeze,
309
+ range: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#InformationElement".freeze,
310
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#occurrence".freeze,
311
+ type: ["rdf:Property".freeze, "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#InverseFunctionalProperty".freeze]
312
+ property :hasDeprecatedRepresentation,
313
+ comment: %(The subject Thing was represented previously using the object resource. This indicates that the object resource was a duplicate representation of the subject and merged with the subject. Implementations can use this property to resolve dangling links in distributed system. When encountering resources that are deprecated representations of a Thing, they should be replaced with the Thing. The range is not declared as we assume all knowledge about the object is gone, including its rdf:type.).freeze,
314
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
315
+ label: "has deprecated representation".freeze,
316
+ range: "rdfs:Resource".freeze,
317
+ type: "rdf:Property".freeze
318
+ property :hasFolder,
319
+ comment: %(Folders can be used to store information elements related to a Thing or Class. This property can be used to connect a Class or Thing to existing Folders. Implementations can suggest annotations for documents stored inside these folders or suggest the folder for new documents related to the Thing or Class.).freeze,
320
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#ClassOrThing".freeze,
321
+ label: "has folder".freeze,
322
+ range: "http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#Folder".freeze,
323
+ type: "rdf:Property".freeze
324
+ property :hasGlobalNamespace,
325
+ comment: %(The global namespace of this user using the semdesk uri scheme, based on the Global Identifier of the user. Example semdesk://bob@example.com/things/. See http://dev.nepomuk.semanticdesktop.org/repos/trunk/doc/2008_09_semdeskurischeme/index.html).freeze,
326
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#PersonalInformationModel".freeze,
327
+ label: "global namespace".freeze,
328
+ range: "rdfs:Literal".freeze,
329
+ type: "rdf:Property".freeze
330
+ property :hasInterest,
331
+ comment: %(Marks a pimo:Tag or a pimo:Topic \(its subclass\) as an interest of a person or a group.).freeze,
332
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Agent".freeze,
333
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#isInterestOf).freeze,
334
+ label: "has interest".freeze,
335
+ range: ["http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Tag".freeze, "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Topic".freeze],
336
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#hasTag".freeze,
337
+ type: "rdf:Property".freeze
338
+ property :hasLocalNamespace,
339
+ comment: %(The local namespace of this user using the semdesk uri scheme, based on the Local Identifier of the user. Example semdesk://bob@/things/. See http://dev.nepomuk.semanticdesktop.org/repos/trunk/doc/2008_09_semdeskurischeme/index.html).freeze,
340
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#PersonalInformationModel".freeze,
341
+ label: "local namespace".freeze,
342
+ range: "rdfs:Literal".freeze,
343
+ type: "rdf:Property".freeze
344
+ property :hasLocation,
345
+ comment: %(The subject thing is currently located at the object location.).freeze,
346
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Locatable".freeze,
347
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#isLocationOf).freeze,
348
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze,
349
+ label: "has location".freeze,
350
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Location".freeze,
351
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#isRelated".freeze,
352
+ type: "rdf:Property".freeze
353
+ property :hasMember,
354
+ comment: %(Defines which agents form part of a given person group.).freeze,
355
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#PersonGroup".freeze,
356
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#memberOf).freeze,
357
+ label: "has group member".freeze,
358
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Agent".freeze,
359
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#hasPart".freeze,
360
+ type: "rdf:Property".freeze
361
+ property :hasOrganizationMember,
362
+ comment: %(The subject organization has the object person or organization \(Agent\) as a member.).freeze,
363
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Organization".freeze,
364
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#isOrganizationMemberOf).freeze,
365
+ label: "organization has member".freeze,
366
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Agent".freeze,
367
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#hasPart".freeze,
368
+ type: "rdf:Property".freeze
369
+ property :hasOtherConceptualization,
370
+ comment: %(Short: hasOtherRepresentation points from a Class in your PIMO to a class in a domain ontology that represents the same class. Longer: hasOtherConceptualization means that a class of real world objects O represented by a concept C1 in the ontology has additional conceptualizations \(as classes C2-Cn in different domain ontologies\).
371
+ This means: IF \(O_i is conceptialized by C_j in Ontology_k\) AND \(O_l is conceptialized by C_m in Ontology_n\) THEN \(O_i and O_l is the same set of objects\).
372
+ hasOtherConceptualization is an transitive relation, but not equivalent \(not symmetric nor reflexive\).).freeze,
373
+ domain: "rdfs:Class".freeze,
374
+ label: "has other conceptualization".freeze,
375
+ range: "rdfs:Class".freeze,
376
+ subPropertyOf: ["rdfs:subClassOf".freeze, "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#occurrence".freeze],
377
+ type: ["rdf:Property".freeze, "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#TransitiveProperty".freeze]
378
+ property :hasOtherRepresentation,
379
+ comment: %(hasOtherRepresentation points from a Thing in your PIMO to a thing in an ontology that represents the same real world thing.
380
+ This means that the real world object O represented by an instance I1 has additional representations \(as instances I2-In of different conceptualizations\).
381
+ This means: IF \(I_i represents O_j in Ontology_k\) AND \(I_m represents O_n in Ontology_o\) THEN \(O_n and O_j are the same object\).
382
+ hasOtherRepresentation is a transitive relation, but not equivalent \(not symmetric nor reflexive\). For example, the URI of a foaf:Person representation published on the web is a hasOtherRepresentation for the person. This property is inverse functional, two Things from two information models having the same hasOtherRepresentation are considered to be representations of the same entity from the real world.).freeze,
383
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
384
+ label: "has other representation".freeze,
385
+ range: "rdfs:Resource".freeze,
386
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#occurrence".freeze,
387
+ type: ["rdf:Property".freeze, "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#TransitiveProperty".freeze]
388
+ property :hasOtherSlot,
389
+ comment: %(hasOtherSlot points from a clot in your PIMO to a slot in a domain ontology that represents the same connection idea.).freeze,
390
+ domain: "rdf:Property".freeze,
391
+ label: "represented by other slot".freeze,
392
+ range: ["rdf:Property".freeze, "rdfs:Resource".freeze],
393
+ subPropertyOf: "rdfs:subPropertyOf".freeze,
394
+ type: ["rdf:Property".freeze, "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#TransitiveProperty".freeze]
395
+ property :hasPart,
396
+ comment: %(The object is part of the subject. Like a page is part of a book or an engine is part of a car. You can make sub-properties of this to reflect more detailed relations. The semantics of this relations is the same as skos:narrowerPartitive).freeze,
397
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
398
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#partOf).freeze,
399
+ label: "has part".freeze,
400
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
401
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#objectProperty".freeze,
402
+ type: "rdf:Property".freeze
403
+ property :hasRootTopic,
404
+ comment: %(The root topics of this PersonalInformationModel's topic hierarchy. Every topic that has no pimo:superTopic is a root topic. Semantically equivalent to skos:hasTopConcept.).freeze,
405
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#PersonalInformationModel".freeze,
406
+ label: "root topic".freeze,
407
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Topic".freeze,
408
+ type: "rdf:Property".freeze
409
+ property :hasTag,
410
+ comment: %(The subject's contents describes the object. Or the subject can be seen as belonging to the thing described by the object. Similar semantics as skos:subject.).freeze,
411
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
412
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#isTagFor).freeze,
413
+ label: "has tag".freeze,
414
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Tag".freeze,
415
+ subPropertyOf: ["http://www.semanticdesktop.org/ontologies/2007/08/15/nao#hasTag".freeze, "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#objectProperty".freeze],
416
+ type: "rdf:Property".freeze
417
+ property :isDefinedBy,
418
+ comment: %(Each element in a PIMO must be connected to the PIMO, to be able to track multiple PIMOs in a distributed scenario. Also, this is the way to find the user that this Thing belongs to.).freeze,
419
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#ClassOrThingOrPropertyOrAssociation".freeze,
420
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze,
421
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#minCardinality" => %(1).freeze,
422
+ label: "is defined by".freeze,
423
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#PersonalInformationModel".freeze,
424
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/08/15/nao#hasDataGraph".freeze,
425
+ type: "rdf:Property".freeze
426
+ property :isInterestOf,
427
+ comment: %(Links interests, as instances of pimo:Tag or a pimo:Topic \(its subclass\), to a person or a group.).freeze,
428
+ domain: ["http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Tag".freeze, "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Topic".freeze],
429
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#hasInterest).freeze,
430
+ label: "is interest Of".freeze,
431
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Agent".freeze,
432
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#isTagFor".freeze,
433
+ type: "rdf:Property".freeze
434
+ property :isLocationOf,
435
+ comment: %(The subject location is the current location of the object.).freeze,
436
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Location".freeze,
437
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#hasLocation).freeze,
438
+ label: "is location of".freeze,
439
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
440
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#isRelated".freeze,
441
+ type: "rdf:Property".freeze
442
+ property :isOrganizationMemberOf,
443
+ comment: %(The subject person or organozation \(Agent\) is member of the object organization.).freeze,
444
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Agent".freeze,
445
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#hasOrganizationMember).freeze,
446
+ label: "is member of organization".freeze,
447
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Organization".freeze,
448
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#partOf".freeze,
449
+ type: "rdf:Property".freeze
450
+ property :isRelated,
451
+ comment: %(The thing is related to the other thing. Similar in meaning to skos:related. Symmetric but not transitive.).freeze,
452
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
453
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#isRelated).freeze,
454
+ label: "is related".freeze,
455
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
456
+ subPropertyOf: ["http://www.semanticdesktop.org/ontologies/2007/08/15/nao#isRelated".freeze, "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#objectProperty".freeze],
457
+ type: "rdf:Property".freeze
458
+ property :isTagFor,
459
+ comment: %(This thing is described further in the object thing. Similar semantics as skos:isSubjectOf.).freeze,
460
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Tag".freeze,
461
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#hasTag).freeze,
462
+ label: "is tag for".freeze,
463
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
464
+ subPropertyOf: ["http://www.semanticdesktop.org/ontologies/2007/08/15/nao#isTagFor".freeze, "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#objectProperty".freeze],
465
+ type: "rdf:Property".freeze
466
+ property :isWriteable,
467
+ comment: %(Defines if this information model can be modified by the user of the system. This is usually false for imported ontologies and true for the user's own PersonalInformationModel.).freeze,
468
+ label: "is writeable".freeze,
469
+ range: "rdfs:Literal".freeze,
470
+ type: "rdf:Property".freeze
471
+ property :jabberId,
472
+ comment: %(Jabber-ID of the user. Used to communicate amongst peers in the social scenario of the semantic desktop. Use the xmpp node identifier as specified by RFC3920, see http://www.xmpp.org/specs/rfc3920.html#addressing-node. The format is the same as e-mail addresses: username@hostname.).freeze,
473
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Person".freeze,
474
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze,
475
+ label: "jabber ID of the user".freeze,
476
+ range: "rdfs:Literal".freeze,
477
+ type: "rdf:Property".freeze
478
+ property :locatedWithin,
479
+ comment: %(The subject location is contained within the object location. For example, a room is located within a building or a city is located within a country.).freeze,
480
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Location".freeze,
481
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#containsLocation).freeze,
482
+ label: "located within".freeze,
483
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Location".freeze,
484
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#partOf".freeze,
485
+ type: "rdf:Property".freeze
486
+ property :memberOf,
487
+ comment: %(This property can be used to organise agents within groups. Supplemented with an inverse property.).freeze,
488
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Agent".freeze,
489
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#hasMember).freeze,
490
+ label: "member of group".freeze,
491
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#PersonGroup".freeze,
492
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#partOf".freeze,
493
+ type: "rdf:Property".freeze
494
+ property :objectProperty,
495
+ comment: %(The object of statements is another Thing. Users should be able to edit statements defined with this property. Abstract super-property.).freeze,
496
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
497
+ label: "object property".freeze,
498
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
499
+ type: "rdf:Property".freeze
500
+ property :occurrence,
501
+ comment: %(The subject Thing is represented also in the object resource. All facts added to the object resource are valid for the subject thing. The subject is the canonical represtation of the object. In particual, this implies when \(?object ?p ?v\) -> \(?subject ?p ?v\) and \(?s ?p ?object\) -> \(?s ?p ?subject\). The class of the object is not defined, but should be compatible with the class of the subject. Occurrence relations can be inferred through same identifiers or referencingOccurrence relations.).freeze,
502
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
503
+ label: "occurrence".freeze,
504
+ range: "rdfs:Resource".freeze,
505
+ type: "rdf:Property".freeze
506
+ property :organization,
507
+ comment: %(relation to the organization in an OrganizationMember association.).freeze,
508
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#OrganizationMember".freeze,
509
+ label: "organization".freeze,
510
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Organization".freeze,
511
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#associationMember".freeze,
512
+ type: "rdf:Property".freeze
513
+ property :partOf,
514
+ comment: %(This is part of the object. Like a page is part of a book or an engine is part of a car. You can make sub-properties of this to reflect more detailed relations.).freeze,
515
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
516
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#hasPart).freeze,
517
+ label: "part of".freeze,
518
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
519
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#objectProperty".freeze,
520
+ type: "rdf:Property".freeze
521
+ property :referencingOccurrence,
522
+ comment: %(The subject thing is described in the object document. Ideally, the document is public and its primary topic is the thing. Although this property is not inverse-functional \(because the Occurrences are not canonical elements of a formal ontology\) this property allows to use public documents, such as wikipedia pages, as indicators identity. The more formal hasOtherRepresentation property can be used when an ontology about the subject exists.).freeze,
523
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
524
+ label: "referencing occurrence".freeze,
525
+ range: "http://www.semanticdesktop.org/ontologies/2007/01/19/nie#InformationElement".freeze,
526
+ type: "rdf:Property".freeze
527
+ property :roleContext,
528
+ comment: %(The context where the role-holder impersonates this role. For example, the company where a person is employed.).freeze,
529
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#PersonRole".freeze,
530
+ label: "role context".freeze,
531
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Thing".freeze,
532
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#associationMember".freeze,
533
+ type: "rdf:Property".freeze
534
+ property :roleHolder,
535
+ comment: %(the person taking the role).freeze,
536
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#PersonRole".freeze,
537
+ label: "role holder".freeze,
538
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Person".freeze,
539
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#associationMember".freeze,
540
+ type: "rdf:Property".freeze
541
+ property :subTopic,
542
+ comment: %(The object topic is more specific in meaning than the subject topic. Transitive. Similar in meaning to skos:narrower).freeze,
543
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Topic".freeze,
544
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#superTopic).freeze,
545
+ label: "sub topic".freeze,
546
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Topic".freeze,
547
+ subPropertyOf: ["http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#objectProperty".freeze, "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#hasPart".freeze],
548
+ type: ["rdf:Property".freeze, "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#TransitiveProperty".freeze]
549
+ property :superTopic,
550
+ comment: %(The object topic is more general in meaning than the subject topic. Transitive. Similar to skos:broader.).freeze,
551
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Topic".freeze,
552
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#inverseProperty" => %(http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#subTopic).freeze,
553
+ label: "broader topic".freeze,
554
+ range: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Topic".freeze,
555
+ subPropertyOf: ["http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#partOf".freeze, "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#objectProperty".freeze],
556
+ type: ["rdf:Property".freeze, "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#TransitiveProperty".freeze]
557
+ property :tagLabel,
558
+ comment: %(The unique label of the tag. The label must be unique within the scope of one PersonalInformationModel. It is required and a subproperty of nao:prefLabel. It clarifies the use of nao:personalIdentifier by restricting the scope to tags. Semantically equivalent to skos:prefLabel, where uniqueness of labels is also recommended.).freeze,
559
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Tag".freeze,
560
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze,
561
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#minCardinality" => %(1).freeze,
562
+ label: "tag label".freeze,
563
+ range: "rdfs:Literal".freeze,
564
+ subPropertyOf: ["http://www.semanticdesktop.org/ontologies/2007/08/15/nao#prefLabel".freeze, "http://www.semanticdesktop.org/ontologies/2007/08/15/nao#personalIdentifier".freeze],
565
+ type: "rdf:Property".freeze
566
+ property :taskDueTime,
567
+ comment: %(when is this task due? Represented in ISO 8601, example: 2003-11-22T17:00:00).freeze,
568
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#Task".freeze,
569
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze,
570
+ label: "task due time".freeze,
571
+ range: "xsd:dateTime".freeze,
572
+ subPropertyOf: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#datatypeProperty".freeze,
573
+ type: "rdf:Property".freeze
574
+ property :wikiText,
575
+ comment: %(A wiki-like free-text description of a Thing or a Class. The text can be formatted using a limited set of HTML elements and can contain links to other Things. The format is described in detail in the WIF specification \(http://semanticweb.org/wiki/Wiki_Interchange_Format\).).freeze,
576
+ domain: "http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#ClassOrThing".freeze,
577
+ "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#maxCardinality" => %(1).freeze,
578
+ label: "wiki text".freeze,
579
+ range: "rdfs:Literal".freeze,
580
+ type: "rdf:Property".freeze
581
+
582
+ # Extra definitions
583
+ term :FullPimoView,
584
+ label: "FullPimoView".freeze,
585
+ type: "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#GraphView".freeze
586
+ term :GroundingClosure,
587
+ label: "GroundingClosure".freeze,
588
+ type: "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#GraphView".freeze
589
+ term :InferOccurrences,
590
+ label: "InferOccurrences".freeze,
591
+ type: "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#GraphView".freeze
592
+ term :OccurrenceClosure,
593
+ label: "OccurrenceClosure".freeze,
594
+ type: "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#GraphView".freeze
595
+ term :RuleViewSpecificationGroundingClosure,
596
+ label: "RuleViewSpecificationGroundingClosure".freeze,
597
+ type: "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#RuleViewSpecification".freeze
598
+ term :RuleViewSpecificationInferOccurrences,
599
+ label: "RuleViewSpecificationInferOccurrences".freeze,
600
+ type: "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#RuleViewSpecification".freeze
601
+ term :RuleViewSpecificationOccurrenceClosure,
602
+ label: "RuleViewSpecificationOccurrenceClosure".freeze,
603
+ type: "http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#RuleViewSpecification".freeze
604
+ end
605
+ end