-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback.xmi
2764 lines (2764 loc) · 207 KB
/
feedback.xmi
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" encoding="windows-1252"?>
<xmi:XMI xmi:version="2.1" xmlns:uml="http://schema.omg.org/spec/UML/2.1" xmlns:xmi="http://schema.omg.org/spec/XMI/2.1" xmlns:thecustomprofile="http://www.sparxsystems.com/profiles/thecustomprofile/1.0" xmlns:EPProfile="http://www.sparxsystems.com/profiles/EPProfile/1.0" xmlns:SoaML="http://www.sparxsystems.com/profiles/SoaML/1.0" xmlns:EAUML="http://www.sparxsystems.com/profiles/EAUML/1.0">
<xmi:Documentation exporter="Enterprise Architect" exporterVersion="6.5"/>
<uml:Model xmi:type="uml:Model" name="EA_Model" visibility="public">
<packagedElement xmi:type="uml:Package" xmi:id="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" name="Consumer quality data model (User FeedBack)" visibility="public">
<ownedComment xmi:type="uml:Comment" xmi:id="EAID_F3F63422_84B3_47f6_8F07_CAFB8D109A5E" body="The target reference identifies the "hard" discussion context. The most common case would be a data set or a sensor service. It unambiguously refers to a thing pre-existing in the domain of discourse - a user cannot freely create a feedback target.

The feedback focus is intended to qualify a "narrow" discussion context similar to a discussion thread. The "narrow" context is always within one "hard" context.The user may create (some types of) feedback focuses.

