This repository has been archived by the owner on Sep 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvaem
1053 lines (1049 loc) · 58.5 KB
/
vaem
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"?>
<Ontology xmlns="http://www.w3.org/2002/07/owl#"
xml:base="http://www.linkedmodel.org/1.2/schema/vaem"
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:rdfs="http://www.w3.org/2000/01/rdf-schema#"
ontologyIRI="http://www.linkedmodel.org/1.2/schema/vaem"
versionIRI="http://www.linkedmodel.org/1.2/schema/vaem">
<Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/>
<Prefix name="rdf" IRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
<Prefix name="xml" IRI="http://www.w3.org/XML/1998/namespace"/>
<Prefix name="xsd" IRI="http://www.w3.org/2001/XMLSchema#"/>
<Prefix name="rdfs" IRI="http://www.w3.org/2000/01/rdf-schema#"/>
<Annotation>
<AnnotationProperty IRI="http://www.linkedmodel.org/schema/vaem#name"/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">VAEM</Literal>
</Annotation>
<Annotation>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/title"/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Vocabulary for Attaching Essential Metadata</Literal>
</Annotation>
<Annotation>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/author"/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Ralph Hodgson</Literal>
</Annotation>
<Annotation>
<AnnotationProperty abbreviatedIRI="owl:versionInfo"/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">$Id: SCHEMA_vaem-v1.2.ttl 6563 2013-08-28 11:43:24Z RalphHodgson $</Literal>
</Annotation>
<Annotation>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Vocabulary for Attaching Essential Metadata</Literal>
</Annotation>
<Annotation>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/contributor"/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Irene Polikoff</Literal>
</Annotation>
<Annotation>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/subject"/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Metadata</Literal>
</Annotation>
<Declaration>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#hasCatalogEntry"/>
</Declaration>
<Declaration>
<Datatype IRI="http://www.linkedmodel.org/schema/vaem#numericUnion"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/title"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/contributor"/>
</Declaration>
<Declaration>
<Class IRI="http://www.linkedmodel.org/schema/vaem#LicenseModel"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://www.linkedmodel.org/schema/vaem#comment"/>
</Declaration>
<Declaration>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#date"/>
</Declaration>
<Declaration>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#revision"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#withAttributionTo"/>
</Declaration>
<Declaration>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#lastUpdated"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#usesNonImportedResource"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://www.linkedmodel.org/schema/vaem#isRefinedBy"/>
</Declaration>
<Declaration>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#dateCreated"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#reifiableBy"/>
</Declaration>
<Declaration>
<Class IRI="http://www.linkedmodel.org/schema/vaem#CatalogEntry"/>
</Declaration>
<Declaration>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#name"/>
</Declaration>
<Declaration>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#title"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#owningParty"/>
</Declaration>
<Declaration>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#owner"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/author"/>
</Declaration>
<Declaration>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#namespace"/>
</Declaration>
<Declaration>
<Datatype IRI="http://www.linkedmodel.org/schema/vaem#dateUnion"/>
</Declaration>
<Declaration>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#releaseDate"/>
</Declaration>
<Declaration>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#description"/>
</Declaration>
<Declaration>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#url"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#hasGraphRole"/>
</Declaration>
<Declaration>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
</Declaration>
<Declaration>
<Class IRI="http://www.linkedmodel.org/schema/vaem#Attribution"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://www.linkedmodel.org/schema/vaem#todo"/>
</Declaration>
<Declaration>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#namespacePrefix"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#hasLicenseType"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/subject"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#VocabularyGraph"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://purl.org/dc/elements/1.1/author"/>
</Declaration>
<Declaration>
<Datatype abbreviatedIRI="xsd:date"/>
</Declaration>
<Declaration>
<Class abbreviatedIRI="rdfs:Resource"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#ProxyGraph"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#ViewGraph"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#DataGraph"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://purl.org/dc/elements/1.1/description"/>
</Declaration>
<Declaration>
<Datatype abbreviatedIRI="xsd:gYear"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#FunctionsGraph"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#ownedBy"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#SchemaGraph"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#CollectionGraph"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://purl.org/dc/elements/1.1/title"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#MappingGraph"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#AnnotationsGraph"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://purl.org/dc/elements/1.1/subject"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://voag.linkedmodel.org/voag#VAEM-CatalogEntry"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://purl.org/dc/elements/1.1/contributor"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://voag.linkedmodel.org/voag#TopQuadrantAttribution"/>
</Declaration>
<Declaration>
<Class abbreviatedIRI="owl:Ontology"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#BridgeGraph"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#CurationGraph"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://voag.linkedmodel.org/voag#CC-SHAREALIKE_3PT0-US"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#RulesGraph"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#ScriptGraph"/>
</Declaration>
<Declaration>
<NamedIndividual IRI=""/>
</Declaration>
<EquivalentClasses>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
<ObjectOneOf>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#CollectionGraph"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#RulesGraph"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#VocabularyGraph"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#ScriptGraph"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#BridgeGraph"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#ProxyGraph"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#ViewGraph"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#DataGraph"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#MappingGraph"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#CurationGraph"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#AnnotationsGraph"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#FunctionsGraph"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#SchemaGraph"/>
</ObjectOneOf>
</EquivalentClasses>
<SubClassOf>
<Class IRI="http://www.linkedmodel.org/schema/vaem#Attribution"/>
<Class abbreviatedIRI="owl:Thing"/>
</SubClassOf>
<SubClassOf>
<Class IRI="http://www.linkedmodel.org/schema/vaem#Attribution"/>
<DataExactCardinality cardinality="1">
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#description"/>
</DataExactCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="http://www.linkedmodel.org/schema/vaem#CatalogEntry"/>
<DataMinCardinality cardinality="1">
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#description"/>
</DataMinCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
<Class abbreviatedIRI="owl:Thing"/>
</SubClassOf>
<SubClassOf>
<Class IRI="http://www.linkedmodel.org/schema/vaem#LicenseModel"/>
<DataMinCardinality cardinality="1">
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#description"/>
</DataMinCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="http://www.linkedmodel.org/schema/vaem#LicenseModel"/>
<DataMaxCardinality cardinality="1">
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#url"/>
</DataMaxCardinality>
</SubClassOf>
<SubClassOf>
<Class IRI="http://www.linkedmodel.org/schema/vaem#dateUnion"/>
<Class abbreviatedIRI="rdfs:Resource"/>
</SubClassOf>
<SubClassOf>
<Class IRI="http://www.linkedmodel.org/schema/vaem#numericUnion"/>
<Class abbreviatedIRI="rdfs:Resource"/>
</SubClassOf>
<SubClassOf>
<Class abbreviatedIRI="owl:Ontology"/>
<ObjectAllValuesFrom>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#hasGraphRole"/>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
</ObjectAllValuesFrom>
</SubClassOf>
<SubClassOf>
<Class abbreviatedIRI="owl:Ontology"/>
<ObjectAllValuesFrom>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#hasLicenseType"/>
<Class IRI="http://www.linkedmodel.org/schema/vaem#LicenseModel"/>
</ObjectAllValuesFrom>
</SubClassOf>
<SubClassOf>
<Class abbreviatedIRI="owl:Ontology"/>
<ObjectAllValuesFrom>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#usesNonImportedResource"/>
<Class abbreviatedIRI="rdfs:Resource"/>
</ObjectAllValuesFrom>
</SubClassOf>
<SubClassOf>
<Class abbreviatedIRI="owl:Ontology"/>
<ObjectAllValuesFrom>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#withAttributionTo"/>
<Class IRI="http://www.linkedmodel.org/schema/vaem#Attribution"/>
</ObjectAllValuesFrom>
</SubClassOf>
<SubClassOf>
<Class abbreviatedIRI="owl:Ontology"/>
<ObjectMaxCardinality cardinality="1">
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#hasCatalogEntry"/>
</ObjectMaxCardinality>
</SubClassOf>
<SubClassOf>
<Class abbreviatedIRI="owl:Ontology"/>
<ObjectMaxCardinality cardinality="1">
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#hasLicenseType"/>
</ObjectMaxCardinality>
</SubClassOf>
<SubClassOf>
<Class abbreviatedIRI="owl:Ontology"/>
<ObjectMaxCardinality cardinality="1">
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#owner"/>
</ObjectMaxCardinality>
</SubClassOf>
<SubClassOf>
<Class abbreviatedIRI="owl:Ontology"/>
<ObjectMaxCardinality cardinality="1">
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#owningParty"/>
</ObjectMaxCardinality>
</SubClassOf>
<SubClassOf>
<Class abbreviatedIRI="owl:Ontology"/>
<DataAllValuesFrom>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#description"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataAllValuesFrom>
</SubClassOf>
<SubClassOf>
<Class abbreviatedIRI="owl:Ontology"/>
<DataMaxCardinality cardinality="1">
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#dateCreated"/>
</DataMaxCardinality>
</SubClassOf>
<SubClassOf>
<Class abbreviatedIRI="owl:Ontology"/>
<DataMaxCardinality cardinality="1">
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#lastUpdated"/>
</DataMaxCardinality>
</SubClassOf>
<SubClassOf>
<Class abbreviatedIRI="owl:Ontology"/>
<DataMaxCardinality cardinality="1">
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#name"/>
</DataMaxCardinality>
</SubClassOf>
<SubClassOf>
<Class abbreviatedIRI="owl:Ontology"/>
<DataMaxCardinality cardinality="1">
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#namespace"/>
</DataMaxCardinality>
</SubClassOf>
<SubClassOf>
<Class abbreviatedIRI="owl:Ontology"/>
<DataMaxCardinality cardinality="1">
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#namespacePrefix"/>
</DataMaxCardinality>
</SubClassOf>
<SubClassOf>
<Class abbreviatedIRI="owl:Ontology"/>
<DataMaxCardinality cardinality="1">
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#revision"/>
</DataMaxCardinality>
</SubClassOf>
<ClassAssertion>
<Class IRI="http://www.linkedmodel.org/schema/vaem#LicenseModel"/>
<NamedIndividual IRI="http://voag.linkedmodel.org/voag#CC-SHAREALIKE_3PT0-US"/>
</ClassAssertion>
<ClassAssertion>
<Class IRI="http://www.linkedmodel.org/schema/vaem#Attribution"/>
<NamedIndividual IRI="http://voag.linkedmodel.org/voag#TopQuadrantAttribution"/>
</ClassAssertion>
<ClassAssertion>
<Class IRI="http://www.linkedmodel.org/schema/vaem#CatalogEntry"/>
<NamedIndividual IRI="http://voag.linkedmodel.org/voag#VAEM-CatalogEntry"/>
</ClassAssertion>
<ClassAssertion>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#AnnotationsGraph"/>
</ClassAssertion>
<ClassAssertion>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#BridgeGraph"/>
</ClassAssertion>
<ClassAssertion>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#CollectionGraph"/>
</ClassAssertion>
<ClassAssertion>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#CurationGraph"/>
</ClassAssertion>
<ClassAssertion>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#DataGraph"/>
</ClassAssertion>
<ClassAssertion>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#FunctionsGraph"/>
</ClassAssertion>
<ClassAssertion>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#MappingGraph"/>
</ClassAssertion>
<ClassAssertion>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#ProxyGraph"/>
</ClassAssertion>
<ClassAssertion>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#RulesGraph"/>
</ClassAssertion>
<ClassAssertion>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#SchemaGraph"/>
</ClassAssertion>
<ClassAssertion>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#ScriptGraph"/>
</ClassAssertion>
<ClassAssertion>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#ViewGraph"/>
</ClassAssertion>
<ClassAssertion>
<Class IRI="http://www.linkedmodel.org/schema/vaem#GraphRole"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#VocabularyGraph"/>
</ClassAssertion>
<ObjectPropertyAssertion>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#hasCatalogEntry"/>
<NamedIndividual IRI=""/>
<NamedIndividual IRI="http://voag.linkedmodel.org/voag#VAEM-CatalogEntry"/>
</ObjectPropertyAssertion>
<ObjectPropertyAssertion>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#hasGraphRole"/>
<NamedIndividual IRI=""/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#RulesGraph"/>
</ObjectPropertyAssertion>
<ObjectPropertyAssertion>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#usesNonImportedResource"/>
<NamedIndividual IRI=""/>
<NamedIndividual IRI="http://purl.org/dc/elements/1.1/author"/>
</ObjectPropertyAssertion>
<ObjectPropertyAssertion>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#usesNonImportedResource"/>
<NamedIndividual IRI=""/>
<NamedIndividual IRI="http://purl.org/dc/elements/1.1/contributor"/>
</ObjectPropertyAssertion>
<ObjectPropertyAssertion>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#usesNonImportedResource"/>
<NamedIndividual IRI=""/>
<NamedIndividual IRI="http://purl.org/dc/elements/1.1/description"/>
</ObjectPropertyAssertion>
<ObjectPropertyAssertion>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#usesNonImportedResource"/>
<NamedIndividual IRI=""/>
<NamedIndividual IRI="http://purl.org/dc/elements/1.1/subject"/>
</ObjectPropertyAssertion>
<ObjectPropertyAssertion>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#usesNonImportedResource"/>
<NamedIndividual IRI=""/>
<NamedIndividual IRI="http://purl.org/dc/elements/1.1/title"/>
</ObjectPropertyAssertion>
<ObjectPropertyAssertion>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#usesNonImportedResource"/>
<NamedIndividual IRI=""/>
<NamedIndividual IRI="http://voag.linkedmodel.org/voag#TopQuadrantAttribution"/>
</ObjectPropertyAssertion>
<ObjectPropertyAssertion>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#usesNonImportedResource"/>
<NamedIndividual IRI=""/>
<NamedIndividual IRI="http://voag.linkedmodel.org/voag#VAEM-CatalogEntry"/>
</ObjectPropertyAssertion>
<ObjectPropertyAssertion>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#withAttributionTo"/>
<NamedIndividual IRI=""/>
<NamedIndividual IRI="http://voag.linkedmodel.org/voag#TopQuadrantAttribution"/>
</ObjectPropertyAssertion>
<DataPropertyAssertion>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#description"/>
<NamedIndividual IRI="http://voag.linkedmodel.org/voag#TopQuadrantAttribution"/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">LinkedModel Ontologies and Vocabularies are issued under a Creative Commons Attribution Share Alike 3.0 United States License. Attribution should be made to TopQuadrant, Inc.</Literal>
</DataPropertyAssertion>
<DataPropertyAssertion>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#dateCreated"/>
<NamedIndividual IRI=""/>
<Literal datatypeIRI="http://www.linkedmodel.org/schema/vaem#dateUnion">2011-04-20</Literal>
</DataPropertyAssertion>
<DataPropertyAssertion>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#description"/>
<NamedIndividual IRI=""/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">VAEM stands for "Vocabulary for Attaching Essential Metadata". The purpose of VAEM is to provide, by import, a foundation for commonly needed resources when building an ontology. An effort has been made to restrict these resources to a minimal level. What VAEM regards as 'essential metadata' is data about dates and times, confidentiality, and other characterisitic qualifiers of the ontology, but also references to where a ontology is documented and where to find ontology Governance, Attribution and Provenance. VAEM also defines classes for representing enumerations and enumerated values.</Literal>
</DataPropertyAssertion>
<DataPropertyAssertion>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#lastUpdated"/>
<NamedIndividual IRI=""/>
<Literal datatypeIRI="http://www.linkedmodel.org/schema/vaem#dateUnion">2013-08-28</Literal>
</DataPropertyAssertion>
<DataPropertyAssertion>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#namespace"/>
<NamedIndividual IRI=""/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#anyURI">http://www.linkedmodel.org/1.2/schema/vaem#</Literal>
</DataPropertyAssertion>
<DataPropertyAssertion>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#namespacePrefix"/>
<NamedIndividual IRI=""/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">vaem</Literal>
</DataPropertyAssertion>
<DataPropertyAssertion>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#revision"/>
<NamedIndividual IRI=""/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">1.2</Literal>
</DataPropertyAssertion>
<DataPropertyAssertion>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#description"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#MappingGraph"/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">A graph that specifies a transformation of a graph into another graph or graphs. Invariably this is a SPINMap graph using SPARQL Rules (SPIN) to express the transforms.</Literal>
</DataPropertyAssertion>
<DataPropertyAssertion>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#description"/>
<NamedIndividual IRI="http://www.linkedmodel.org/schema/vaem#VocabularyGraph"/>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">An RDF/OWL Graph that is a controlled set of instances.</Literal>
</DataPropertyAssertion>
<SubObjectPropertyOf>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#owner"/>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#ownedBy"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#owningParty"/>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#ownedBy"/>
</SubObjectPropertyOf>
<ObjectPropertyRange>
<ObjectProperty IRI="http://www.linkedmodel.org/schema/vaem#usesNonImportedResource"/>
<Class abbreviatedIRI="rdfs:Resource"/>
</ObjectPropertyRange>
<SubDataPropertyOf>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#dateCreated"/>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#date"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#lastUpdated"/>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#date"/>
</SubDataPropertyOf>
<SubDataPropertyOf>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#releaseDate"/>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#date"/>
</SubDataPropertyOf>
<DataPropertyRange>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#date"/>
<Datatype IRI="http://www.linkedmodel.org/schema/vaem#dateUnion"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#dateCreated"/>
<Datatype IRI="http://www.linkedmodel.org/schema/vaem#dateUnion"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#description"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#lastUpdated"/>
<Datatype IRI="http://www.linkedmodel.org/schema/vaem#dateUnion"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#name"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#namespace"/>
<Datatype abbreviatedIRI="xsd:anyURI"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#namespacePrefix"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#owner"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#releaseDate"/>
<Datatype IRI="http://www.linkedmodel.org/schema/vaem#dateUnion"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#revision"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#title"/>
<Datatype abbreviatedIRI="xsd:string"/>
</DataPropertyRange>
<DataPropertyRange>
<DataProperty IRI="http://www.linkedmodel.org/schema/vaem#url"/>
<Datatype abbreviatedIRI="xsd:anyURI"/>
</DataPropertyRange>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://purl.org/dc/elements/1.1/author</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">author</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://purl.org/dc/elements/1.1/contributor</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">contributor</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://purl.org/dc/elements/1.1/description</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">description</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://purl.org/dc/elements/1.1/subject</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">subject</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://purl.org/dc/elements/1.1/title</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">title</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://voag.linkedmodel.org/voag#CC-SHAREALIKE_3PT0-US</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Creative Commons Attribution-Share Alike 3.0 United States License</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://voag.linkedmodel.org/voag#TopQuadrantAttribution</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">TopQuadrant attribution</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://voag.linkedmodel.org/voag#VAEM-CatalogEntry</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">VAEM catalog entry</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#AnnotationsGraph</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Annotations Graph</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>http://www.linkedmodel.org/schema/vaem#Attribution</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">A mininal treatment of attribution. This serves as a placeholder class for voag:Attribution.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#Attribution</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Attribution</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#BridgeGraph</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Bridge graph</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>http://www.linkedmodel.org/schema/vaem#CatalogEntry</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">VAEM Governed Object class is a placeholder for concepts that are fully defined by the voag:GovernedObject concept hierarchy for building a catalog of ontologies and graphs.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#CatalogEntry</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Governed object</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#CollectionGraph</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Collection graph</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>http://www.linkedmodel.org/schema/vaem#CurationGraph</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">A curation graph is one whose purpose is to hold metadata that is needed to describe, govern and provision another graph. A curation graph will likely use VOAG and VAEM for this purpose. The property 'vaem:curationGraph' is used to link to the graph (or graphs) being curated.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#CurationGraph</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Curation graph</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#DataGraph</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Data graph</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#FunctionsGraph</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Functions graph</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#GraphRole</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">GraphRole is used to characterize how a graph of resources participates in an ontology set. For example, a graph can be a schema, vocabulary, dataset, script, or ruleset.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#GraphRole</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Graph role</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>http://www.linkedmodel.org/schema/vaem#LicenseModel</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">The VAEM Licence Model class is a placeholder for concepts that are fully defined by VOAG.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#LicenseModel</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">License model</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#MappingGraph</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Mapping graph</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#ProxyGraph</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Proxy graph</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#RulesGraph</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Rules Graph</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#SchemaGraph</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Schema graph</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#ScriptGraph</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Script graph</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#ViewGraph</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">View graph</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#VocabularyGraph</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">Vocabulary graph</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#comment</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">An annotation property that can be freely used on any kind of resource. The range of the property is 'xsd:string'.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#comment</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">definition</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#date</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">The property 'vaem:date' is intended for general use as the name implies. The range of the property is set as 'vaem:dateUnion' so as to allow a value to have a number of forms from a year only to a full timestamp. The property is also the parent of all dates so that queries can be made for any date on an ontology.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#date</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">date</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#dateCreated</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">The property 'vaem:dateCreated' is intended for general use as the name implies. The range of the property is set as 'vaem:dateUnion' so as to allow a value to have a number of forms from a year only to a full timestamp.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#dateCreated</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">date created</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>http://www.linkedmodel.org/schema/vaem#dateUnion</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">A datatype that is the union of date xsd data types. 'dateUnion' is equivalent to the xsd specification that uses an xsd:union of memberTypes='xsd:date xsd:dateTime xsd:float xsd:gYear'.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#dateUnion</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">date union</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#description</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">The property 'vaem:description' is intended for general use as the name implies. Unlike 'rdfs:comment', 'vaem:description' is an 'owl:DatatypeProperty'. As such it can play a stronger role in the model, for example, as a predicate in an axiom.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#description</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">description</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#hasCatalogEntry</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">has catalog entry</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#hasGraphRole</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">The property 'lms:hasGraphRole' is used to characterize how a resource participates in an ontology set. The property is used to specify the role that a graph plays, for example, an ontology graph can be a schema, vocabulary, dataset, script, or ruleset.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#hasGraphRole</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">has graph role</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#hasLicenseType</IRI>
<Literal xml:lang="en-us" datatypeIRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">has license type</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#isRefinedBy</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">A refinement of the subject resource. Modelled after rdfs:isDefinedBy for the purpose of referring to layered graphs that further define a subject.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
<IRI>http://www.linkedmodel.org/schema/vaem#isRefinedBy</IRI>
<IRI>http://www.linkedmodel.org/schema/vaem</IRI>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#isRefinedBy</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">isRefinedBy</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#lastUpdated</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">The property 'vaem:lastUpdated' is intended for general use as the name implies. The range of the property is set as 'vaem:dateUnion' so as to allow a value to have a number of forms from a year only to a full timestamp.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#lastUpdated</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">last updated</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#name</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">The property 'vaem:name' is intended for general use. In many cases 'rdfs:label' could be used give names to resources. In the case where compliance with a specific naming rule is needed, 'vaem:name' allows a resource to carry a name that is used in more specific contexts. Making 'vaem:name' a sub-property of 'rdfs:label' allows 'vaem:name' to serve in the same way as an 'rdfs:label'.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#name</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">name</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#namespace</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">The property 'vaem:namespace' provides a means to specify the onotlogy URI with which a graph is primarily associated. The intent is to allow multiple graphs to define statements for resources in the same Ontology namespace. For example, a foundation level graph with the base URI of 'http://www.somesite.com/1.0/schema/OurOntology' may define general concepts for 'OurOntology'. Another graph with the base URI 'http://www.somesite.com/1.0/schema/level2/OurOntology' may add more specific details to the same 'OurOntology'. Each of these two graphs would carry the same value for 'vaem:namespace', that is, 'http://www.somesite.com/schema/OurOntology'. In other words, an ontology URI is the URI associated with the resources of a controlled namespace. On the other hand the graph URIs (the base URIs) identify the graphs that hold resources that make up an ontology.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#namespace</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">namespace</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#namespacePrefix</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">The property 'vaem:namespacePrefix' specifes a short handle or label for the URI of an Ontology. Multiple graphs can define statements for resources in the same Ontololgy namespace. For example, a foundation level graph with the base URI of 'http://www.somesite.com/1.0/schema/OurOntology' may define general concepts for 'OurOntology'. Another graph with the base URI 'http://www.somesite.com/1.0/schema/level2/OurOntology' may add more specific details to the same 'OurOntology'. Each of these two graphs would carry the same value for 'vaem:namespacePrefix', for this example, perhaps, 'ourOntology'.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#namespacePrefix</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">namespace prefix</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>http://www.linkedmodel.org/schema/vaem#numericUnion</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">A datatype that is the union of numeric xsd data types. 'numericUnion' is equivalent to the xsd specification that uses an xsd:union of memberTypes='xsd:decimal xsd:double xsd:float xsd:integer'.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#numericUnion</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">numeric union</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#ownedBy</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">The property 'vaem:ownedBy' is a general property that in some cases could have scalar values or may refer to some concept of 'Party'. For this reason, the type of this property is set as 'rdf:Property' and the property is rangeless. There are two sub-properties of 'vaem:ownedBy', namely 'vaem:owner' for string values and 'vaem:owningParty' for referencing a 'party'. Ownership applies to thos ontologies that are proprietary. Other governance and provenance specifications are held in the VOAG ontology.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#ownedBy</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">owned by</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#owner</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">owner</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#owningParty</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">The property 'vaem:owningParty' is used to refer to some concept of 'Party' and is a sub-property of 'vaem:ownedBy'.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#owningParty</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">owning party</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#reifiableBy</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">To express how statements in a model can be reifiable, this property is used to explicitly associate a property with a user-defined sub-class of 'rdf:Statement'. A recommended way of using this is to declare the properties that share the same reification constructs as sub-properties of a parent property that carries the 'vaem:reifiableBy' property. The parent property should be of type 'rdf:Property' so that it can have both datatype and object properties as sub-properties. By this means use and transformations of a model can be understood through a fully specified metamodel. 'vaem:reifiableBy' is rangeless in order to comply with OWL DL semantics. Its range would have been rdfs:Class in order to refer to 'rdf:Statement' sub-classes.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#reifiableBy</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">reifiable by</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#releaseDate</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">The property 'vaem:releaseDate' is intended for general use as the name implies. The range of the property is set as 'vaem:dateUnion' so as to allow a value to have a number of forms from a year only to a full timestamp.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#releaseDate</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">release date</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#revision</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">The property 'vaem:revision' is a property intended for general use as the name implies. </Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#revision</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">revision</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#title</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">title</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#todo</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">As it name implies, a way to attach an annotation about a 'todo' task</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#todo</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">todo</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>http://www.linkedmodel.org/schema/vaem#url</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">The property 'vaem:url' is intended for general use as the name implies. The range of the property is set as an XSD URI.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#url</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">url</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:comment"/>
<IRI>http://www.linkedmodel.org/schema/vaem#usesNonImportedResource</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">A property that is used to express dependencies on resources from graphs that are not imported.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#usesNonImportedResource</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">uses non-imported resource</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://www.linkedmodel.org/schema/vaem#withAttributionTo</IRI>
<Literal datatypeIRI="http://www.w3.org/2001/XMLSchema#string">with attribution to</Literal>
</AnnotationAssertion>
<SubAnnotationPropertyOf>
<AnnotationProperty IRI="http://www.linkedmodel.org/schema/vaem#isRefinedBy"/>
<AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
</SubAnnotationPropertyOf>
<SubAnnotationPropertyOf>
<AnnotationProperty IRI="http://www.linkedmodel.org/schema/vaem#name"/>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
</SubAnnotationPropertyOf>
<AnnotationPropertyRange>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/author"/>
<AbbreviatedIRI>xsd:string</AbbreviatedIRI>
</AnnotationPropertyRange>
<AnnotationPropertyRange>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/contributor"/>