-
Notifications
You must be signed in to change notification settings - Fork 0
/
gi2mo.owl
2470 lines (1777 loc) · 128 KB
/
gi2mo.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="http://purl.org/gi2mo/ns#"
xml:base="http://purl.org/gi2mo/ns"
xmlns:acl="http://www.w3.org/ns/auth/acl#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:xsp="http://www.owl-ontologies.com/2005/08/07/xsp.owl#"
xmlns:doap="http://usefulinc.com/ns/doap#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:scot="http://scot-project.org/scot/ns#"
xmlns:sioc="http://rdfs.org/sioc/ns#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
xmlns:tags="http://www.holygoat.co.uk/owl/redwood/0.1/tags/"
xmlns:gi2mo="http://purl.org/gi2mo/ns#"
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:protege="http://protege.stanford.edu/plugins/owl/protege#">
<owl:Ontology rdf:about="http://purl.org/gi2mo/ns">
<rdfs:comment xml:lang="en">Generic Idea and Innovation Management Ontology (GI2MO) - an ontology designed to annotate and describe resources gathered inside Idea Management Systems. The primary goal of the ontology is to cover all knowledge gathered in those systems and provide interoperability between distributed Idea Management Systems as well as other enterprise systems and the World Wide Web.</rdfs:comment>
<rdfs:label xml:lang="en">GI2MO Ontology</rdfs:label>
<rdfs:seeAlso rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/</rdfs:seeAlso>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.6</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/gi2mo/ns#complements -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#complements">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#extends"/>
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#complements"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:comment xml:lang="en">Indicates ideas that complete each other (e.g. one idea supplementing a solution ommited by the other but necessary for implementation).</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">complements</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#describesPartOf -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#describesPartOf">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#hasRelated"/>
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isDescribedIn"/>
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:comment xml:lang="en">Indicates that an idea incudes a description of what has been proposed in another idea but they might not have been merged.
For example: single complex idea describes improving a laptop model and can include ideas about new keyboard, new screen that are submitted also as seperate ideas by other users.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">describesPartOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#describesRelatedObject -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#describesRelatedObject">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#hasSimilar"/>
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#describesRelatedObject"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:comment xml:lang="en">Points to an idea that describes innovation for a different object or topic but somehow related to the current one (e.g. one object being part of the other, objects in offering of the same company branch, objects of similar use etc.).</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">describesRelatedObject</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#describesSameObject -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#describesSameObject">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#hasSimilar"/>
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#describesSameObject"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:comment xml:lang="en">Points to an idea that describes innovation for the same object or topic.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">describesSameObject</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#details -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#details">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#complements"/>
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#generalizes"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:comment xml:lang="en">Indicates that the currently described idea presents a more detailed description of another idea or its element.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">details</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#excludes -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#excludes">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#extends"/>
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#excludes"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:comment xml:lang="en">Indicates ideas that exclude each others implementation, i.e. implementing one of those ideas makes the other implossible to apply (e.g. contradictory ideas, where one proposes addition of particular feature while the other advocates its absence).</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">excludes</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#extends -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#extends">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#describesSameObject"/>
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isExtendedBy"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:comment xml:lang="en">Indicates that the current idea is an extension to some other idea (e.g. adds some new concepts or proposes to do some innovative thing in a different way).</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">extends</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#follows -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#follows">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#hasRelated"/>
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#proceeds"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:comment xml:lang="en">Indicates that the implementation of this idea should follow some other idea (i.e. the some other idea is a requirement for implementation of the described one).</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">follows</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#generalizes -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#generalizes">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#complements"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:comment xml:lang="en">Indicates that the currently described idea presents a more broad perspective than some other idea and encapsulates it on a more generic level.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">generalizes</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasAccessContol -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasAccessContol">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isAccessControlOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaContest"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#AccessContolList"/>
<rdfs:comment xml:lang="en">Property indicating an Idea/idea contest having certain collaborations permissions (e.g. public, private, editable for all etc). In case of Idea Contests this propery can be used to indicate who can take part in the competition.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasAccessControl</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasAccessRight -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasAccessRight">
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#AccessContolList"/>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#AccessType"/>
<rdfs:comment xml:lang="en">Indicates that access control list describes privilages for a certain type of access right.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasAccessRight</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasAttachment -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasAttachment">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isAttachmentOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Comment"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaContest"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#Attachment"/>
<rdfs:comment xml:lang="en">Property indicating an Idea having an Attachment.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasAttachment</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasAvatar -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasAvatar">
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#User"/>
<rdfs:comment xml:lang="en">Point to an avatar (picture) of a user</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasAvatar</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasBinaryContent -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasBinaryContent">
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#Attachment"/>
<rdfs:comment xml:lang="en">Link (URL or URI) to the attachment (file)</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasBinaryContent</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasCategory -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasCategory">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isCategoryOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Review"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaCategory"/>
<rdf:Description rdf:about="http://www.w3.org/2004/02/skos/core#Concept"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Property indicating the category of idea or a review.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasCategory</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasComment -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasComment">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isCommentOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Attachment"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Comment"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaContest"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaStatus"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Review"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#Comment"/>
<rdfs:comment xml:lang="en">Property indicating an idea or other entity having a comment.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasComment</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasContributor -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasContributor">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isContributorOf"/>
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#User"/>
<rdfs:comment xml:lang="en">Indicates that an idea has a particular contributor ( a person that did not create the idea but now activly participates in its improval/evolution)</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasContributor</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasCreator -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasCreator">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isCreatorOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Attachment"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Comment"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Description"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaContest"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Metric"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Review"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#User"/>
<rdfs:comment xml:lang="en">Property indicating an idea being created by a certain User.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasCreator</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasDescription -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasDescription">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isDescriptionOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaContest"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#Description"/>
<rdfs:comment xml:lang="en">This property indicates that an idea or another entity of the Idea Management systems (e.g. idea contest) has a more broad description then just the standard summary (e.g. idea benefits or idea contest requirements).</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasDescription</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasDuplicate -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasDuplicate">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#describesSameObject"/>
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isDuplicateOf"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:comment xml:lang="en">Indicates that some other idea has duplicated partially or fully the content of the currently described one.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasDuplicate</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasEditor -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasEditor">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isEditorOf"/>
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#VersionInfo"/>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#User"/>
<rdfs:comment xml:lang="en">Indicates the user responible for change</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasEditor</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasIdea -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasIdea">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isIdeaOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaManagementSystem"/>
<rdf:Description rdf:about="http://purl.org/innovonto/types#Session"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:comment xml:lang="en">Indicates an idea that was posted inside a particular Idea Management System instance.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hasIdea</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasIdeaContest -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasIdeaContest">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isIdeaContestOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaManagementSystem"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#IdeaContest"/>
<rdfs:comment xml:lang="en">Property indicating an idea being part of a Idea Contest or an Idea Contest being posted within an IdeaManagementSystem instance .</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasIdeaContest</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasImplementation -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasImplementation">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#hasRelated"/>
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isImplementationOf"/>
<rdfs:comment xml:lang="en">Indicates idea having an implementation as a product or a feature</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasImplementation</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasInputEndpoint -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasInputEndpoint">
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#SubmissionMethod"/>
<rdfs:comment xml:lang="en">Indicates the data entry endpoint of the submission method. This can be a web form URL, a web service address, a device URI etc.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasEndpoint</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasMember -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasMember">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isMemberOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#AccessContolList"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#UserGroup"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#User"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#UserGroup"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Describes Access Contol List/ UserGroup having a certain member(s).</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasMember</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasMetric -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasMetric">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isMetricOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaContest"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaManagementSystem"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#User"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#Metric"/>
<rdfs:comment xml:lang="en">Associates an idea or idea contest with a metric.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasMetric</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasNextVersion -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasNextVersion">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#hasPreviousVersion"/>
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:comment xml:lang="en">If exists, this property points to an Idea Object that is the next version of the described idea. New version of an idea can introduce new relationship, new idea content, split authorship etc.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasNextVersion</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasNextVersionInfo -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasNextVersionInfo">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#hasPreviousVersionInfo"/>
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#VersionInfo"/>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#VersionInfo"/>
<rdfs:comment xml:lang="en">If exists, this property points to version information of idea created after the ones describe by this version.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasNextVersionInfo</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasOrigin -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasOrigin">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#hasRelated"/>
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isOriginOf"/>
<rdfs:comment xml:lang="en">Indicates that an idea origines (was created based on other) idea.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasOrigin</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasPreviousVersion -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasPreviousVersion">
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:comment xml:lang="en">If exists, this property points to an idea which is the previous version of the currently described one. Idea versioning can be used to indicate changes in idea relationships, extensions in idea content, or changes in authorship.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasPreviousVersion</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasPreviousVersionInfo -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasPreviousVersionInfo">
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#VersionInfo"/>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#VersionInfo"/>
<rdfs:comment xml:lang="en">If exists, this property points to the previous version information of the same idea.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasPreviousVersionInfo</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasRelated -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasRelated">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#hasRelated"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:comment xml:lang="en">Describes relations between ideas and other resources, without specifying exact link type.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasRelated</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasReview -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasReview">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isReviewOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Comment"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#Review"/>
<rdfs:comment xml:lang="en">Indicates an idea having a reivew</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasReview</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasSimilar -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasSimilar">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#hasRelated"/>
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#hasSimilar"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:comment xml:lang="en">Indicates similar idea but not duplicates (e.g. idea about improving car appearance, and idea about car speed; both can mention new type of tires but also a number of different elements).</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasSimilar</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasStatus -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasStatus">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isStatusOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaContest"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaContestStatus"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaStatus"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Property indicating an Idea or IdeaContest have a given status. In case of ideas, this gives information about the position of the idea in the idea life cycle (e.g. newly submited idea, under review, implmented etc.).</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasStatus</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasSubCategory -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasSubCategory">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#hasTopCategory"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Category"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaCategory"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Category"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaCategory"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Deprecated. Use skos:narrower instead</rdfs:comment>
<rdfs:comment xml:lang="en">Describes relationship between categories where one is classified as a part of another.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasSubCategory</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasSubmissionMethod -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasSubmissionMethod">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isSubmissionMethodOf"/>
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#SubmissionMethod"/>
<rdfs:comment xml:lang="en">Property indicating an Idea being created with a particular submission method or device (e.g. thought web CMS, via call phone etc).</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasSubmissionMethod</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasSupplement -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasSupplement">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isSupplementOf"/>
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#Review"/>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#Review"/>
<rdfs:comment xml:lang="en">Indicates review being a supplement to another review (e.g. this can be used to model textual information added to Rating Review or to create compound reviews made of many ratings etc.)</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasTag -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasTag">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isTagOf"/>
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:range rdf:resource="http://scot-project.org/scot/ns#Tag"/>
<rdfs:comment xml:lang="en">Property indicating tag associated to the idea - a user created categorization of an idea.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasTag</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasTagging -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasTagging">
<owl:inverseOf rdf:resource="http://www.holygoat.co.uk/owl/redwood/0.1/tags/taggedResource"/>
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:range rdf:resource="http://www.holygoat.co.uk/owl/redwood/0.1/tags/Tagging"/>
<rdfs:comment xml:lang="en">Indicates that an idea has been tagged by a certain person at a certain point of time. The following property points to a class that describes an activity of tagging while gi2mo:hasTag points to a Tag itself.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasTag</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasTopCategory -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasTopCategory">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Category"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaCategory"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Category"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaCategory"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Deprecated. Use skos:broader instead</rdfs:comment>
<rdfs:comment xml:lang="en">Describes relationship between categories where one is classified as a part of another.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasTopCategory</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#hasVersionInfo -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#hasVersionInfo">
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isVersionInfoOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaContest"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#VersionInfo"/>
<rdfs:comment xml:lang="en">Indicates that Idea has been modified over time and has more then 1 version</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">hasVersionInfo</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#isAccessControlOf -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#isAccessControlOf">
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#AccessContolList"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaContest"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Property indicating that access control list is attached to a certain resource (e.g. idea). In case of Idea Contests this propery can be used to indicate who can take part in the competition.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">isAccessControlOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#isAccountOf -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#isAccountOf">
<owl:inverseOf rdf:resource="http://xmlns.com/foaf/0.1/account"/>
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#User"/>
<rdfs:comment xml:lang="en">Indicates that account belongs to a particular person that has a foaf description.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">isAccountOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#isAlternativeIdea -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#isAlternativeIdea">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#excludes"/>
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isAlternativeIdea"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:comment xml:lang="en">Indicates a completely different idea that in effect is impossible to implement together with this one (e.g. ideaA: add some element to an object, ideaB: remove an object entirely from the offering).</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">isAlternativeIdea</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#isAlternativeSolution -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#isAlternativeSolution">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#excludes"/>
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isAlternativeSolution"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:comment xml:lang="en">Points to an idea that refers to the same object or topic, the same problem but solved in a different way (e.g. adding a new element to a product but in two completely different ways that exlude each other implementation).</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">isAlternativeSolution</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#isAttachmentOf -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#isAttachmentOf">
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#Attachment"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaContest"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Property indicating an attachment being associated to an idea/idea contest.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">isAttachementOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#isCategoryOf -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#isCategoryOf">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Category"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaCategory"/>
<rdf:Description rdf:about="http://www.w3.org/2004/02/skos/core#Concept"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Review"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Property indicating the idea that a category characterises a particular entity in the Idea Management System.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">isCategoryOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#isCommentOf -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#isCommentOf">
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#Comment"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Comment"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaContest"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaStatus"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Review"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Property indicating an comment being attached to a certain resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">isCommentOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#isContributorOf -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#isContributorOf">
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#User"/>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:comment xml:lang="en">Indicates a person being a contributor in a certain idea (not the original creator but a participant in idea creation or improval)</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">isContributorOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#isCreatorOf -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#isCreatorOf">
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#User"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Comment"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Description"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaContest"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Metric"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Review"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">Property indicating that User is an author of a certain resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">isCreatorOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#isDescribedIn -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#isDescribedIn">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#hasRelated"/>
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#Idea"/>
<rdfs:comment xml:lang="en">Indicates that an idea (as a whole) is described in the text of another idea.
For example: single complex idea describes improving a laptop model and can include ideas about new keyboard, new screen that are also submitted as seperate ideas by other users.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">isDescribedPartiallyBy</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#isDescriptionOf -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#isDescriptionOf">
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#Description"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#Idea"/>
<rdf:Description rdf:about="http://purl.org/gi2mo/ns#IdeaContest"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<rdfs:comment xml:lang="en">This property indicates that the description is attached to a certain idea or another resource in the Idea Management systems (e.g. idea contest).</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">isDescriptionOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#isDisjoint -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#isDisjoint">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#hasRelated"/>
<owl:inverseOf rdf:resource="http://purl.org/gi2mo/ns#isDisjoint"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:comment xml:lang="en">Indicates that two ideas are not related to each other in any way.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">isDisjoint</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#isDuplicateOf -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#isDuplicateOf">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#describesSameObject"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
<rdfs:comment xml:lang="en">Indicates that an idea has been marked as duplicating the content of some other. This property can be used to distinguish between ideas that do not duplicate each other (i.e. not identical) but only one idea copying content of the other (and not the other way around).</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">isDuplicateOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#isEditorOf -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#isEditorOf">
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#User"/>
<rdfs:range rdf:resource="http://purl.org/gi2mo/ns#VersionInfo"/>
<rdfs:comment xml:lang="en">Indicates that user has created (edited) a certain version of an idea.</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">isEditorOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#isExtendedBy -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#isExtendedBy">
<rdfs:subPropertyOf rdf:resource="http://purl.org/gi2mo/ns#describesSameObject"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
<rdfs:comment xml:lang="en">Indicates that the described idea is a subject of extension by some other idea (e.g. some other idea details the current one or adds some new point of view on the same topic).</rdfs:comment>
<rdfs:isDefinedBy rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.org/gi2mo/ns</rdfs:isDefinedBy>
<rdfs:label xml:lang="en">isExtendedBy</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.org/gi2mo/ns#isIdeaContestOf -->
<owl:ObjectProperty rdf:about="http://purl.org/gi2mo/ns#isIdeaContestOf">
<rdfs:domain rdf:resource="http://purl.org/gi2mo/ns#IdeaContest"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">