Together they constitute the <b>feedback context</b>.">
<annotatedElement xmi:idref="EAID_76AF7E04_FE76_4e3d_BC36_A1518F771FC3"/>
<annotatedElement xmi:idref="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
</ownedComment>
<packagedElement xmi:type="uml:Class" xmi:id="EAID_0C300047_E005_4bf9_8831_C9A635E54BE1" name="GVQ_DataFocus" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_5C006C58_05C9_4387_8FF7_62E1475CFECA" name="extent" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_DDD48494_D982_4343_8B84_06A84D5F4FCD"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000001_05C9_4387_8FF7_62E1475CFECA" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000002_05C9_4387_8FF7_62E1475CFECA" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_B7019E41_0B1C_48b8_803E_EB7F03E23F94" name="band" visibility="private" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000003_0B1C_48b8_803E_EB7F03E23F94" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000004_0B1C_48b8_803E_EB7F03E23F94" value="1"/>
<type xmi:idref="EAJava_string"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_2A8934FC_E9E5_4c99_82E2_F89D2255A450" general="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="EAID_3EB0BD09_FB18_42fe_A214_BCC6DA1E9C1C" name="GVQ_ExternalFeedback" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_99682BE1_F941_49f8_8867_E920628DDADA" name="resourceURL" visibility="private" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000005_F941_49f8_8867_E920628DDADA" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000006_F941_49f8_8867_E920628DDADA" value="1"/>
<type xmi:idref="EAJava_String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_CEADC07A_4A0E_4823_8272_69A2EE1DC9FF" name="mime-type" visibility="private" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000007_4A0E_4823_8272_69A2EE1DC9FF" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000008_4A0E_4823_8272_69A2EE1DC9FF" value="1"/>
<type xmi:idref="EAJava_String"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_81A79DB1_253E_4a40_8D27_1ECB0C01BB4C" general="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="EAID_A7A5D1EF_6DA5_4e2b_9A8B_9F2E94A14680" name="GVQ_FeedbackFocus" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_592AF5F4_9FCE_4265_9FD9_541A82D475E2" name="itemRef" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_C635D506_A06E_4acf_B2AB_27EBD081D8F1"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000009_9FCE_4265_9FD9_541A82D475E2" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000010_9FCE_4265_9FD9_541A82D475E2" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_2C4BDDC5_0800_44fc_BACB_3CFBAB33B2CA" general="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9" name="GVQ_FeedbackFocusType" visibility="public"/>
<packagedElement xmi:type="uml:Association" xmi:id="EAID_5BDFDAF4_4752_4462_A7B6_20179C2BC286" visibility="public">
<memberEnd xmi:idref="EAID_dstDFDAF4_4752_4462_A7B6_20179C2BC286"/>
<ownedEnd xmi:type="uml:Property" xmi:id="EAID_dstDFDAF4_4752_4462_A7B6_20179C2BC286" visibility="public" association="EAID_5BDFDAF4_4752_4462_A7B6_20179C2BC286" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false" aggregation="none">
<type xmi:idref="EAID_76AF7E04_FE76_4e3d_BC36_A1518F771FC3"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000011__4752_4462_A7B6_20179C2BC286" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000012__4752_4462_A7B6_20179C2BC286" value="1"/>
</ownedEnd>
<memberEnd xmi:idref="EAID_srcDFDAF4_4752_4462_A7B6_20179C2BC286"/>
<ownedEnd xmi:type="uml:Property" xmi:id="EAID_srcDFDAF4_4752_4462_A7B6_20179C2BC286" visibility="public" association="EAID_5BDFDAF4_4752_4462_A7B6_20179C2BC286" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false" aggregation="none">
<type xmi:idref="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000041__4752_4462_A7B6_20179C2BC286" value="0"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000042__4752_4462_A7B6_20179C2BC286" value="-1"/>
</ownedEnd>
</packagedElement>
<packagedElement xmi:type="uml:Association" xmi:id="EAID_5E675F93_5D9A_43a7_BB09_59224BCEF6B4" visibility="public">
<memberEnd xmi:idref="EAID_dst675F93_5D9A_43a7_BB09_59224BCEF6B4"/>
<memberEnd xmi:idref="EAID_src675F93_5D9A_43a7_BB09_59224BCEF6B4"/>
<ownedEnd xmi:type="uml:Property" xmi:id="EAID_src675F93_5D9A_43a7_BB09_59224BCEF6B4" visibility="public" association="EAID_5E675F93_5D9A_43a7_BB09_59224BCEF6B4" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false" aggregation="none">
<type xmi:idref="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
</ownedEnd>
</packagedElement>
<packagedElement xmi:type="uml:Association" xmi:id="EAID_6090DDD8_D47A_4c7f_8551_BA097064B16B" visibility="public">
<memberEnd xmi:idref="EAID_dst90DDD8_D47A_4c7f_8551_BA097064B16B"/>
<memberEnd xmi:idref="EAID_src90DDD8_D47A_4c7f_8551_BA097064B16B"/>
<ownedEnd xmi:type="uml:Property" xmi:id="EAID_src90DDD8_D47A_4c7f_8551_BA097064B16B" visibility="public" association="EAID_6090DDD8_D47A_4c7f_8551_BA097064B16B" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false" aggregation="none">
<type xmi:idref="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
</ownedEnd>
</packagedElement>
<packagedElement xmi:type="uml:Association" xmi:id="EAID_EF782FA2_558B_4a04_8707_A40C26394CED" visibility="public">
<memberEnd xmi:idref="EAID_dst782FA2_558B_4a04_8707_A40C26394CED"/>
<memberEnd xmi:idref="EAID_src782FA2_558B_4a04_8707_A40C26394CED"/>
<ownedEnd xmi:type="uml:Property" xmi:id="EAID_src782FA2_558B_4a04_8707_A40C26394CED" visibility="public" association="EAID_EF782FA2_558B_4a04_8707_A40C26394CED" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false" aggregation="none">
<type xmi:idref="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
</ownedEnd>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="EAID_596FDD21_F873_4cdf_A890_41DDCBCB3DD9" name="GVQ_FeedbackGroup" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_8A4D7C08_548C_4415_B260_0AC11D38D12B" name="timestamp" visibility="private" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_4366A91D_FC21_4b08_9909_D492F5950643"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000013_548C_4415_B260_0AC11D38D12B" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000014_548C_4415_B260_0AC11D38D12B" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_E067E514_1C5A_4bac_8242_3298C38CFC47" name="user" visibility="private" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_0ADEC692_5DCC_4db0_BADE_C6CDADECC9CF"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000015_1C5A_4bac_8242_3298C38CFC47" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000016_1C5A_4bac_8242_3298C38CFC47" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_87E6CF5F_BE40_49ed_8E35_9E2A023E7B72" name="roles" visibility="private" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_254631C3_17F3_494b_BE0D_AF9F759A7285"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000017_BE40_49ed_8E35_9E2A023E7B72" value="1"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000018_BE40_49ed_8E35_9E2A023E7B72" value="-1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_dstB7D37B_54DF_412c_B07E_7847F8E10A65" name="items" visibility="public" association="EAID_74B7D37B_54DF_412c_B07E_7847F8E10A65" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false" aggregation="none">
<type xmi:idref="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000021__54DF_412c_B07E_7847F8E10A65" value="1"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000022__54DF_412c_B07E_7847F8E10A65" value="-1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:Association" xmi:id="EAID_61568D8C_8532_4b48_BA53_4CADEA12CF47" visibility="public">
<memberEnd xmi:idref="EAID_dst568D8C_8532_4b48_BA53_4CADEA12CF47"/>
<ownedEnd xmi:type="uml:Property" xmi:id="EAID_dst568D8C_8532_4b48_BA53_4CADEA12CF47" visibility="public" association="EAID_61568D8C_8532_4b48_BA53_4CADEA12CF47" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false" aggregation="none">
<type xmi:idref="EAID_0ADEC692_5DCC_4db0_BADE_C6CDADECC9CF"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000019__8532_4b48_BA53_4CADEA12CF47" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000020__8532_4b48_BA53_4CADEA12CF47" value="1"/>
</ownedEnd>
<memberEnd xmi:idref="EAID_src568D8C_8532_4b48_BA53_4CADEA12CF47"/>
<ownedEnd xmi:type="uml:Property" xmi:id="EAID_src568D8C_8532_4b48_BA53_4CADEA12CF47" visibility="public" association="EAID_61568D8C_8532_4b48_BA53_4CADEA12CF47" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false" aggregation="none">
<type xmi:idref="EAID_596FDD21_F873_4cdf_A890_41DDCBCB3DD9"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000073__8532_4b48_BA53_4CADEA12CF47" value="0"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000074__8532_4b48_BA53_4CADEA12CF47" value="-1"/>
</ownedEnd>
</packagedElement>
<packagedElement xmi:type="uml:Association" xmi:id="EAID_74B7D37B_54DF_412c_B07E_7847F8E10A65" visibility="public">
<memberEnd xmi:idref="EAID_dstB7D37B_54DF_412c_B07E_7847F8E10A65"/>
<memberEnd xmi:idref="EAID_srcB7D37B_54DF_412c_B07E_7847F8E10A65"/>
<ownedEnd xmi:type="uml:Property" xmi:id="EAID_srcB7D37B_54DF_412c_B07E_7847F8E10A65" visibility="public" association="EAID_74B7D37B_54DF_412c_B07E_7847F8E10A65" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false" aggregation="none">
<type xmi:idref="EAID_596FDD21_F873_4cdf_A890_41DDCBCB3DD9"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000031__54DF_412c_B07E_7847F8E10A65" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000032__54DF_412c_B07E_7847F8E10A65" value="1"/>
</ownedEnd>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26" name="GVQ_FeedbackItem" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_EC026561_AC4B_4128_A44E_B90A579189B4" name="identifier" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_C635D506_A06E_4acf_B2AB_27EBD081D8F1"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000023_AC4B_4128_A44E_B90A579189B4" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000024_AC4B_4128_A44E_B90A579189B4" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_dst675F93_5D9A_43a7_BB09_59224BCEF6B4" name="primaryFocus" visibility="public" association="EAID_5E675F93_5D9A_43a7_BB09_59224BCEF6B4" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false" aggregation="none">
<type xmi:idref="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000025__5D9A_43a7_BB09_59224BCEF6B4" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000026__5D9A_43a7_BB09_59224BCEF6B4" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_dst90DDD8_D47A_4c7f_8551_BA097064B16B" name="supplementaryFoci" visibility="public" association="EAID_6090DDD8_D47A_4c7f_8551_BA097064B16B" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false" aggregation="none">
<type xmi:idref="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000027__D47A_4c7f_8551_BA097064B16B" value="0"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000028__D47A_4c7f_8551_BA097064B16B" value="-1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_dst782FA2_558B_4a04_8707_A40C26394CED" name="secondaryFoci" visibility="public" association="EAID_EF782FA2_558B_4a04_8707_A40C26394CED" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false" aggregation="none">
<type xmi:idref="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000029__558B_4a04_8707_A40C26394CED" value="0"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000030__558B_4a04_8707_A40C26394CED" value="-1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="EAID_76AF7E04_FE76_4e3d_BC36_A1518F771FC3" name="GVQ_FeedbackTarget" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_FCE6E073_F348_4113_8767_BD9E5E272E6A" name="parent" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_76AF7E04_FE76_4e3d_BC36_A1518F771FC3"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000033_F348_4113_8767_BD9E5E272E6A" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000034_F348_4113_8767_BD9E5E272E6A" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_9EEA53D3_B4C0_4ff2_B819_F6FBE8E6E350" name="resourceRef" visibility="private" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_C635D506_A06E_4acf_B2AB_27EBD081D8F1"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000035_B4C0_4ff2_B819_F6FBE8E6E350" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000036_B4C0_4ff2_B819_F6FBE8E6E350" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_15EBA142_7D48_4d61_B991_706472CE3220" name="natureOfTarget" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_20BAFE02_1081_43ec_965A_04AE71439B54"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000037_7D48_4d61_B991_706472CE3220" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000038_7D48_4d61_B991_706472CE3220" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_dst3A77A9_CB07_4c84_8440_5C08567297A5" visibility="public" association="EAID_813A77A9_CB07_4c84_8440_5C08567297A5" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false" aggregation="none">
<type xmi:idref="EAID_76AF7E04_FE76_4e3d_BC36_A1518F771FC3"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000039__CB07_4c84_8440_5C08567297A5" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000040__CB07_4c84_8440_5C08567297A5" value="1"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:Association" xmi:id="EAID_813A77A9_CB07_4c84_8440_5C08567297A5" visibility="public">
<memberEnd xmi:idref="EAID_dst3A77A9_CB07_4c84_8440_5C08567297A5"/>
<memberEnd xmi:idref="EAID_src3A77A9_CB07_4c84_8440_5C08567297A5"/>
<ownedEnd xmi:type="uml:Property" xmi:id="EAID_src3A77A9_CB07_4c84_8440_5C08567297A5" visibility="public" association="EAID_813A77A9_CB07_4c84_8440_5C08567297A5" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false" aggregation="none">
<type xmi:idref="EAID_76AF7E04_FE76_4e3d_BC36_A1518F771FC3"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000043__CB07_4c84_8440_5C08567297A5" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000044__CB07_4c84_8440_5C08567297A5" value="0"/>
</ownedEnd>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="EAID_0EE537A1_AF88_4afa_94A4_5B788F336114" name="GVQ_QualityOverride" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_29E1F7A7_CD9E_4436_A75F_56830A74305B" name="alternativeDataQualityEstimate" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_93056CE4_E9B2_496e_A7DF_5F530F0666BC"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000045_CD9E_4436_A75F_56830A74305B" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000046_CD9E_4436_A75F_56830A74305B" value="1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_AA6DC796_DF20_4f08_AC6B_F6712A932128" general="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="EAID_1DEC05B4_2403_45a1_82CA_79AF5E5DEB66" name="GVQ_Rating" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_25DA870D_9417_4a5a_B145_294E356FB223" name="ratingValue" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000047_9417_4a5a_B145_294E356FB223" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000048_9417_4a5a_B145_294E356FB223" value="1"/>
<type xmi:idref="EAJava_int"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_0FE5F778_89CA_429c_953E_8278A853A4BD" general="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
</packagedElement>
<packagedElement xmi:type="uml:Enumeration" xmi:id="EAID_8DD1F654_B1CC_4c85_AEA8_1D263242DFF5" name="GVQ_ReportAspectCode" visibility="public">
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="EAID_29426FCA_A392_46e1_BE39_2D966152AFD0" name="Usage" visibility="public" classifier="EAJava_string">
<specification xmi:type="uml:LiteralString" xmi:id="EAID_LI000049_A392_46e1_BE39_2D966152AFD0" value="Usage"/>
</ownedLiteral>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="EAID_9C580B03_01D4_4219_9CE0_01F4CF290EDB" name="Problem" visibility="public" classifier="EAJava_string">
<specification xmi:type="uml:LiteralString" xmi:id="EAID_LI000049_01D4_4219_9CE0_01F4CF290EDB" value="Problem"/>
</ownedLiteral>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="EAID_E04FF9C4_6A97_4959_B1E4_68C2973C84B4" name="FitnessForPurpose" visibility="public" classifier="EAJava_string">
<specification xmi:type="uml:LiteralString" xmi:id="EAID_LI000049_6A97_4959_B1E4_68C2973C84B4" value="Fitness for Purpose"/>
</ownedLiteral>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="EAID_B069A895_C52E_4c46_8DDA_A71682372DF4" name="Alternatives" visibility="public" classifier="EAJava_string">
<specification xmi:type="uml:LiteralString" xmi:id="EAID_LI000049_C52E_4c46_8DDA_A71682372DF4" value="Alternatives"/>
</ownedLiteral>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="EAID_D4EAC4FB_0561_47ae_82B6_1FA68AF4429D" name="GVQ_SubjectFocus" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_F8BF0845_6F7F_404f_B705_C6DF5D2D22F9" name="title" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000049_6F7F_404f_B705_C6DF5D2D22F9" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000050_6F7F_404f_B705_C6DF5D2D22F9" value="1"/>
<type xmi:idref="EAJava_string"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_4B084783_DFA8_4cca_9D92_3DEA7E1F4F05" general="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="EAID_5DFBA539_26C5_4a63_9BB9_ABB286245338" name="GVQ_TagFocus" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_04F3DBF1_A1BE_4bf8_BDB9_DF7F9BA0EA8D" name="tags" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000051_A1BE_4bf8_BDB9_DF7F9BA0EA8D" value="0"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000052_A1BE_4bf8_BDB9_DF7F9BA0EA8D" value="-1"/>
<type xmi:idref="EAJava_string"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_365C2379_13CE_4895_84B6_C20DD8A1D7C1" general="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="EAID_4A93742D_665C_4a6b_96CE_353354230201" name="GVQ_ThemeFocus" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_535E7519_587E_4095_8150_FA2741F99B09" name="themeURN" visibility="private" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000053_587E_4095_8150_FA2741F99B09" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000054_587E_4095_8150_FA2741F99B09" value="1"/>
<type xmi:idref="EAJava_string"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_64455902_EFAB_4dd4_8066_940097121498" general="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="EAID_3C7773EB_BBCF_4f17_8D0E_3220BF61CF10" name="GVQ_UsageReport" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_3308DD63_0AA4_47ad_943C_D688870210BC" name="usagePurpose" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_8DD1F654_B1CC_4c85_AEA8_1D263242DFF5"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000055_0AA4_47ad_943C_D688870210BC" value="0"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000056_0AA4_47ad_943C_D688870210BC" value="-1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_20C3C4E4_DEA3_4f3d_BABC_1C353A457A1F" name="publication" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_54AB5719_9B59_48a0_8811_2DB44F6D59E4"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000057_DEA3_4f3d_BABC_1C353A457A1F" value="0"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000058_DEA3_4f3d_BABC_1C353A457A1F" value="-1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_5F6E151B_2A3F_4406_9FBB_018697CD181D" name="usageDescription" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000059_2A3F_4406_9FBB_018697CD181D" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000060_2A3F_4406_9FBB_018697CD181D" value="1"/>
<type xmi:idref="EAJava_string"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_8AF6D42F_5F3F_4701_9ACB_15C90DFC8DE9" name="alternativeDatasets" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_DAA65886_9A62_4b8f_8625_B3AF304B06C7"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000061_5F3F_4701_9ACB_15C90DFC8DE9" value="0"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000062_5F3F_4701_9ACB_15C90DFC8DE9" value="-1"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_C1A654C3_CD3F_469e_A01B_15C480B9409A" general="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="EAID_40D6B57F_4420_43bc_927E_2C2EBC9810C9" name="GVQ_UserComment" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_6A406391_7033_4ce3_8873_02619DE03BAA" name="comment" visibility="private" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000063_7033_4ce3_8873_02619DE03BAA" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000064_7033_4ce3_8873_02619DE03BAA" value="1"/>
<type xmi:idref="EAJava_String"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_32712AEC_3BF0_4d6f_AE02_4BC626AA6A9E" name="mime-type" visibility="private" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000065_3BF0_4d6f_AE02_4BC626AA6A9E" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000066_3BF0_4d6f_AE02_4BC626AA6A9E" value="1"/>
<defaultValue xmi:type="uml:LiteralString" xmi:id="EAID_LI000067_3BF0_4d6f_AE02_4BC626AA6A9E" value="text/plain"/>
<type xmi:idref="EAJava_String"/>
</ownedAttribute>
<generalization xmi:type="uml:Generalization" xmi:id="EAID_F87ECC54_8059_4214_97EB_75583943DDE5" general="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
</packagedElement>
<packagedElement xmi:type="uml:Class" xmi:id="EAID_0ADEC692_5DCC_4db0_BADE_C6CDADECC9CF" name="GVQ_UserInformation" visibility="public">
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_010D4711_8397_45a3_87C5_5D2395B1FE7A" name="user" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<type xmi:idref="EAID_1F036D3F_D633_4c57_9765_CEBF79B3359B"/>
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000067_8397_45a3_87C5_5D2395B1FE7A" value="0"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000068_8397_45a3_87C5_5D2395B1FE7A" value="1"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_438D73EC_F045_4816_80A1_A4204E7D73A3" name="applicationDomain" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="true" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000069_F045_4816_80A1_A4204E7D73A3" value="0"/>
<upperValue xmi:type="uml:LiteralUnlimitedNatural" xmi:id="EAID_LI000070_F045_4816_80A1_A4204E7D73A3" value="-1"/>
<type xmi:idref="EAJava_string"/>
</ownedAttribute>
<ownedAttribute xmi:type="uml:Property" xmi:id="EAID_4F465F02_F5CA_4c73_BBFC_DA1362300D71" name="expertiseLevel" visibility="public" isStatic="false" isReadOnly="false" isDerived="false" isOrdered="false" isUnique="true" isDerivedUnion="false">
<lowerValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000071_F5CA_4c73_BBFC_DA1362300D71" value="1"/>
<upperValue xmi:type="uml:LiteralInteger" xmi:id="EAID_LI000072_F5CA_4c73_BBFC_DA1362300D71" value="1"/>
<type xmi:idref="EAJava_int"/>
</ownedAttribute>
</packagedElement>
<packagedElement xmi:type="uml:Enumeration" xmi:id="EAID_254631C3_17F3_494b_BE0D_AF9F759A7285" name="GVQ_UserRoleCodeEnum" visibility="public">
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="EAID_52DD423F_6C6C_4d8f_9B8C_029CC2D3BC83" name="CommercialDataProducer" visibility="public" classifier="EAJava_string">
<specification xmi:type="uml:LiteralString" xmi:id="EAID_LI000075_6C6C_4d8f_9B8C_029CC2D3BC83" value="Commercial Data Producer"/>
</ownedLiteral>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="EAID_9DD107ED_15AD_4b50_8413_FF59B2911F18" name="ResearchEndUser" visibility="public" classifier="EAJava_string">
<specification xmi:type="uml:LiteralString" xmi:id="EAID_LI000075_15AD_4b50_8413_FF59B2911F18" value="Research End-User"/>
</ownedLiteral>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="EAID_B15CDFA0_039A_4933_943C_5F1162E18077" name="NonResearchEndUser" visibility="public" classifier="EAJava_string">
<specification xmi:type="uml:LiteralString" xmi:id="EAID_LI000075_039A_4933_943C_5F1162E18077" value="Non-research End-User"/>
</ownedLiteral>
<ownedLiteral xmi:type="uml:EnumerationLiteral" xmi:id="EAID_9B3A5B1D_7B2C_471c_8F66_FE3800B03E45" name="ScientificDataProducer" visibility="public" classifier="EAJava_string">
<specification xmi:type="uml:LiteralString" xmi:id="EAID_LI000075_7B2C_471c_8F66_FE3800B03E45" value="Scientific Data Producer"/>
</ownedLiteral>
</packagedElement>
</packagedElement>
<EPProfile:abstract base_Class="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
<EPProfile:abstract base_Class="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
<SoaML:id base_Attribute="EAID_EC026561_AC4B_4128_A44E_B90A579189B4"/>
<thecustomprofile:anonymousRole base_Attribute="EAID_15EBA142_7D48_4d61_B991_706472CE3220" anonymousRole="true"/>
<thecustomprofile:XSDelement base_Attribute="EAID_15EBA142_7D48_4d61_B991_706472CE3220"/>
<EAUML:enumeration base_Class="EAID_8DD1F654_B1CC_4c85_AEA8_1D263242DFF5"/>
<thecustomprofile:enum base_Attribute="EAID_29426FCA_A392_46e1_BE39_2D966152AFD0"/>
<thecustomprofile:enum base_Attribute="EAID_9C580B03_01D4_4219_9CE0_01F4CF290EDB"/>
<thecustomprofile:enum base_Attribute="EAID_E04FF9C4_6A97_4959_B1E4_68C2973C84B4"/>
<thecustomprofile:enum base_Attribute="EAID_B069A895_C52E_4c46_8DDA_A71682372DF4"/>
<thecustomprofile:anonymousRole base_Attribute="EAID_8AF6D42F_5F3F_4701_9ACB_15C90DFC8DE9" anonymousRole="true"/>
<thecustomprofile:XSDelement base_Attribute="EAID_8AF6D42F_5F3F_4701_9ACB_15C90DFC8DE9"/>
<EAUML:enumeration base_Class="EAID_254631C3_17F3_494b_BE0D_AF9F759A7285"/>
<thecustomprofile:enum base_Attribute="EAID_52DD423F_6C6C_4d8f_9B8C_029CC2D3BC83"/>
<thecustomprofile:enum base_Attribute="EAID_9DD107ED_15AD_4b50_8413_FF59B2911F18"/>
<thecustomprofile:enum base_Attribute="EAID_B15CDFA0_039A_4933_943C_5F1162E18077"/>
<thecustomprofile:enum base_Attribute="EAID_9B3A5B1D_7B2C_471c_8F66_FE3800B03E45"/>
<thecustomprofile:xmlns base_Package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" xmlns="xmlns:xs=http://www.w3.org/2001/XMLSchema"/>
<thecustomprofile:memberNames base_Package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" memberNames="unqualified"/>
<thecustomprofile:defaultNamespace base_Package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" defaultNamespace="http://www.geoviqua.org/schemas/FeedbackModel/Draft"/>
<thecustomprofile:XSDschema base_Package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57"/>
<thecustomprofile:targetNamespacePrefix base_Package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" targetNamespacePrefix="gvq_fb"/>
<thecustomprofile:targetNamespace base_Package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" targetNamespace="http://www.geoviqua.org/schemas/FeedbackModel/Draft"/>
</uml:Model>
<xmi:Extension extender="Enterprise Architect" extenderID="6.5">
<elements>
<element xmi:idref="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" xmi:type="uml:Package" name="Consumer quality data model (User FeedBack)" scope="public">
<model package2="EAID_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" package="EAPK_0F33823A_C4C2_4d4a_9011_5995645541D2" tpos="0" ea_localid="58" ea_eleType="package"/>
<properties isSpecification="false" sType="Package" nType="0" scope="public" stereotype="XSDschema"/>
<project author="Simon Thum" version="1.0" phase="1.0" created="2012-03-08 11:23:44" modified="2012-05-09 11:22:08" complexity="1" status="Proposed"/>
<code gentype="Java" genfile="C:\Users\simothum\Documents\Projektdokumente\GeoViQua\modeling\feedback\geoviqua-feedback-model\feedback.xsd"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags>
<tag xmi:id="EAID_40D7D84F_E7A7_4337_8A57_D90EB7D1411D" name="defaultNamespace" value="http://www.geoviqua.org/schemas/FeedbackModel/Draft#NOTES#Description: Specifies the default namespace attribute in the schema element
" modelElement="EAID_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57"/>
<tag xmi:id="EAID_47BF1D3E_91CC_4f4e_9960_A8AEA9CF7112" name="memberNames" value="unqualified" modelElement="EAID_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57"/>
<tag xmi:id="EAID_2AAB884D_1C13_45b5_BC15_C2438932283C" name="targetNamespace" value="http://www.geoviqua.org/schemas/FeedbackModel/Draft#NOTES#Description: URI to unique target namespace
" modelElement="EAID_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57"/>
<tag xmi:id="EAID_10EABE90_9B41_48c5_915B_B04617DC6479" name="targetNamespacePrefix" value="gvq_fb#NOTES#Description: Prefix associated with namespace
" modelElement="EAID_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57"/>
<tag xmi:id="EAID_CC459369_6867_4579_9267_DF54C945F439" name="xmlns" value="<memo>#NOTES#xmlns:xs=http://www.w3.org/2001/XMLSchema" modelElement="EAID_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57"/>
</tags>
<xrefs value="$XREFPROP=$XID={C291933A-866A-4829-A42A-E82295DB9EF2}$XID;$NAM=Stereotypes$NAM;$TYP=element property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@STEREO;Name=XSDschema;GUID={41AE332B-A09C-4db1-ABD4-253DED5231C9};@ENDSTEREO;$DES;$CLT={B7ABD61D-CDBD-4ac3-B147-92B60CE9BC57}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
<extendedProperties tagged="0" package_name="GeoViQua"/>
<packageproperties version="1.0"/>
<paths/>
<times created="2012-03-08 11:23:44" modified="2012-03-08 11:24:44"/>
<flags iscontrolled="FALSE" isprotected="FALSE" usedtd="FALSE" logxml="FALSE"/>
</element>
<element xmi:idref="EAID_0C300047_E005_4bf9_8831_C9A635E54BE1" xmi:type="uml:Class" name="GVQ_DataFocus" scope="public">
<model package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" tpos="0" ea_localid="544" ea_eleType="element"/>
<properties documentation="A data centric focus describes sub-sets of a data set or data provided by a service. It is to be interpreted as the intersection of the attributes which are specified, i.e. an unspecified attribute does not constrain the focus." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="bastinl" version="1.0" phase="1.0" created="2012-03-18 13:00:44" modified="2012-05-09 12:47:43" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs/>
<extendedProperties tagged="0" package_name="Consumer quality data model (User FeedBack)"/>
<attributes>
<attribute xmi:idref="EAID_5C006C58_05C9_4387_8FF7_62E1475CFECA" name="extent" scope="Public">
<initial/>
<documentation/>
<model ea_localid="1513" ea_guid="{5C006C58-05C9-4387-8FF7-62E1475CFECA}"/>
<properties type="EX_SpatialTemporalExtent" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="1"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
<attribute xmi:idref="EAID_B7019E41_0B1C_48b8_803E_EB7F03E23F94" name="band" scope="Private">
<initial/>
<documentation value="The band is intended as a local identifier for a band, intended for human understanding."/>
<model ea_localid="1610" ea_guid="{B7019E41-0B1C-48b8-803E-EB7F03E23F94}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="2"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_2A8934FC_E9E5_4c99_82E2_F89D2255A450" start="EAID_0C300047_E005_4bf9_8831_C9A635E54BE1" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
</links>
</element>
<element xmi:idref="EAID_3EB0BD09_FB18_42fe_A214_BCC6DA1E9C1C" xmi:type="uml:Class" name="GVQ_ExternalFeedback" scope="public">
<model package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" tpos="0" ea_localid="522" ea_eleType="element"/>
<properties documentation="External feedback is intended to associate information about the subject just to highlight its presence (without adding extra value?)

