-
Notifications
You must be signed in to change notification settings - Fork 1
/
2023.04.23_milopa_V1.0.owl
1204 lines (1152 loc) · 64.8 KB
/
2023.04.23_milopa_V1.0.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"?>
<Ontology xmlns="http://www.w3.org/2002/07/owl#"
xml:base="urn:webprotege:ontology:5ab719a5-8737-411f-a456-4ce6eec5ad7b"
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="urn:webprotege:ontology:5ab719a5-8737-411f-a456-4ce6eec5ad7b">
<Prefix name="" IRI="urn:webprotege:ontology:5ab719a5-8737-411f-a456-4ce6eec5ad7b"/>
<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#"/>
<Declaration>
<Class IRI="http://webprotege.stanford.edu/activity"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/RCVzUpccei0mm8qy3Nto84r"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/RDEaeinabW9Gj7vHLeDb2t4"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/RoeCpdb0knTt37o50drMjQ"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/activity_context"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/activity_occurrence"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/agent"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/artefact"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/artistic_intention"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/artistic_proccess_team"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/artistic_process"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/attendee"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/combinatorial_mode"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/complex_activity"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/contribution"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/creative_contribution"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/creative_delivery_method"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/creative_material"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/creative_material_artefact"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/date"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/discipline"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/group_of_agents"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/intangible_property"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/part"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/performance_part"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/performance_realization"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/performance_realization_schedule"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/performance_work"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/person"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/phase"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/realization_activity"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/realization_element"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/role"/>
</Declaration>
<Declaration>
<Class IRI="https://www.w3.org/community/pair-cg/state"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R61gam5ny7r0rjYz9Qap3x"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R7JYK1ofTEDb2bdUnFtiPL9"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R800dLsETHG1kskyUl92UbZ"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R83By7aqSAWBiFBQYrbDzMG"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R9SMeXF1UutTT2f2vUiKK4Z"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R9YdPk8kO8AxHoAWr7Q68bM"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RBEdx5nDnCIpK0cisbKpXAS"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RBGJfA4A6oiLB3jt2GL1AO2"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RBnDDvrKRtbxhYMUbCTga3R"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/ROlCMPPMr4VzAhvnfFyJbY"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RTMpnYswSFl71ndjwTQMpA"/>
</Declaration>
<Declaration>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RYRHz3vXLNIeU7lBP9mbVI"/>
</Declaration>
<Declaration>
<NamedIndividual IRI="https://www.w3.org/community/pair-cg/RCvu7UgkmwxxzZuWyqf5SxV"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
</Declaration>
<Declaration>
<AnnotationProperty IRI="https://www.w3.org/community/pair-cg/R8yh7t5UCGvolkkuTFWbWs7"/>
</Declaration>
<SubClassOf>
<Class IRI="https://www.w3.org/community/pair-cg/RCVzUpccei0mm8qy3Nto84r"/>
<Class IRI="https://www.w3.org/community/pair-cg/realization_element"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://www.w3.org/community/pair-cg/RDEaeinabW9Gj7vHLeDb2t4"/>
<Class IRI="https://www.w3.org/community/pair-cg/realization_element"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://www.w3.org/community/pair-cg/RoeCpdb0knTt37o50drMjQ"/>
<Class IRI="https://www.w3.org/community/pair-cg/phase"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://www.w3.org/community/pair-cg/artistic_proccess_team"/>
<Class IRI="https://www.w3.org/community/pair-cg/group_of_agents"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://www.w3.org/community/pair-cg/artistic_process"/>
<Class IRI="https://www.w3.org/community/pair-cg/complex_activity"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://www.w3.org/community/pair-cg/complex_activity"/>
<Class IRI="http://webprotege.stanford.edu/activity"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://www.w3.org/community/pair-cg/creative_contribution"/>
<Class IRI="https://www.w3.org/community/pair-cg/contribution"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://www.w3.org/community/pair-cg/creative_material_artefact"/>
<Class IRI="https://www.w3.org/community/pair-cg/artefact"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://www.w3.org/community/pair-cg/part"/>
<Class abbreviatedIRI="owl:Thing"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://www.w3.org/community/pair-cg/performance_part"/>
<Class IRI="https://www.w3.org/community/pair-cg/part"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://www.w3.org/community/pair-cg/person"/>
<Class IRI="https://www.w3.org/community/pair-cg/agent"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://www.w3.org/community/pair-cg/phase"/>
<Class IRI="https://www.w3.org/community/pair-cg/complex_activity"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://www.w3.org/community/pair-cg/realization_activity"/>
<Class IRI="https://www.w3.org/community/pair-cg/complex_activity"/>
</SubClassOf>
<SubClassOf>
<Class IRI="https://www.w3.org/community/pair-cg/realization_element"/>
<Class abbreviatedIRI="owl:Thing"/>
</SubClassOf>
<ClassAssertion>
<Class IRI="https://www.w3.org/community/pair-cg/role"/>
<NamedIndividual IRI="https://www.w3.org/community/pair-cg/RCvu7UgkmwxxzZuWyqf5SxV"/>
</ClassAssertion>
<SubObjectPropertyOf>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R61gam5ny7r0rjYz9Qap3x"/>
<ObjectProperty abbreviatedIRI="owl:topObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R7JYK1ofTEDb2bdUnFtiPL9"/>
<ObjectProperty abbreviatedIRI="owl:topObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R800dLsETHG1kskyUl92UbZ"/>
<ObjectProperty abbreviatedIRI="owl:topObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R83By7aqSAWBiFBQYrbDzMG"/>
<ObjectProperty abbreviatedIRI="owl:topObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R9SMeXF1UutTT2f2vUiKK4Z"/>
<ObjectProperty abbreviatedIRI="owl:topObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R9YdPk8kO8AxHoAWr7Q68bM"/>
<ObjectProperty abbreviatedIRI="owl:topObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RBEdx5nDnCIpK0cisbKpXAS"/>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RBGJfA4A6oiLB3jt2GL1AO2"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RBGJfA4A6oiLB3jt2GL1AO2"/>
<ObjectProperty abbreviatedIRI="owl:topObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RBnDDvrKRtbxhYMUbCTga3R"/>
<ObjectProperty abbreviatedIRI="owl:topObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/ROlCMPPMr4VzAhvnfFyJbY"/>
<ObjectProperty abbreviatedIRI="owl:topObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RTMpnYswSFl71ndjwTQMpA"/>
<ObjectProperty abbreviatedIRI="owl:topObjectProperty"/>
</SubObjectPropertyOf>
<SubObjectPropertyOf>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RYRHz3vXLNIeU7lBP9mbVI"/>
<ObjectProperty abbreviatedIRI="owl:topObjectProperty"/>
</SubObjectPropertyOf>
<ObjectPropertyDomain>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R61gam5ny7r0rjYz9Qap3x"/>
<Class IRI="https://www.w3.org/community/pair-cg/performance_work"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R7JYK1ofTEDb2bdUnFtiPL9"/>
<Class IRI="https://www.w3.org/community/pair-cg/performance_realization"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R9SMeXF1UutTT2f2vUiKK4Z"/>
<Class IRI="https://www.w3.org/community/pair-cg/performance_realization"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RBnDDvrKRtbxhYMUbCTga3R"/>
<Class IRI="https://www.w3.org/community/pair-cg/artistic_process"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/ROlCMPPMr4VzAhvnfFyJbY"/>
<Class IRI="https://www.w3.org/community/pair-cg/creative_material"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RTMpnYswSFl71ndjwTQMpA"/>
<Class IRI="https://www.w3.org/community/pair-cg/artistic_process"/>
</ObjectPropertyDomain>
<ObjectPropertyDomain>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RYRHz3vXLNIeU7lBP9mbVI"/>
<Class IRI="https://www.w3.org/community/pair-cg/performance_realization_schedule"/>
</ObjectPropertyDomain>
<ObjectPropertyRange>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R61gam5ny7r0rjYz9Qap3x"/>
<Class IRI="https://www.w3.org/community/pair-cg/performance_realization"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R7JYK1ofTEDb2bdUnFtiPL9"/>
<Class IRI="https://www.w3.org/community/pair-cg/performance_work"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/R9SMeXF1UutTT2f2vUiKK4Z"/>
<Class IRI="https://www.w3.org/community/pair-cg/state"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RBGJfA4A6oiLB3jt2GL1AO2"/>
<Class IRI="https://www.w3.org/community/pair-cg/artistic_proccess_team"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RBnDDvrKRtbxhYMUbCTga3R"/>
<Class IRI="https://www.w3.org/community/pair-cg/phase"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/ROlCMPPMr4VzAhvnfFyJbY"/>
<Class IRI="https://www.w3.org/community/pair-cg/part"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RTMpnYswSFl71ndjwTQMpA"/>
<Class IRI="http://webprotege.stanford.edu/activity"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RTMpnYswSFl71ndjwTQMpA"/>
<Class IRI="https://www.w3.org/community/pair-cg/part"/>
</ObjectPropertyRange>
<ObjectPropertyRange>
<ObjectProperty IRI="https://www.w3.org/community/pair-cg/RYRHz3vXLNIeU7lBP9mbVI"/>
<Class IRI="https://www.w3.org/community/pair-cg/date"/>
</ObjectPropertyRange>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>http://webprotege.stanford.edu/activity</IRI>
<Literal xml:lang="en-ca">activity</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>http://webprotege.stanford.edu/activity</IRI>
<Literal>CQ: What were the activities of the development phase for the show?
CQ: What type of creation activity are you doing?</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>http://webprotege.stanford.edu/activity</IRI>
<Literal>We are reusing the concept of activity as defined in the Process Specification Language (PSL).</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>http://webprotege.stanford.edu/activity</IRI>
<Literal>A repeatable pattern of behaviour.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/R61gam5ny7r0rjYz9Qap3x</IRI>
<Literal xml:lang="en-ca">is_executed_in</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/R7JYK1ofTEDb2bdUnFtiPL9</IRI>
<Literal xml:lang="en-ca">is_execution_of</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/R800dLsETHG1kskyUl92UbZ</IRI>
<Literal xml:lang="en-ca">belongs_to</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/R83By7aqSAWBiFBQYrbDzMG</IRI>
<Literal xml:lang="en-ca">occurrence_of</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/R83By7aqSAWBiFBQYrbDzMG</IRI>
<Literal>Related definitions:
“An ACTIVITY describes something that occurs in the domain. An ACTIVITY may be further defined by (decomposed into) SUBACTIVITIES. An ACTIVITY may have precondition and/or effect STATE. An ACTIVITY may be enabled by or cause some STATE. An enabling of causing STATE is a generalization of a precondition/effect; an ACTIVITY is enabled by or causes some State if it has a subactivity with a precondition or effect (respectively) of that State. In other words, the state may not be required directly before, or cause directly after the activity, but by some more specialized sub-activity. An Activity occurs at some point in time and space. An Activity takes place during some interval, and so has some duration. An Activity may have some Manifestations that participate in it.”
Source:
https://enterpriseintegrationlab.github.io/icity/Activity/doc/index-en.html#Activity
http://ontologydesignpatterns.org/wiki/Submissions:An_Ontology_Design_Pattern_for_Activity_Reasoning</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/R83By7aqSAWBiFBQYrbDzMG</IRI>
<Literal>Supports the association of an activity occurrence to an activity.
The relationship between activities and activity occurrences is captured by the occurrence_of relation. Any activity occurrence corresponds to a unique activity. (Activities may have multiple occurrences, or there may exist activities which never occur.)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/R8yh7t5UCGvolkkuTFWbWs7</IRI>
<Literal xml:lang="en-ca">def</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/R9SMeXF1UutTT2f2vUiKK4Z</IRI>
<Literal xml:lang="en-ca">induces</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/R9YdPk8kO8AxHoAWr7Q68bM</IRI>
<Literal xml:lang="en-ca">has_role</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/RBEdx5nDnCIpK0cisbKpXAS</IRI>
<Literal xml:lang="en-ca">has</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/RBGJfA4A6oiLB3jt2GL1AO2</IRI>
<Literal xml:lang="en-ca">has_member</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/RBnDDvrKRtbxhYMUbCTga3R</IRI>
<Literal xml:lang="en-ca">has_phase</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/RBnDDvrKRtbxhYMUbCTga3R</IRI>
<Literal>The distinct relationship between the ARTISTIC_PROCESS and a distinct period or stage within it known as a PHASE.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>https://www.w3.org/community/pair-cg/RCVzUpccei0mm8qy3Nto84r</IRI>
<Literal>Examples of TANGIBLE_REALIZATION_ELEMENTs include, but are not limited to:
Props
Lighting instruments
Musical instruments
Scenographic elements, set pieces
Costumes
Flooring (e.g a dance floor)
A lighting design which is to be lit and executed during a PERFORMANCE_REALIZATION is considered CREATIVE_MATERIAL, whereas the light fixtures are TANGIBLE_REALIZATION_ELEMENTs. A technical drawing, or lighting cue sheet which is a blueprint of the lightning design is an ARTEFACT of the CREATIVE_MATERIAL.
The CREATIVE_MATERIAL may have creative rights or licensing rights associated with it. For example, a lighting designer may receive a percentage of royalties for all PERFORMANCE_REALIZATIONS of a PERFORMANCE_WORk that use their lighting design.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/RCVzUpccei0mm8qy3Nto84r</IRI>
<Literal xml:lang="en-ca">tangible_realization_element</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/RCVzUpccei0mm8qy3Nto84r</IRI>
<Literal>Relevant CQs:
What did you think of the props and costumes?
How big was the scrim and back drop?
What lighting instruments are needed for this lighting design?</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/RCVzUpccei0mm8qy3Nto84r</IRI>
<Literal>Physical objects capable of being perceived especially by the sense of touch intended to be used in a PERFORMANCE_REALIZATION.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/RCvu7UgkmwxxzZuWyqf5SxV</IRI>
<Literal xml:lang="en-ca">attendee</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>https://www.w3.org/community/pair-cg/RDEaeinabW9Gj7vHLeDb2t4</IRI>
<Literal>INTANGIBLE_REALIZATION_ELEMENT describes the way that something is performed or executed, whereas an INTANGIBLE_PROPERTY describes the content that is executed.
Some examples of an INTANGIBLE_REALIZATION_ELEMENT include:
Performance Elements:
Speed
Pacing
Intensity of movement
Vocal delivery
Energy
Tempo
Volume
Pitch
Intensity
Colour
Mood
Tone</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/RDEaeinabW9Gj7vHLeDb2t4</IRI>
<Literal xml:lang="en-ca">intangible_realization_element</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/RDEaeinabW9Gj7vHLeDb2t4</IRI>
<Literal>Relevant CQs:
What do you think of the actor’s volume?
How did you feel about the intensity?
How would you describe the pacing of the show?</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/RDEaeinabW9Gj7vHLeDb2t4</IRI>
<Literal>A non tactile component that describes dynamics, pacing, pitch, energy or other mode of execution.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/ROlCMPPMr4VzAhvnfFyJbY</IRI>
<Literal xml:lang="en-ca">has_performance_part</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>https://www.w3.org/community/pair-cg/RTMpnYswSFl71ndjwTQMpA</IRI>
<Literal>The ARTISTIC_PROCESS, for example, has many activities that belong to it. It HAS_PART → ACTIVITY. Additionally, an element of CREATIVE_MATERIAL such as a script may have specific parts belonging to it ie. act 1, act 2.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/RTMpnYswSFl71ndjwTQMpA</IRI>
<Literal xml:lang="en-ca">has_part</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/RTMpnYswSFl71ndjwTQMpA</IRI>
<Literal>(has_part will be pulled in from existing ontology)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/RTMpnYswSFl71ndjwTQMpA</IRI>
<Literal>Belonging to or connected with another element.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/RYRHz3vXLNIeU7lBP9mbVI</IRI>
<Literal xml:lang="en-ca">has_start_date</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/RoeCpdb0knTt37o50drMjQ</IRI>
<Literal xml:lang="en-ca">development_phase</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/RoeCpdb0knTt37o50drMjQ</IRI>
<Literal>Subclass Examples: The composition of a DEVELOPMENT_PHASE is not set by the MiLOPA framework, rather it can vary based on the wishes of the ARTISTIC_PROCESS_TEAM who are free to ascribe to their DEVELOPMENT_PHASE sub phases which may include:
Conceptualization (phase)
Ideation (phase)
Generation (phase)
Creation (phase)
Development (phase)
Refinement (phase)
Rehearsal (phase)
Realization (phase)</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/RoeCpdb0knTt37o50drMjQ</IRI>
<Literal>A type of PHASE in which the ARTISTIC_PROCESS_TEAM iteratively creates, mixes, models, workshops, adapts, builds, transforms or otherwise generates components of the PERFORMANCE_WORK.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>https://www.w3.org/community/pair-cg/activity_context</IRI>
<Literal>A workshop performance, for example, is a type of ACTIVITY_CONTEXT that indicates to attendees that the REALIZATION_ACTIVITY will include components still in development, and which may require audience attendance and feedback for further refinement. Similarly, a script reading is a type of REALIZATION_ACTIVITY where performers may be “on book” and reference or read from the script, where limited blocking or staging has been set, and where there are few to no design elements incorporated.
Examples of ACTIVITY_CONTEXT may include:
Workshop reading
Script reading
Alpha performance
Lab performance
In-development performance
Dress rehearsal
Preview performance
Community-night performance
Media night performance</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/activity_context</IRI>
<Literal xml:lang="en-ca">activity_context</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/activity_context</IRI>
<Literal>Relevant CQs:
Is it a preview performance or a regular performance?
Is the event a script reading or a full production?</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/activity_context</IRI>
<Literal>The circumstances that indicate the completeness, fullness, purpose and setting for the REALIZATION_ACTIVITY to occur and which position it to be understood and assessed.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/activity_occurrence</IRI>
<Literal xml:lang="en-ca">activity_occurrence</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/activity_occurrence</IRI>
<Literal>A concrete instantiation (a manifestation) of an activity.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>https://www.w3.org/community/pair-cg/agent</IRI>
<Literal>A THING could be, for example, a robot, an organization, a group of people, an animal.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/agent</IRI>
<Literal xml:lang="en-ca">agent</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/agent</IRI>
<Literal>Relevant CQs:
What AGENTs were in the ARTISTIC_PROCESS_TEAM?
Who was the director?
What animals performed in the horse show?
What is the name of that robot dancer?
What kind of a performer is R2D2?</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/agent</IRI>
<Literal>A PERSON or THING that takes an active ROLE within the context of the performing arts.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>https://www.w3.org/community/pair-cg/artefact</IRI>
<Literal>Some common artefacts of a PERFORMANCE_WORK include:
A stage manager’s prompt book.
A printed script.
The printed score of a concerto.
A choreographer's written notations of a dance piece.
A photograph.
An example of an intangible ARTEFACT:
Software (E.g. the app developed for Cafe Sarajevo)
Video (E.g. the digital video recording of a dance).</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/artefact</IRI>
<Literal xml:lang="en-ca">artefact</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/artefact</IRI>
<Literal>Relevant CQs:
What directorial notes exist about the work?
What documentation exists about this performance?</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/artefact</IRI>
<Literal>An object tangible or intangible made or shaped by some agent or intelligence, not necessarily of direct human origin.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/artistic_intention</IRI>
<Literal xml:lang="en-ca">artistic_intention</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/artistic_intention</IRI>
<Literal>Relevant CQs:
What do you think the artist intended to make me feel during that piece?
Was I supposed to laugh at that moment? What was the artist going for?
What do you think the artist’s intention was with the performance work?</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/artistic_intention</IRI>
<Literal>An AGENT’s purpose or motivation that they wish to achieve.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/artistic_proccess_team</IRI>
<Literal xml:lang="en-ca">artistic_process_team</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/artistic_proccess_team</IRI>
<Literal>Relevant CQs:
Who was involved in developing the show?
What team of artists are responsible for putting on the show?
Synonyms: creative team, the company, troupe</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/artistic_proccess_team</IRI>
<Literal>Some sub classes could include:
creative team
cast
production team
design team
administrative team</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/artistic_proccess_team</IRI>
<Literal>A group of AGENTS responsible for some aspect of the ARTISTIC_PROCESS. In order to be a member of this group, an AGENT must make a CONTRIBUTION within the ARTISTIC_PROCESS.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/artistic_process</IRI>
<Literal xml:lang="en-ca">artistic_process</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/artistic_process</IRI>
<Literal>The ARTISTIC_PROCESS may include activities such as a DEVELOPMENT_PHASE and one or more REALIZATION_ACTIVITY.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/artistic_process</IRI>
<Literal>A type of COMPLEX_ACTIVITY that involves a unique combination of vision, creativity, intuition, inspiration and collaboration balanced with craft, technique, accountability, discipline, and use of time and resources. Cognitive and physical actions are present.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/attendee</IRI>
<Literal xml:lang="en-ca">attendee</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/attendee</IRI>
<Literal>Synonyms: audience member, witness, patron</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/attendee</IRI>
<Literal>An entity that is present at a REALIZATION_ACTIVITY with the intent of experiencing it.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/combinatorial_mode</IRI>
<Literal xml:lang="en-ca">combinatorial_mode</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/combinatorial_mode</IRI>
<Literal>Relevant CQs:
What combinatorial_mode is the presentation?
Is it an interdisciplinary piece?</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/combinatorial_mode</IRI>
<Literal>Sample instance:
Intradisciplinary (working within a single discipline)
Cross Disciplinary (viewing one discipline from the perspective of another)
Multidisciplinary (people from different disciplines working together, each drawing on their disciplinary knowledge),
Interdisciplinary (integrating knowledge and methods from different disciplines, using a real synthesis of approaches)
Transdisciplinary (creating a unity of intellectual frameworks beyond the disciplinary perspectives).
Reference: https://www.arj.no/2012/03/12/disciplinarities-2/
see reference: https://www.arj.no/2012/03/12/disciplinarities-2/</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/combinatorial_mode</IRI>
<Literal>The way in which one or more disciplines are used or combined.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/complex_activity</IRI>
<Literal xml:lang="en-ca">complex_activity</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/complex_activity</IRI>
<Literal>Relevant CQs:
What is your artistic process?
Which phase of the process are you currently in?
When will the process of making and presenting the show be done?</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/complex_activity</IRI>
<Literal>The artistic process, for example, contains multiple subactivities, therefore it is a complex activity.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/complex_activity</IRI>
<Literal>synonym: creative_process</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/complex_activity</IRI>
<Literal>An ACTIVITY that includes two or more subactivities.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/contribution</IRI>
<Literal xml:lang="en-ca">contribution</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/contribution</IRI>
<Literal>something given or contributed by an AGENT towards bringing about a result or helping something to advance.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>https://www.w3.org/community/pair-cg/creative_contribution</IRI>
<Literal>Generating CREATIVE_MATERIAL is a form of CREATIVE_CONTRIBUTION.
When you improvise, you make three types of CREATIVE_CONTRIBUTION.
You contribute CREATIVE_MATERIAL
You contribute a PERFORMANCE_WORK
You contribute the PERFORMANCE_REALIZATION</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/creative_contribution</IRI>
<Literal xml:lang="en-ca">creative_contribution</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/creative_contribution</IRI>
<Literal>A CREATIVE_CONTRIBUTION is a type of CONTRIBUTION that includes generation of creative ideas or materials by an individual in a group, helping the creative performance of other group members or stimulating the creative energy of other group members.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>https://www.w3.org/community/pair-cg/creative_delivery_method</IRI>
<Literal>Examples:
1. Vocal Delivery
2. Gestural Delivery
3. Technological Delivery
E.G.
In the case of bluemouth inc.’s PERFORMANCE_WORK Cafe Sarajevo, the company developed a new headset system for audiences to experience the show. The headset system used RF headphones in combination with a custom iOS application developed by Jacob Niedzwiecki. The headset system allowed audiences to receive 360 video that was cued simultaneously. The CREATIVE_DELIVERY_METHOD of the headset system resulted in a creative innovation for research purposes.
E.G.
UnSpun Theatre’s PERFORMANCE_WORK Lost Together invites audiences to share a story about something they have lost. Throughout the conversation, the two artists work together to re-imagine and recreate that lost thing for the audience member. The created objects become a part of an ever-evolving exhibition. This creative approach of conversation and tangible object making is a CREATIVE_DELIVERY_METHOD within the piece.
Other examples of a creative_delivery_approach could include projection-mapping, augmented-reality, use of a phone or web applications to name a few.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/creative_delivery_method</IRI>
<Literal xml:lang="en-ca">creative_delivery_method</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/creative_delivery_method</IRI>
<Literal>a technology, device, application or method that is used to transfer CREATIVE_MATERIAL to an ATTENDEE.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>https://www.w3.org/community/pair-cg/creative_material</IRI>
<Literal>CREATIVE_MATERIAL may include:
Dialogue to be performed
A story to be told
A lighting design to be executed
Music to be performed
Choreography to be performed
Acting states, intentions and beats to be performed
CREATIVE_MATERIAL can exist with or without ever being realized.
An example of CREATIVE_MATERIAL is the specific movement sequence of a piece of choreography to be performed, or a chord progression of a piece of music to be played.
CREATIVE_MATERIAL may have ARTEFACTs associated with it such as a video recording, photographs, notations or a PERFORMANCE_TEXT (E.g. script or score), or may not have artefacts (E.g. they remain in a storyteller’s mind).
How does CREATIVE_MATERIAL differ from an INTANGIBLE_REALIZATION_ELEMENT?
CREATIVE_MATERIAL is, for example, the content which is executed, whereas the INTANGIBLE_REALIZATION_ELEMENT is the particular way it is executed, such as it’s tempo, volume or vocal delivery.
How does CREATIVE_MATERIAL relate to improvisation?
Prior to a concert there may be a score in some notation, which captures the notes to be performed. Before a musician's performance, we can talk about the CREATIVE_MATERIAL which will be performed. We can also talk about the PERFORMANCE_WORK, which captures the plan for how the conductor has rehearsed the musicians to perform, containing the tempo, dynamics and other colours for the performance. There are also choices about how the music should be performed being made, including tuning, instrumentation and more which is created during rehearsals, and will be embodied during the PERFORMANCE_REALIZATION. If the concert also includes a cadenza, and that cadenza is improvised by a soloist, that is CREATIVE_MATERIAL that is generated by the pianist at the time of realization. When the pianist improvises on stage, she is simultaneously creating music and performing it. As she creates, she earns the role of composer and has creative rights over that content.
How does CREATIVE_MATERIAL relate to stories or dances that are passed down through the generations, and not recorded?
When a storyteller hears a story, they can hold that story in their head. The ideas of the story itself are the CREATIVE_MATERIAL. The story does not need to be archived, documented or written down to exist. It exists in the storyteller’s head. Once the storyteller begins to voice or perform the story for others, the CREATIVE_MATERIAL, along with the other elements (tangible and intangible) form the PERFORMANCE_WORK, and are realized as a PERFORMANCE_REALIZATION.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/creative_material</IRI>
<Literal xml:lang="en-ca">creative_material</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/creative_material</IRI>
<Literal>Relevant CQs:
What did you think of the dialogue in the show?
How did you feel about the music of the performance?
Where can I find an archival recording of that piece of choreography?</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/creative_material</IRI>
<Literal>A component of content relating to or involving ideas generated during the ARTISTIC_PROCESS.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>https://www.w3.org/community/pair-cg/creative_material_artefact</IRI>
<Literal>A musical score (a written form of a musical composition), written script, or dance notation are all examples of a CREATIVE_MATERIAL_ARTEFACT. A printed musical score may include pitches, rhythms, or chords of songs or instrumental musical pieces. In the case of a script or text, the document may contain acts, scenes, characters, dialogues and stage directions. A dance score may include notations, descriptions, visuals or diagrams of the choreography. The software that embodies a lighting design or sound design is also a CREATIVE_MATERIAL_ARTEFACT.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/creative_material_artefact</IRI>
<Literal xml:lang="en-ca">creative_material_artefact</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/creative_material_artefact</IRI>
<Literal>Relevant CQs:
What script was performed?
When will this play be published?
Where can I buy Andrea Scott’s play Controlled Damage?
Where can I get the libretto for Traviata?
Who wrote the musical score?</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/creative_material_artefact</IRI>
<Literal>A type of ARTEFACT for CREATIVE_MATERIAL that uses language or symbols to indicate elements to be executed.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/date</IRI>
<Literal xml:lang="en-ca">date</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/discipline</IRI>
<Literal xml:lang="en-ca">discipline</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>
<IRI>https://www.w3.org/community/pair-cg/discipline</IRI>
<Literal>Relevant CQs:
What type of show is it?
What artistic disciplines are present in the work?
Is this a dance piece?</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/discipline</IRI>
<Literal>An area of concentration; a field of practice.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/group_of_agents</IRI>
<Literal xml:lang="en-ca">group_of_agents</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#definition"/>
<IRI>https://www.w3.org/community/pair-cg/group_of_agents</IRI>
<Literal>One or more AGENTS.</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://purl.org/dc/elements/1.1/description"/>
<IRI>https://www.w3.org/community/pair-cg/intangible_property</IRI>
<Literal>Some examples include, but are not limited to:
Setting
Character
Plot
Conflict
Resolution
Point of View
Theme
Form
Style
Genre</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty abbreviatedIRI="rdfs:label"/>
<IRI>https://www.w3.org/community/pair-cg/intangible_property</IRI>
<Literal xml:lang="en-ca">intangible_property</Literal>
</AnnotationAssertion>
<AnnotationAssertion>
<AnnotationProperty IRI="http://www.w3.org/2004/02/skos/core#comment"/>