-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdigcomp.json
More file actions
9387 lines (9387 loc) · 441 KB
/
digcomp.json
File metadata and controls
9387 lines (9387 loc) · 441 KB
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
{
"@context": {
"CompetenceArea": "CompetenceArea",
"Competence": "Competence",
"ProficiencyLevel": "ProficiencyLevel",
"CompetenceStatement": "CompetenceStatement",
"LearningOutcome": "LearningOutcome",
"Glossary": "Glossary"
},
"@graph": [
{
"@type": "CompetenceArea",
"@id": "CompetenceArea/1",
"name": "Information search, evaluation and management",
"description": "To articulate information needs, and to search for, locate and retrieve digital information and content. To judge the relevance of the source and its content in digital environments. To critically evaluate digital sources, content, and processes used to generate them. To store, manage, organise and analyse digital information and data."
},
{
"@type": "CompetenceArea",
"@id": "CompetenceArea/2",
"name": "Communication and collaboration",
"description": "To interact, share, communicate and collaborate in digital environments while being aware of cultural, generational and other diversity and the features and limitations of digital technologies. To participate in society through digital technologies. To assert one's rights and exercise choice in digital environments. To manage one\u2019s digital presence, identity and reputation."
},
{
"@type": "CompetenceArea",
"@id": "CompetenceArea/3",
"name": "Content creation",
"description": "To create and edit digital content. To improve and integrate information and content into an existing body of knowledge while understanding how copyright and licences are to be applied, adopting an ethical and responsible approach in the creation, improvement and integration of digital content. To know how to apply computational thinking and programming techniques to give instructions to a computer system."
},
{
"@type": "CompetenceArea",
"@id": "CompetenceArea/4",
"name": "Safety, wellbeing and responsible use",
"description": "To protect devices, content, personal data and privacy in digital environments. To support physical, mental and social wellbeing of oneself and others, and to be aware of the benefits and risks of digital technologies for wellbeing and social inclusion. To be aware of the environmental impact of digital technologies and their use, to take action to reduce such impact, and to use digital technologies to support sustainability."
},
{
"@type": "CompetenceArea",
"@id": "CompetenceArea/5",
"name": "Problem identification and solving",
"description": "To identify and assess needs, and to use digital technologies and adapt digital environments to meet these needs. To identify and resolve technical and conceptual problems and problem situations in digital environments. To use digital technologies to make improvements in, or new solutions for, processes and products. To build capabilities to operate autonomously in digital environments. To stay informed about digital technological developments and their implications."
},
{
"@type": "Competence",
"@id": "Competence/1.1",
"name": "Browsing, searching and filtering information",
"description": "To articulate information needs, to know how and where to search for information and content in digital environments, and to access and navigate between them. To select appropriate digital tools to create, implement and update searches in digital environments and to be able to distinguish between relevant and irrelevant information and content.",
"competence_area_id": "CompetenceArea/1"
},
{
"@type": "Competence",
"@id": "Competence/1.2",
"name": "Evaluating information",
"description": "To assess and compare the credibility and reliability of sources of information and content in digital environments. To interpret and critically evaluate information and content in digital environments, and the processes used to generate them.",
"competence_area_id": "CompetenceArea/1"
},
{
"@type": "Competence",
"@id": "Competence/1.3",
"name": "Managing information",
"description": "To organise, store and retrieve information and data in digital environments. To collect, process and analyse information and data in structured digital environments.",
"competence_area_id": "CompetenceArea/1"
},
{
"@type": "Competence",
"@id": "Competence/2.1",
"name": "Interacting through and with digital technologies",
"description": "To interact through and with a variety of digital technologies, and to use appropriate digital communication for a given context.",
"competence_area_id": "CompetenceArea/2"
},
{
"@type": "Competence",
"@id": "Competence/2.2",
"name": "Sharing through digital technologies",
"description": "To share information and content ethically and responsibly with others through appropriate digital technologies.",
"competence_area_id": "CompetenceArea/2"
},
{
"@type": "Competence",
"@id": "Competence/2.3",
"name": "Engaging in citizenship through digital technologies",
"description": "To participate in society through the ethical and responsible use of digital platforms and services. To seek opportunities for self-empowerment and participation through appropriate digital technologies. To be aware of and assert one's rights, and to exercise choice, in digital environments.",
"competence_area_id": "CompetenceArea/2"
},
{
"@type": "Competence",
"@id": "Competence/2.4",
"name": "Collaborating through digital technologies",
"description": "To use digital technologies ethically and responsibly for collaborative purposes, and for the co-construction and co-creation of information, resources and knowledge.",
"competence_area_id": "CompetenceArea/2"
},
{
"@type": "Competence",
"@id": "Competence/2.5",
"name": "Digital behaviour",
"description": "To be aware of behavioural norms, and to know how to behave respectfully while using digital technologies and interacting in digital environments. To adapt communication to specific contexts, and to be aware of and respect cultural, generational and other diversity in digital environments.",
"competence_area_id": "CompetenceArea/2"
},
{
"@type": "Competence",
"@id": "Competence/2.6",
"name": "Managing digital identity",
"description": "To manage one or multiple digital identities. To take actions to help protect one\u2019s digital reputation (how one is perceived based on online presence), and to manage one's digital footprint (the data that is produced through use of and by digital platforms and services).",
"competence_area_id": "CompetenceArea/2"
},
{
"@type": "Competence",
"@id": "Competence/3.1",
"name": "Developing digital content",
"description": "To use digital technologies ethically and responsibly to create and edit a variety of content. To express oneself through digital means.",
"competence_area_id": "CompetenceArea/3"
},
{
"@type": "Competence",
"@id": "Competence/3.2",
"name": "Integrating and re-elaborating digital content",
"description": "To modify, refine and integrate new information and content into existing knowledge and resources to create new and original content and knowledge.",
"competence_area_id": "CompetenceArea/3"
},
{
"@type": "Competence",
"@id": "Competence/3.3",
"name": "Copyright and licences",
"description": "To understand how copyright and licences, as well as associated legal and ethical issues, apply to digital content, and how to correctly apply them.",
"competence_area_id": "CompetenceArea/3"
},
{
"@type": "Competence",
"@id": "Competence/3.4",
"name": "Computational thinking and programming",
"description": "To understand and implement steps to analyse a problem, recognise sub-problems, and plan and develop a sequence of instructions for a computing system to solve a given problem or to perform a specific task.",
"competence_area_id": "CompetenceArea/3"
},
{
"@type": "Competence",
"@id": "Competence/4.1",
"name": "Protecting devices",
"description": "To apply safety and cybersecurity measures in order to protect digital devices and content. To be aware of the evolving nature of risks and threats in digital environments, and to have due regard to security of digital devices and their contents.",
"competence_area_id": "CompetenceArea/4"
},
{
"@type": "Competence",
"@id": "Competence/4.2",
"name": "Protecting personal data and privacy",
"description": "To be aware of and exercise one\u2019s rights in relation to personal data and privacy in digital environments. To evaluate and manage privacy risks and protect personal data and privacy in digital environments. To use and share one's own and others' personal data safely, ethically and responsibly.",
"competence_area_id": "CompetenceArea/4"
},
{
"@type": "Competence",
"@id": "Competence/4.3",
"name": "Supporting wellbeing",
"description": "To use digital technologies in ways that support wellbeing and inclusion. To minimise risks and threats to physical, mental and social wellbeing of oneself and others while using digital technologies. To balance usage of digital technologies with offline activities to support wellbeing. To take action to help protect oneself and others from possible dangers in digital environments (e.g. cyberbullying, harmful content), and know how to respond to such dangers.",
"competence_area_id": "CompetenceArea/4"
},
{
"@type": "Competence",
"@id": "Competence/4.4",
"name": "Environmental impacts of digital technologies",
"description": "To be aware of the environmental impacts of digital technologies, including device production, operation, repair, recycling, disposal, data storage infrastructure, energy consumption and usage of tools and applications. To take action to reduce such impact and to use digital technologies to support sustainability.",
"competence_area_id": "CompetenceArea/4"
},
{
"@type": "Competence",
"@id": "Competence/5.1",
"name": "Identifying and solving technical problems",
"description": "To identify technical problems when operating digital devices and in digital environments, and to solve them through a variety of means.",
"competence_area_id": "CompetenceArea/5"
},
{
"@type": "Competence",
"@id": "Competence/5.2",
"name": "Identifying needs and digital technological responses",
"description": "To assess one's own and others' needs and to evaluate, select, use and adapt digital technologies to meet these needs. To adjust and customise digital environments to the contexts, goals and needs (e.g. accessibility) of oneself and others.",
"competence_area_id": "CompetenceArea/5"
},
{
"@type": "Competence",
"@id": "Competence/5.3",
"name": "Identifying creative solutions using digital technologies",
"description": "To use digital technologies to make improvements in or new solutions for processes and products, using a human-centric approach. To engage individually and collectively in critical thinking processes, and the creative and purposeful use of digital technologies, to understand and resolve conceptual problems and problem situations.",
"competence_area_id": "CompetenceArea/5"
},
{
"@type": "Competence",
"@id": "Competence/5.4",
"name": "Identifying and addressing digital competence needs",
"description": "To recognise where one\u2019s own digital competence needs to be improved or updated. To address digital competence needs within a broader process of lifelong learning, building capacity and autonomy. To support others with their digital competence development. To stay informed about digital technological developments and their personal, professional and societal implications.",
"competence_area_id": "CompetenceArea/5"
},
{
"@type": "ProficiencyLevel",
"@id": "ProficiencyLevel/Basic_1",
"four_levels_name": "Basic",
"eight_levels_mapping": 1,
"six_levels_mapping": "A1",
"four_levels_description": "At basic level, individuals remember and implement simple tasks with guidance as needed.",
"eight_levels_description": "At the bottom of the Basic level, individuals require guidance to recognise and implement many or most simple tasks.",
"applies_to": "To support personal, learning and/or working goals and participate in society."
},
{
"@type": "ProficiencyLevel",
"@id": "ProficiencyLevel/Basic_2",
"four_levels_name": "Basic",
"eight_levels_mapping": 2,
"six_levels_mapping": "A2",
"four_levels_description": "At basic level, individuals remember and implement simple tasks with guidance as needed.",
"eight_levels_description": "At the top of the Basic level, individuals remember and implement simple tasks with little or no guidance.",
"applies_to": "To support personal, learning and/or working goals and participate in society."
},
{
"@type": "ProficiencyLevel",
"@id": "ProficiencyLevel/Intermediate_3",
"four_levels_name": "Intermediate",
"eight_levels_mapping": 3,
"six_levels_mapping": "B1",
"four_levels_description": "At intermediate level, individuals identify and implement well-defined tasks and solve well-defined problems autonomously.",
"eight_levels_description": "At the bottom of the Intermediate level, individuals show some autonomy to identify and implement well-defined tasks and solve well-defined problems.",
"applies_to": "To support personal, learning and/or working goals and participate autonomously in society."
},
{
"@type": "ProficiencyLevel",
"@id": "ProficiencyLevel/Intermediate_4",
"four_levels_name": "Intermediate",
"eight_levels_mapping": 4,
"six_levels_mapping": "B2",
"four_levels_description": "At intermediate level, individuals identify and implement well-defined tasks and solve well-defined problems autonomously.",
"eight_levels_description": "At the top of the Intermediate level, individuals confidently and autonomously identify and implement well-defined tasks and solve well-defined problems.",
"applies_to": "To support personal, learning and/or working goals and participate autonomously in society."
},
{
"@type": "ProficiencyLevel",
"@id": "ProficiencyLevel/Advanced_5",
"four_levels_name": "Advanced",
"eight_levels_mapping": 5,
"six_levels_mapping": "C1",
"four_levels_description": "At advanced level, individuals assess and apply solutions to a variety of complex tasks autonomously and adapt to a variety of contexts to evaluate and execute tasks appropriately, guiding others if and as required.",
"eight_levels_description": "At the bottom of the Advanced level, individuals assess and apply solutions to a variety of well-defined tasks and engage with some complex tasks. They identify situations where approaches may need to be adapted, and guide others on well-defined tasks if and as required.",
"applies_to": "To support personal, learning and/or working goals, participate effectively in society, and manage or support others in achieving their goals."
},
{
"@type": "ProficiencyLevel",
"@id": "ProficiencyLevel/Advanced_6",
"four_levels_name": "Advanced",
"eight_levels_mapping": 6,
"six_levels_mapping": "C1",
"four_levels_description": "At advanced level, individuals assess and apply solutions to a variety of complex tasks autonomously and adapt to a variety of contexts to evaluate and execute tasks appropriately, guiding others if and as required.",
"eight_levels_description": "At the top of the Advanced level, individuals work confidently on a variety of complex tasks, respond effectively to challenges in changing contexts, and lead or manage complex projects, guiding others on complex tasks if and as required.",
"applies_to": "To support personal, learning and/or working goals, participate effectively in society, and manage or support others in achieving their goals."
},
{
"@type": "ProficiencyLevel",
"@id": "ProficiencyLevel/Highly advanced_7",
"four_levels_name": "Highly advanced",
"eight_levels_mapping": 7,
"six_levels_mapping": "C2",
"four_levels_description": "At highly advanced level, individuals assess, evaluate and resolve highly complex or specialised problems to create new solutions or adapt existing ones, leading and guiding others if and as required.",
"eight_levels_description": "At the bottom of the Highly Advanced level, individuals assess highly complex or specialised problems and may contribute to new solutions or adapt existing ones, leading and guiding others if and as required.",
"applies_to": "To support personal, learning and/or working goals, help others to participate effectively in society, lead or support others to achieve complex goals, and/or lead or contribute to improvements in or new solutions for highly complex problems."
},
{
"@type": "ProficiencyLevel",
"@id": "ProficiencyLevel/Highly advanced_8",
"four_levels_name": "Highly advanced",
"eight_levels_mapping": 8,
"six_levels_mapping": "C2",
"four_levels_description": "At highly advanced level, individuals assess, evaluate and resolve highly complex or specialised problems to create new solutions or adapt existing ones, leading and guiding others if and as required.",
"eight_levels_description": "At the top of the Highly Advanced level, individuals lead and guide others on the creation of solutions to highly complex or specialised problems.",
"applies_to": "To support personal, learning and/or working goals, help others to participate effectively in society, lead or support others to achieve complex goals, and/or lead or contribute to improvements in or new solutions for highly complex problems."
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.1.01",
"description": "Acknowledge the benefits of using different digital search tools and methods, depending on one\u2019s purpose.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.1",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.1.02",
"description": "Identify the main features of commonly-used AI-driven and traditional search tools.",
"ai_label": "AI-Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.1",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.1.03",
"description": "Recognise that digital search results or outputs can contain information that may not be relevant, and that they depend on the digital search tool used and the way that an individual specifies the search.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.1",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.1.04",
"description": "Use digital search tools to implement, refine and update basic information searches.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.1",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.1.05",
"description": "Purposefully explore new digital search tools and strategies.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.1",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.1.06",
"description": "Select appropriate digital search tools based on information needs.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.1",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.1.07",
"description": "Distinguish between more and less relevant digital search results or outputs.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.1",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.1.08",
"description": "Translate information needs into effective digital search queries, commands or statements, and apply appropriate strategies to refine or filter results.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.1",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.1.09",
"description": "Continually explore functions and features of familiar and novel digital search tools to deepen capabilities.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.1",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.1.10",
"description": "Combine a variety of digital search tools and strategies to address complex information needs.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.1",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.1.11",
"description": "Assist others in developing their digital search capabilities.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.1",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.1.12",
"description": "Stay informed about developments in digital search technologies.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.1",
"four_levels_proficiency_name": "ProficiencyLevel/Highly advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.1.13",
"description": "Combine a variety of digital search tools and strategies to address highly complex or specialised information needs.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.1",
"four_levels_proficiency_name": "ProficiencyLevel/Highly advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.1.14",
"description": "Assist others to implement and refine complex or specialised searches in digital environments.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.1",
"four_levels_proficiency_name": "ProficiencyLevel/Highly advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.1.15",
"description": "Contribute to improvements in or new solutions for complex or specialised searches in digital environments.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.1",
"four_levels_proficiency_name": "ProficiencyLevel/Highly advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.01",
"description": "Acknowledge the benefits of a cautious approach in interpreting information and content in digital environments.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.02",
"description": "Recognise that some digital information sources and systems may not be trustworthy.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.03",
"description": "Recognise that it can be difficult to distinguish between information and content generated by humans and AI systems.",
"ai_label": "AI-Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.04",
"description": "Recognise examples of misinformation, disinformation, and sources of bias.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.05",
"description": "Recognise examples of social media influencing and filter bubbles.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.06",
"description": "Make a basic assessment of the reliability and credibility of digital information sources and content.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.07",
"description": "Identify the source of online information and the purposes of fact-checking services to develop pre-bunking and de-bunking capabilities.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.08",
"description": "Recognise that the data used to train AI systems and how they are trained affects the reliability of the information they provide.",
"ai_label": "AI-Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.09",
"description": "Recognise that some digital technologies, such as AI systems, might function like a 'black box', making it difficult to explain why or how an output has been produced.",
"ai_label": "AI-Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.10",
"description": "Recognise that AI systems may produce output which is inaccurate, even if it may seem plausible, and that the human using the AI system is responsible for checking the quality and validity of information and content generated.",
"ai_label": "AI-Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.11",
"description": "Recognise that individual (cognitive and affective) biases and AI system biases play a role in the generation and interpretation of information.",
"ai_label": "AI-Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.12",
"description": "Recognise and respond effectively to user-directing strategies in digital environments such as clickbait, nudging and gamification.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.13",
"description": "Critically assess the reliability of sources, information and content in digital environments, considering the role of AI systems, personalisation effects, and commercial or other interests.",
"ai_label": "AI-Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.14",
"description": "Continually scrutinise how AI systems, biases, and various interests shape generation, presentation and interpretation of information in digital environments.",
"ai_label": "AI-Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.15",
"description": "Describe features of trustworthy digital technologies, such as AI systems.",
"ai_label": "AI-Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.16",
"description": "Describe personal, social and political consequences of misinformation, disinformation, sources of bias, social media influencing and filter bubbles.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.17",
"description": "Thoroughly assess the reliability and accuracy of a diversity of digital sources, information and content, considering a range of potential influencing factors.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.18",
"description": "Support others to develop capabilities to assess the credibility and reliability of digital sources, information and content.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.19",
"description": "Systematically assess and evaluate digital sources, information and content to support complex decision-making.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Highly advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.20",
"description": "Help others to develop capabilities to critically evaluate information and content, and resilience to misinformation and disinformation, in digital environments.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Highly advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.2.21",
"description": "Lead or contribute to initiatives that support accurate interpretation of information in digital environments.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.2",
"four_levels_proficiency_name": "ProficiencyLevel/Highly advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.01",
"description": "Acknowledge the benefits of managing and organising information in digital environments.",
"ai_label": "AI not Implicit or Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.02",
"description": "Recognise functions of data removal, restoration and backup, and main properties of digital files and folders.",
"ai_label": "AI not Implicit or Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.03",
"description": "Download, save, retrieve, move and delete digital files.",
"ai_label": "AI not Implicit or Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.04",
"description": "Organise and format simple data in a structured digital environment, such as in spreadsheets.",
"ai_label": "AI not Implicit or Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.05",
"description": "Update one's contacts, such as on phone, email or social media.",
"ai_label": "AI not Implicit or Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.06",
"description": "Acknowledge the importance of careful and ethical management of data and information in digital environments.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.07",
"description": "Apply naming conventions to digital files and hierarchies to digital folders.",
"ai_label": "AI not Implicit or Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.08",
"description": "Organise folders, and manage, save and delete files on digital devices, external storage, and cloud services.",
"ai_label": "AI not Implicit or Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.09",
"description": "Identify common types of data and their formats, and use data collection tools for simple processing of data.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.10",
"description": "Manage information in one's digital accounts, such as email.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.11",
"description": "Organise and format data and apply basic formulas in a structured digital environment, such as in spreadsheets.",
"ai_label": "AI not Implicit or Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.12",
"description": "Prioritise ethical and transparent management and processing of data and information in digital environments.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.13",
"description": "Apply a variety of functions to transfer and manage data and information in digital environments.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.14",
"description": "Describe examples, applications and limitations of open data and big data.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.15",
"description": "Use range of digital tools and methods to collect and process a variety of data and information.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.16",
"description": "Apply appropriate analysis to information and data in digital environments to contribute to complex decision-making.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.17",
"description": "Assist others with data and information management, processing and analysis in digital environments.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.18",
"description": "Acknowledge the importance of structuring and documenting data and information in digital environments for the benefit of others.",
"ai_label": "AI not Implicit or Explicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Highly advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.19",
"description": "Develop and implement strategies for complex or specialised data and information management, processing and analysis in digital environments.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Highly advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.20",
"description": "Use a variety of digital tools and methods to process, manage or analyse complex data or large volumes of information.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Highly advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.21",
"description": "Lead or contribute to initiatives that support others in advanced information and data management, processing and analysis in digital environments.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Highly advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS1.3.22",
"description": "Contribute to improvements in or new solutions for data management, processing or analysis in digital environments.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/1",
"competence_id": "Competence/1.3",
"four_levels_proficiency_name": "ProficiencyLevel/Highly advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.01",
"description": "Identify and use basic features of digital communication tools to interact with individuals and groups.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.02",
"description": "Acknowledge the importance of taking others\u2019 preferences into account in digital communication.",
"ai_label": "AI not Implicit or Explicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.03",
"description": "Recognise differences between digital and non-digital interactions, and between physical and virtual realities.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.04",
"description": "Identify basic features of virtual assistants (chatbots) and recognise key differences between human-to-machine and human-to-human interactions.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.05",
"description": "Recognise in general terms what a robot is, the non-human nature of robots, and that humans interact with robots to carry out tasks.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.06",
"description": "Acknowledge the importance of tailoring one's digital communication to specific contexts.",
"ai_label": "AI not Implicit or Explicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.07",
"description": "Recognise that there is a reality-virtuality continuum in digital environments.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.08",
"description": "Identify a suitable communication means for a given context or purpose.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.09",
"description": "Use multiple features of a variety of digital communication tools to interact with and manage individuals, groups and channels.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.10",
"description": "Develop and refine questions, commands or statements (prompts) for virtual assistants (chatbots) and AI systems to handle non-complex interactions.",
"ai_label": "AI-Explicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.11",
"description": "Define how humans can interact with robots, identifying their key features (such as sensors, software, motion controls and human interface), and recognising that they can operate with varying degrees of autonomy.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Intermediate"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.12",
"description": "Continually adapt communication in digital environments in response to a variety of contexts.",
"ai_label": "AI not Implicit or Explicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.13",
"description": "Combine digital communication tools and methods for complex communication and interaction tasks.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.14",
"description": "Systematically develop and progressively refine questions, commands or statements (prompts) for AI systems to handle complex interactions.",
"ai_label": "AI-Explicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.15",
"description": "Assist others to assess and select suitable digital communication tools for a given purpose.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.16",
"description": "Organise and/or moderate complex digital events.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.17",
"description": "Assess benefits and disadvantages of robotic applications in a specific context.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.18",
"description": "Stay informed about developments in digital communication and interaction tools and methods.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Highly advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.19",
"description": "Assess and combine digital communication and interaction tools for highly complex or novel tasks.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Highly advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.20",
"description": "Provide guidance, support or leadership in the advanced use of communication and interaction tools.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Highly advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.1.21",
"description": "Lead or contribute to improvements in or new solutions for digital communication or human-machine interaction.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.1",
"four_levels_proficiency_name": "ProficiencyLevel/Highly advanced"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.2.01",
"description": "Acknowledge the importance of ethical and responsible sharing of information and content.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.2",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.2.02",
"description": "Identify functions and uses of social media, and examples of common social media platforms.",
"ai_label": "AI-Implicit",
"competence_area_id": "CompetenceArea/2",
"competence_id": "Competence/2.2",
"four_levels_proficiency_name": "ProficiencyLevel/Basic"
},
{
"@type": "CompetenceStatement",
"@id": "CompetenceStatement/CS2.2.03",
"description": "Recognise benefits and risks of sharing information and content in digital environments, and that individuals can choose how and what to share.",