This could be subclassed to draw in facebook likes or google +1's, community sites, blog posts, ...

A point in question is the role of persistent URLs here, which should probably be preferred if not enforced." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="simothum" version="1.0" phase="1.0" created="2012-01-27 14:19:37" modified="2012-04-13 11:52:18" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs/>
<extendedProperties tagged="0" package_name="Consumer quality data model (User FeedBack)"/>
<attributes>
<attribute xmi:idref="EAID_99682BE1_F941_49f8_8867_E920628DDADA" name="resourceURL" scope="Private">
<initial/>
<documentation/>
<model ea_localid="1470" ea_guid="{99682BE1-F941-49f8-8867-E920628DDADA}"/>
<properties type="String" derived="0" collection="false" length="0" duplicates="0" changeability="changeable"/>
<coords ordered="0" scale="0"/>
<containment containment="Not Specified" position="0"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="volatile=0;IsLiteral=0;"/>
<tags/>
<xrefs/>
</attribute>
<attribute xmi:idref="EAID_CEADC07A_4A0E_4823_8272_69A2EE1DC9FF" name="mime-type" scope="Private">
<initial/>
<documentation value="IETF RFC 2046 MIME Type

Mime type the resource should answer in. Also, it could inform the user whether a document, web page or other resource is linked."/>
<model ea_localid="1624" ea_guid="{CEADC07A-4A0E-4823-8272-69A2EE1DC9FF}"/>
<properties type="String" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="1"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_81A79DB1_253E_4a40_8D27_1ECB0C01BB4C" start="EAID_3EB0BD09_FB18_42fe_A214_BCC6DA1E9C1C" end="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
</links>
</element>
<element xmi:idref="EAID_A7A5D1EF_6DA5_4e2b_9A8B_9F2E94A14680" xmi:type="uml:Class" name="GVQ_FeedbackFocus" scope="public">
<model package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" tpos="0" ea_localid="545" ea_eleType="element"/>
<properties documentation="The FeedbackFocus specifies which other Feedback is the focus of the feedback given." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="bastinl" version="1.0" phase="1.0" created="2012-03-18 13:03:59" modified="2012-05-17 12:15:54" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs/>
<extendedProperties tagged="0" package_name="Consumer quality data model (User FeedBack)"/>
<attributes>
<attribute xmi:idref="EAID_592AF5F4_9FCE_4265_9FD9_541A82D475E2" name="itemRef" scope="Public">
<initial/>
<documentation value="The feedback item, in this case probably linked in via xlink."/>
<model ea_localid="1515" ea_guid="{592AF5F4-9FCE-4265-9FD9-541A82D475E2}"/>
<properties type="MD_Identifier" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="0"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_2C4BDDC5_0800_44fc_BACB_3CFBAB33B2CA" start="EAID_A7A5D1EF_6DA5_4e2b_9A8B_9F2E94A14680" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
</links>
</element>
<element xmi:idref="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9" xmi:type="uml:Class" name="GVQ_FeedbackFocusType" scope="public">
<model package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" tpos="0" ea_localid="523" ea_eleType="element"/>
<properties documentation="The feedback focus is intended to qualify a "narrow" discussion context similar to a discussion thread. The "narrow" context is always within exactly one "hard" context/target.

The focus may refer to some aspect that actually exists (a radio band, a sensor, a geolocation) prior to the feedback focus, or something purely subjective, like a title of a discussion thread. The user may create (some types of) feedback focuses.

As an item may have several foci, a focus should be mostly singular so the multiplicity shows in the items themselves." isSpecification="false" sType="Class" nType="0" scope="public" stereotype="abstract" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="simothum" version="1.0" phase="1.0" created="2012-01-23 14:01:28" modified="2012-05-17 12:19:56" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs value="$XREFPROP=$XID={15AB4631-DB2E-4821-B794-2BE77FB347D0}$XID;$NAM=Stereotypes$NAM;$TYP=element property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@STEREO;Name=abstract;FQName=EPProfile::abstract;@ENDSTEREO;$DES;$CLT={14C5DFB4-0A4B-4918-AE21-0F605569D6D9}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
<extendedProperties tagged="0" package_name="Consumer quality data model (User FeedBack)"/>
<links>
<Association xmi:id="EAID_5BDFDAF4_4752_4462_A7B6_20179C2BC286" start="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9" end="EAID_76AF7E04_FE76_4e3d_BC36_A1518F771FC3"/>
<NoteLink xmi:id="EAID_0C34B442_9E87_49cd_8D3B_0CE95E9D2279" start="EAID_F3F63422_84B3_47f6_8F07_CAFB8D109A5E" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
<Generalization xmi:id="EAID_2A8934FC_E9E5_4c99_82E2_F89D2255A450" start="EAID_0C300047_E005_4bf9_8831_C9A635E54BE1" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
<Generalization xmi:id="EAID_2C4BDDC5_0800_44fc_BACB_3CFBAB33B2CA" start="EAID_A7A5D1EF_6DA5_4e2b_9A8B_9F2E94A14680" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
<Generalization xmi:id="EAID_365C2379_13CE_4895_84B6_C20DD8A1D7C1" start="EAID_5DFBA539_26C5_4a63_9BB9_ABB286245338" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
<Generalization xmi:id="EAID_4B084783_DFA8_4cca_9D92_3DEA7E1F4F05" start="EAID_D4EAC4FB_0561_47ae_82B6_1FA68AF4429D" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
<Association xmi:id="EAID_5E675F93_5D9A_43a7_BB09_59224BCEF6B4" start="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
<Association xmi:id="EAID_6090DDD8_D47A_4c7f_8551_BA097064B16B" start="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
<Generalization xmi:id="EAID_64455902_EFAB_4dd4_8066_940097121498" start="EAID_4A93742D_665C_4a6b_96CE_353354230201" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
<Association xmi:id="EAID_EF782FA2_558B_4a04_8707_A40C26394CED" start="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
</links>
</element>
<element xmi:idref="EAID_596FDD21_F873_4cdf_A890_41DDCBCB3DD9" xmi:type="uml:Class" name="GVQ_FeedbackGroup" scope="public">
<model package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" tpos="0" ea_localid="610" ea_eleType="element"/>
<properties documentation="The feedback group is a collection of coherent feedback from one (or possible more) user(s). It is used to group e.g. an intercomparison report with the rating(s) derived from it.

Every feedback item is contained in exactly one feedback group. In other words, feedback is always given in the context of a feedback group." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="simothum" version="1.0" phase="1.0" created="2012-03-30 09:57:35" modified="2012-04-17 11:51:21" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs/>
<extendedProperties tagged="0" package_name="Consumer quality data model (User FeedBack)"/>
<attributes>
<attribute xmi:idref="EAID_8A4D7C08_548C_4415_B260_0AC11D38D12B" name="timestamp" scope="Private">
<initial/>
<documentation/>
<model ea_localid="1607" ea_guid="{8A4D7C08-548C-4415-B260-0AC11D38D12B}"/>
<properties type="CI_Date" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="0"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
<attribute xmi:idref="EAID_E067E514_1C5A_4bac_8242_3298C38CFC47" name="user" scope="Private">
<initial/>
<documentation/>
<model ea_localid="1606" ea_guid="{E067E514-1C5A-4bac-8242-3298C38CFC47}"/>
<properties type="GVQ_UserInformation" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="1"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
<attribute xmi:idref="EAID_87E6CF5F_BE40_49ed_8E35_9E2A023E7B72" name="roles" scope="Private">
<initial/>
<documentation value="The role of the user with regard to this specific feedback group: this allows producers to add more information after release of the initial metadata."/>
<model ea_localid="1625" ea_guid="{87E6CF5F-BE40-49ed-8E35-9E2A023E7B72}"/>
<properties type="GVQ_UserRoleCodeEnum" derived="0" collection="true" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="2"/>
<stereotype/>
<bounds lower="1" upper="*"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
</attributes>
<links>
<Association xmi:id="EAID_61568D8C_8532_4b48_BA53_4CADEA12CF47" start="EAID_596FDD21_F873_4cdf_A890_41DDCBCB3DD9" end="EAID_0ADEC692_5DCC_4db0_BADE_C6CDADECC9CF"/>
<Association xmi:id="EAID_74B7D37B_54DF_412c_B07E_7847F8E10A65" start="EAID_596FDD21_F873_4cdf_A890_41DDCBCB3DD9" end="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
</links>
</element>
<element xmi:idref="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26" xmi:type="uml:Class" name="GVQ_FeedbackItem" scope="public">
<model package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" tpos="0" ea_localid="524" ea_eleType="element"/>
<properties documentation="The feedback item is the container of the actual feedback. Every item is set into context by a combination of foci, whose interpretation is subject to application guidelines. General intent is specified in the arc." isSpecification="false" sType="Class" nType="0" scope="public" stereotype="abstract" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="simothum" version="1.0" phase="1.0" created="2011-12-09 16:51:44" modified="2012-05-09 15:40:23" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs value="$XREFPROP=$XID={5D6A6C6B-AFA2-4000-9F30-9CE55F1F2EF5}$XID;$NAM=Stereotypes$NAM;$TYP=element property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@STEREO;Name=abstract;FQName=EPProfile::abstract;@ENDSTEREO;$DES;$CLT={29048C5F-6403-48c4-B022-D68B23DDFB26}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
<extendedProperties tagged="0" package_name="Consumer quality data model (User FeedBack)"/>
<attributes>
<attribute xmi:idref="EAID_EC026561_AC4B_4128_A44E_B90A579189B4" name="identifier" scope="Public">
<initial/>
<documentation value="This is an identifier for the feedback item. Main use case is a stable identifier for the feedback focus. Thus, it only needs to be locally unique."/>
<model ea_localid="1612" ea_guid="{EC026561-AC4B-4128-A44E-B90A579189B4}"/>
<properties type="MD_Identifier" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="0"/>
<stereotype stereotype="id"/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={849842EB-3DF7-4323-98AD-EE94935BAC97}$XID;$NAM=Stereotypes$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@STEREO;Name=id;FQName=SoaML::id;@ENDSTEREO;$DES;$CLT={EC026561-AC4B-4128-A44E-B90A579189B4}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
</attributes>
<links>
<Association xmi:id="EAID_5E675F93_5D9A_43a7_BB09_59224BCEF6B4" start="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
<Association xmi:id="EAID_6090DDD8_D47A_4c7f_8551_BA097064B16B" start="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
<Association xmi:id="EAID_EF782FA2_558B_4a04_8707_A40C26394CED" start="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
<Generalization xmi:id="EAID_0FE5F778_89CA_429c_953E_8278A853A4BD" start="EAID_1DEC05B4_2403_45a1_82CA_79AF5E5DEB66" end="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
<Association xmi:id="EAID_74B7D37B_54DF_412c_B07E_7847F8E10A65" start="EAID_596FDD21_F873_4cdf_A890_41DDCBCB3DD9" end="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
<Generalization xmi:id="EAID_81A79DB1_253E_4a40_8D27_1ECB0C01BB4C" start="EAID_3EB0BD09_FB18_42fe_A214_BCC6DA1E9C1C" end="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
<Generalization xmi:id="EAID_AA6DC796_DF20_4f08_AC6B_F6712A932128" start="EAID_0EE537A1_AF88_4afa_94A4_5B788F336114" end="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
<Generalization xmi:id="EAID_C1A654C3_CD3F_469e_A01B_15C480B9409A" start="EAID_3C7773EB_BBCF_4f17_8D0E_3220BF61CF10" end="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
<Generalization xmi:id="EAID_F87ECC54_8059_4214_97EB_75583943DDE5" start="EAID_40D6B57F_4420_43bc_927E_2C2EBC9810C9" end="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
</links>
</element>
<element xmi:idref="EAID_76AF7E04_FE76_4e3d_BC36_A1518F771FC3" xmi:type="uml:Class" name="GVQ_FeedbackTarget" scope="public">
<model package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" tpos="0" ea_localid="525" ea_eleType="element"/>
<properties documentation="The Target unambiguously refers to pretext in the domain of discourse, such as a dataset or a sensor. This should match a datasetURI or MD_Identifier for that resource.

The parent is intended to model containment such as "this sensor is contained in this SOS". This is redundant, but avoids having to understand e.g. SensorML to uncover the relationship. Obviously, the parent should not have finer granularity than the child." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="simothum" version="1.0" phase="1.0" created="2011-12-09 16:44:28" modified="2012-04-13 16:50:11" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs/>
<extendedProperties tagged="0" package_name="Consumer quality data model (User FeedBack)" ea_attsclassified="{FCE6E073-F348-4113-8767-BD9E5E272E6A}"/>
<attributes>
<attribute xmi:idref="EAID_FCE6E073_F348_4113_8767_BD9E5E272E6A" name="parent" scope="Public">
<initial/>
<documentation/>
<model ea_localid="1478" ea_guid="{FCE6E073-F348-4113-8767-BD9E5E272E6A}"/>
<properties type="GVQ_FeedbackTarget" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0" scale="0"/>
<containment containment="Not Specified" position="0"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
<attribute xmi:idref="EAID_9EEA53D3_B4C0_4ff2_B819_F6FBE8E6E350" name="resourceRef" scope="Private">
<initial/>
<documentation value="This field points to a resource (could be the identifier of a dataset in a metadata catalog in GEOSS) which is typically not inside the same system. Any considerations what exactly should go into this field are to be set in application guidelines, or subclasses of this.

Actually, the feedback model does not depend on the target's type, it just postulates a canonicalized or otherwise "matchable" identifier in this field. This could take the form of an outside service to provide the necessary matching capability."/>
<model ea_localid="1613" ea_guid="{9EEA53D3-B4C0-4ff2-B819-F6FBE8E6E350}"/>
<properties type="MD_Identifier" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="1"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
<attribute xmi:idref="EAID_15EBA142_7D48_4d61_B991_706472CE3220" name="natureOfTarget" scope="Public">
<initial/>
<documentation value="The natureOfTarget field gives information mainly about the nature and granularity of the referenced entity, e.g. service, individual sensor, dataset series. Therefore it uses MD_ScopeCode. It is possible that GeoViQua-specific extensions to the list of scope codes may be required - this should be assessed in the prototypes."/>
<model ea_localid="1516" ea_guid="{15EBA142-7D48-4d61-B991-706472CE3220}"/>
<properties type="MD_ScopeCode" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="2"/>
<stereotype stereotype="XSDelement"/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags>
<tag xmi:id="EAID_4EE0F1CB_9BC5_48e8_BBD8_252B71182A22" name="anonymousRole" value="true" notes="Values: true | false
Default: false
Description: The class type will be directly embedded within the complexType definition. Omit attribute or role type wrapper
"/>
<tag xmi:id="EAID_4D22C907_DF31_43ba_A4B9_3C8E7EDA1E6A" name="form" notes="Values: qualified | unqualified
Description: Overrides the elementFormDefault for this schema
"/>
<tag xmi:id="EAID_F6FD2987_EDF0_4241_939D_9A707202C9EA" name="default" notes="Description: As defined in XML Schema sepecification
"/>
<tag xmi:id="EAID_9D8BC127_3804_4a7d_A952_974D1AB7AEFC" name="fixed" notes="Description: As defined in XML Schema sepecification
"/>
</tags>
<xrefs value="$XREFPROP=$XID={B19C3607-5BBE-47f9-B5D8-8FEE362BC54D}$XID;$NAM=Stereotypes$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@STEREO;Name=XSDelement;GUID={F912D22F-5F0B-4a2c-A6E6-C995A1E06D2D};@ENDSTEREO;$DES;$CLT={15EBA142-7D48-4d61-B991-706472CE3220}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
</attributes>
<links>
<Association xmi:id="EAID_813A77A9_CB07_4c84_8440_5C08567297A5" start="EAID_76AF7E04_FE76_4e3d_BC36_A1518F771FC3" end="EAID_76AF7E04_FE76_4e3d_BC36_A1518F771FC3"/>
<NoteLink xmi:id="EAID_2ABC62E0_1F30_4b58_AD3E_192E82361D71" start="EAID_F3F63422_84B3_47f6_8F07_CAFB8D109A5E" end="EAID_76AF7E04_FE76_4e3d_BC36_A1518F771FC3"/>
<Association xmi:id="EAID_5BDFDAF4_4752_4462_A7B6_20179C2BC286" start="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9" end="EAID_76AF7E04_FE76_4e3d_BC36_A1518F771FC3"/>
<Association xmi:id="EAID_813A77A9_CB07_4c84_8440_5C08567297A5" start="EAID_76AF7E04_FE76_4e3d_BC36_A1518F771FC3" end="EAID_76AF7E04_FE76_4e3d_BC36_A1518F771FC3"/>
</links>
</element>
<element xmi:idref="EAID_0EE537A1_AF88_4afa_94A4_5B788F336114" xmi:type="uml:Class" name="GVQ_QualityOverride" scope="public">
<model package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" tpos="0" ea_localid="528" ea_eleType="element"/>
<properties documentation="Could be used for users to enhance metadata or highlight errors in provider quality metadata." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="simothum" version="1.0" phase="1.0" created="2011-12-14 10:55:31" modified="2012-05-04 15:55:37" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs/>
<extendedProperties tagged="0" package_name="Consumer quality data model (User FeedBack)"/>
<attributes>
<attribute xmi:idref="EAID_29E1F7A7_CD9E_4436_A75F_56830A74305B" name="alternativeDataQualityEstimate" scope="Public">
<initial/>
<documentation/>
<model ea_localid="1508" ea_guid="{29E1F7A7-CD9E-4436-A75F-56830A74305B}"/>
<properties type="DQ_DataQuality" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="0"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_AA6DC796_DF20_4f08_AC6B_F6712A932128" start="EAID_0EE537A1_AF88_4afa_94A4_5B788F336114" end="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
</links>
</element>
<element xmi:idref="EAID_1DEC05B4_2403_45a1_82CA_79AF5E5DEB66" xmi:type="uml:Class" name="GVQ_Rating" scope="public">
<model package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" tpos="0" ea_localid="529" ea_eleType="element"/>
<properties documentation="A rating is intended to cover star-like low information content ratings. Unlike e.g. a report, it is aggregable by nature." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="simothum" version="1.0" phase="1.0" created="2011-12-09 16:52:15" modified="2012-04-13 11:54:35" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs/>
<extendedProperties tagged="0" package_name="Consumer quality data model (User FeedBack)"/>
<attributes>
<attribute xmi:idref="EAID_25DA870D_9417_4a5a_B145_294E356FB223" name="ratingValue" scope="Public">
<initial/>
<documentation value="To be restricted between 1 and 5"/>
<model ea_localid="1497" ea_guid="{25DA870D-9417-4a5a-B145-294E356FB223}"/>
<properties type="int" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="0"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_0FE5F778_89CA_429c_953E_8278A853A4BD" start="EAID_1DEC05B4_2403_45a1_82CA_79AF5E5DEB66" end="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
</links>
</element>
<element xmi:idref="EAID_8DD1F654_B1CC_4c85_AEA8_1D263242DFF5" xmi:type="uml:Class" name="GVQ_ReportAspectCode" scope="public">
<model package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" tpos="0" ea_localid="615" ea_eleType="element"/>
<properties isSpecification="false" sType="Class" nType="0" scope="public" stereotype="enumeration" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="simothum" version="1.0" phase="1.0" created="2012-04-16 17:05:08" modified="2012-04-17 10:03:55" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs value="$XREFPROP=$XID={BC17A53F-811E-4cdc-B295-53576CE72A05}$XID;$NAM=Stereotypes$NAM;$TYP=element property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@STEREO;Name=enumeration;GUID={D01D0D2F-DB53-4a75-A186-AD1A80CBC8DC};@ENDSTEREO;$DES;$CLT={8DD1F654-B1CC-4c85-AEA8-1D263242DFF5}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
<extendedProperties tagged="0" package_name="Consumer quality data model (User FeedBack)" ea_attsclassified="{3308DD63-0AA4-47ad-943C-D688870210BC}"/>
<attributes>
<attribute xmi:idref="EAID_29426FCA_A392_46e1_BE39_2D966152AFD0" name="Usage" scope="Public">
<initial body="Usage"/>
<documentation/>
<model ea_localid="1615" ea_guid="{29426FCA-A392-46e1-BE39-2D966152AFD0}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="0"/>
<stereotype stereotype="enum"/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=1;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={3EC2A898-5298-4018-A5CC-CA89ED7A273C}$XID;$NAM=Stereotypes$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@STEREO;Name=enum;@ENDSTEREO;$DES;$CLT={29426FCA-A392-46e1-BE39-2D966152AFD0}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
<attribute xmi:idref="EAID_9C580B03_01D4_4219_9CE0_01F4CF290EDB" name="Problem" scope="Public">
<initial body="Problem"/>
<documentation/>
<model ea_localid="1616" ea_guid="{9C580B03-01D4-4219-9CE0-01F4CF290EDB}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="1"/>
<stereotype stereotype="enum"/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=1;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={8C0FB5E8-B6E8-4b37-935C-66203293F36D}$XID;$NAM=Stereotypes$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@STEREO;Name=enum;@ENDSTEREO;$DES;$CLT={9C580B03-01D4-4219-9CE0-01F4CF290EDB}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
<attribute xmi:idref="EAID_E04FF9C4_6A97_4959_B1E4_68C2973C84B4" name="FitnessForPurpose" scope="Public">
<initial body="Fitness for Purpose"/>
<documentation/>
<model ea_localid="1617" ea_guid="{E04FF9C4-6A97-4959-B1E4-68C2973C84B4}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="2"/>
<stereotype stereotype="enum"/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=1;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={0CE2C3F0-C1B5-455d-BF00-7C8A55458832}$XID;$NAM=Stereotypes$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@STEREO;Name=enum;@ENDSTEREO;$DES;$CLT={E04FF9C4-6A97-4959-B1E4-68C2973C84B4}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
<attribute xmi:idref="EAID_B069A895_C52E_4c46_8DDA_A71682372DF4" name="Alternatives" scope="Public">
<initial body="Alternatives"/>
<documentation/>
<model ea_localid="1618" ea_guid="{B069A895-C52E-4c46-8DDA-A71682372DF4}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="3"/>
<stereotype stereotype="enum"/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=1;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={2F6E6C10-2827-49d6-BCDF-559BF6C34735}$XID;$NAM=Stereotypes$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@STEREO;Name=enum;@ENDSTEREO;$DES;$CLT={B069A895-C52E-4c46-8DDA-A71682372DF4}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
</attributes>
</element>
<element xmi:idref="EAID_D4EAC4FB_0561_47ae_82B6_1FA68AF4429D" xmi:type="uml:Class" name="GVQ_SubjectFocus" scope="public">
<model package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" tpos="0" ea_localid="543" ea_eleType="element"/>
<properties documentation="The subject is intended to act as a title when given, i.e. a concise summary as is used to structure emails or discussion boards." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="bastinl" version="1.0" phase="1.0" created="2012-03-18 12:59:25" modified="2012-05-09 11:41:05" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs/>
<extendedProperties tagged="0" package_name="Consumer quality data model (User FeedBack)"/>
<attributes>
<attribute xmi:idref="EAID_F8BF0845_6F7F_404f_B705_C6DF5D2D22F9" name="title" scope="Public">
<initial/>
<documentation/>
<model ea_localid="1512" ea_guid="{F8BF0845-6F7F-404f-B705-C6DF5D2D22F9}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="Not Specified" position="0"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_4B084783_DFA8_4cca_9D92_3DEA7E1F4F05" start="EAID_D4EAC4FB_0561_47ae_82B6_1FA68AF4429D" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
</links>
</element>
<element xmi:idref="EAID_5DFBA539_26C5_4a63_9BB9_ABB286245338" xmi:type="uml:Class" name="GVQ_TagFocus" scope="public">
<model package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" tpos="0" ea_localid="613" ea_eleType="element"/>
<properties documentation="Tags are intended as an informal qualification to be applied by the user if he decides that the more formal possibilities (like domain or theme) are somehow inadequate." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="simothum" version="1.0" phase="1.0" created="2012-04-10 11:24:26" modified="2012-04-13 14:20:50" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs/>
<extendedProperties tagged="0" package_name="Consumer quality data model (User FeedBack)"/>
<attributes>
<attribute xmi:idref="EAID_04F3DBF1_A1BE_4bf8_BDB9_DF7F9BA0EA8D" name="tags" scope="Public">
<initial/>
<documentation/>
<model ea_localid="1611" ea_guid="{04F3DBF1-A1BE-4bf8-BDB9-DF7F9BA0EA8D}"/>
<properties type="string" derived="0" collection="true" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment containment="By Value" position="0"/>
<stereotype/>
<bounds lower="0" upper="*"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_365C2379_13CE_4895_84B6_C20DD8A1D7C1" start="EAID_5DFBA539_26C5_4a63_9BB9_ABB286245338" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
</links>
</element>
<element xmi:idref="EAID_4A93742D_665C_4a6b_96CE_353354230201" xmi:type="uml:Class" name="GVQ_ThemeFocus" scope="public">
<model package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" tpos="0" ea_localid="611" ea_eleType="element"/>
<properties documentation="We identify EO domains using selected ontologies such as GEMET concepts. The DomainFocus, unlike the TagFocus, uses domain URNs defined in some ontology." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="simothum" version="1.0" phase="1.0" created="2012-03-30 10:18:03" modified="2012-05-09 15:20:13" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs/>
<extendedProperties tagged="0" package_name="Consumer quality data model (User FeedBack)"/>
<attributes>
<attribute xmi:idref="EAID_535E7519_587E_4095_8150_FA2741F99B09" name="themeURN" scope="Private">
<initial/>
<documentation/>
<model ea_localid="1608" ea_guid="{535E7519-587E-4095-8150-FA2741F99B09}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="0"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_64455902_EFAB_4dd4_8066_940097121498" start="EAID_4A93742D_665C_4a6b_96CE_353354230201" end="EAID_14C5DFB4_0A4B_4918_AE21_0F605569D6D9"/>
</links>
</element>
<element xmi:idref="EAID_3C7773EB_BBCF_4f17_8D0E_3220BF61CF10" xmi:type="uml:Class" name="GVQ_UsageReport" scope="public">
<model package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" tpos="0" ea_localid="531" ea_eleType="element"/>
<properties isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="simothum" version="1.0" phase="1.0" created="2011-12-09 16:55:35" modified="2012-04-13 18:00:32" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs/>
<extendedProperties tagged="0" package_name="Consumer quality data model (User FeedBack)"/>
<attributes>
<attribute xmi:idref="EAID_3308DD63_0AA4_47ad_943C_D688870210BC" name="usagePurpose" scope="Public">
<initial/>
<documentation/>
<model ea_localid="1485" ea_guid="{3308DD63-0AA4-47ad-943C-D688870210BC}"/>
<properties type="GVQ_ReportAspectCode" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0" scale="0"/>
<containment position="0"/>
<stereotype/>
<bounds lower="0" upper="*"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
<attribute xmi:idref="EAID_20C3C4E4_DEA3_4f3d_BABC_1C353A457A1F" name="publication" scope="Public">
<initial/>
<documentation value="Link to zero or more publications which describe the use, if relevant"/>
<model ea_localid="1486" ea_guid="{20C3C4E4-DEA3-4f3d-BABC-1C353A457A1F}"/>
<properties type="GVQ_Publication" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0" scale="0"/>
<containment containment="Not Specified" position="1"/>
<stereotype/>
<bounds lower="0" upper="*"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs value="$XREFPROP=$XID={5AD4C388-D550-4f06-9B3F-AB681C11FBF8}$XID;$NAM=CustomProperties$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isID@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={20C3C4E4-DEA3-4f3d-BABC-1C353A457A1F}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
<attribute xmi:idref="EAID_5F6E151B_2A3F_4406_9FBB_018697CD181D" name="usageDescription" scope="Public">
<initial/>
<documentation value="For supplementary information on the exact procedure carried out."/>
<model ea_localid="1506" ea_guid="{5F6E151B-2A3F-4406-9FBB-018697CD181D}"/>
<properties type="string" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="2"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
<attribute xmi:idref="EAID_8AF6D42F_5F3F_4701_9ACB_15C90DFC8DE9" name="alternativeDatasets" scope="Public">
<initial/>
<documentation value="Use the 'uuid' attribute of the MD_Identifier to store a unique identifier for the referenced GEOSS resource"/>
<model ea_localid="1507" ea_guid="{8AF6D42F-5F3F-4701-9ACB-15C90DFC8DE9}"/>
<properties type="MD_Identifier" derived="0" collection="true" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="3"/>
<stereotype stereotype="XSDelement"/>
<bounds lower="0" upper="*"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags>
<tag xmi:id="EAID_B2E8D0D5_E7C0_49bd_B55B_BAE0A61A43A9" name="anonymousRole" value="true" notes="Values: true | false
Default: false
Description: The class type will be directly embedded within the complexType definition. Omit attribute or role type wrapper
"/>
<tag xmi:id="EAID_D7D4AD5E_9FDA_415c_8A12_3528CCEC83BD" name="form" notes="Values: qualified | unqualified
Description: Overrides the elementFormDefault for this schema
"/>
<tag xmi:id="EAID_B5C2445C_1379_4637_AF3E_1F439A803418" name="default" notes="Description: As defined in XML Schema sepecification
"/>
<tag xmi:id="EAID_0F20ED70_14FC_46e5_A304_97E139A27231" name="fixed" notes="Description: As defined in XML Schema sepecification
"/>
</tags>
<xrefs value="$XREFPROP=$XID={13C452DD-7E9C-492b-85C0-7DC05D3E2EA6}$XID;$NAM=CustomProperties$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@PROP=@NAME=isID@ENDNAME;@TYPE=Boolean@ENDTYPE;@VALU=0@ENDVALU;@PRMT=@ENDPRMT;@ENDPROP;$DES;$CLT={8AF6D42F-5F3F-4701-9ACB-15C90DFC8DE9}$CLT;$SUP=<none>$SUP;$ENDXREF;$XREFPROP=$XID={20EA8447-CF0A-4574-B6A3-D9DA8E3EAB31}$XID;$NAM=Stereotypes$NAM;$TYP=attribute property$TYP;$VIS=Public$VIS;$PAR=0$PAR;$DES=@STEREO;Name=XSDelement;GUID={F912D22F-5F0B-4a2c-A6E6-C995A1E06D2D};@ENDSTEREO;$DES;$CLT={8AF6D42F-5F3F-4701-9ACB-15C90DFC8DE9}$CLT;$SUP=<none>$SUP;$ENDXREF;"/>
</attribute>
</attributes>
<links>
<Generalization xmi:id="EAID_C1A654C3_CD3F_469e_A01B_15C480B9409A" start="EAID_3C7773EB_BBCF_4f17_8D0E_3220BF61CF10" end="EAID_29048C5F_6403_48c4_B022_D68B23DDFB26"/>
</links>
</element>
<element xmi:idref="EAID_40D6B57F_4420_43bc_927E_2C2EBC9810C9" xmi:type="uml:Class" name="GVQ_UserComment" scope="public">
<model package="EAPK_B7ABD61D_CDBD_4ac3_B147_92B60CE9BC57" tpos="0" ea_localid="609" ea_eleType="element"/>
<properties documentation="The comment is the most generic feedback type. Depending on the foci, it may serve as answer, rating justification, or general comment." isSpecification="false" sType="Class" nType="0" scope="public" isRoot="false" isLeaf="false" isAbstract="false" isActive="false"/>
<project author="simothum" version="1.0" phase="1.0" created="2012-03-30 09:45:10" modified="2012-04-17 10:58:05" complexity="1" status="Proposed"/>
<code gentype="Java"/>
<style appearance="BackColor=-1;BorderColor=-1;BorderWidth=-1;FontColor=-1;VSwimLanes=1;HSwimLanes=1;BorderStyle=0;"/>
<modelDocument/>
<tags/>
<xrefs/>
<extendedProperties tagged="0" package_name="Consumer quality data model (User FeedBack)"/>
<attributes>
<attribute xmi:idref="EAID_6A406391_7033_4ce3_8873_02619DE03BAA" name="comment" scope="Private">
<initial/>
<documentation value="The user comment's body."/>
<model ea_localid="1605" ea_guid="{6A406391-7033-4ce3-8873-02619DE03BAA}"/>
<properties type="String" derived="0" collection="false" duplicates="0" changeability="changeable"/>
<coords ordered="0"/>
<containment position="0"/>
<stereotype/>
<bounds lower="1" upper="1"/>
<options/>
<style/>
<styleex value="IsLiteral=0;volatile=0;"/>
<tags/>
<xrefs/>
</attribute>
<attribute xmi:idref="EAID_32712AEC_3BF0_4d6f_AE02_4BC626AA6A9E" name="mime-type" scope="Private">
<initial body="text/plain"/>