-
Notifications
You must be signed in to change notification settings - Fork 10
/
MOM_Profile.json
2937 lines (2935 loc) · 90.5 KB
/
MOM_Profile.json
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": "https://w3id.org/xapi/profiles/context",
"id": "https://w3id.org/xapi/tla",
"type": "Profile",
"prefLabel": {
"en": "TLA Profile"
},
"definition": {
"en": "The TLA profile includes Verbs, Activity Types, Extensions, and xAPI document definitions used to represent distributed learning experiences in xAPI."
},
"conformsTo": "https://w3id.org/xapi/profiles#1.0",
"versions": [
{
"id": "https://w3id.org/xapi/tla/v0.13",
"generatedAtTime": "2019-07-19T14:25:59.295Z"
},
{
"id": "https://w3id.org/xapi/tla/v0.14",
"generatedAtTime": "2021-01-19T11:40:22Z"
},
{
"id": "https://w3id.org/xapi/tla/v0.15",
"generatedAtTime": "2021-01-19T11:40:22Z"
},
{
"id": "https://w3id.org/xapi/tla/v0.16",
"generatedAtTime": "2021-06-03T13:04:17Z"
}
],
"scopeNote": {
"en": "The data set used to create this profile was limited, so it is subject to change"
},
"author": {
"type": "Organization",
"name": "Advanced Distributed Learning (ADL) Initiative"
},
"concepts": [
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/attended",
"inScheme": "https://w3id.org/xapi/tla/v0.16",
"prefLabel": {
"en": "attended"
},
"definition": {
"en": "Indicates that the actor is present at a virtual or physical event or activity"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/experienced",
"inScheme": "https://w3id.org/xapi/tla/v0.16",
"prefLabel": {
"en": "experienced"
},
"definition": {
"en": "Indicates the actor encountered a learning situation where a specific achievement or completion is not applicable"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/mastered",
"inScheme": "https://w3id.org/xapi/tla/v0.16",
"prefLabel": {
"en": "mastered"
},
"definition": {
"en": "Indicates the actor has achieved the highest level of comprehension or competency"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/resumed",
"inScheme": "https://w3id.org/xapi/tla/v0.16",
"prefLabel": {
"en": "resumed"
},
"definition": {
"en": "Indicates the actor has continued or reopened a suspended learning activity"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/scored",
"inScheme": "https://w3id.org/xapi/tla/v0.16",
"prefLabel": {
"en": "scored"
},
"definition": {
"en": "Indicates the actor has received a numerical value related to their performance within a learning activity"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/suspended",
"inScheme": "https://w3id.org/xapi/tla/v0.16",
"prefLabel": {
"en": "suspended"
},
"definition": {
"en": "Indicates that the actor has temporarily halted an activity and will resume at a later time"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/registered",
"inScheme": "https://w3id.org/xapi/tla/v0.16",
"prefLabel": {
"en": "registered"
},
"definition": {
"en": "Indicates that the actor has enrolled in a learning activity"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/deselected",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "deselected"
},
"definition": {
"en": "Indicates the actor removed specific goal or task"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/organized",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "organized"
},
"definition": {
"en": "Indicates the actor filtered content that aligns to specific goal"
},
"scopeNote": {
"en": "Based on recently selected competency/goal, what content will satisfy (user search criteria)"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/prioritized",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "prioritized"
},
"definition": {
"en": "Indicates the actor has set a learning goal"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/recommended",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "recommended"
},
"definition": {
"en": "Indicates the learner received the recommendation to follow a career path, work towards a learning objective, or perform a learning activity from the actor"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/planned",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "planned"
},
"definition": {
"en": "Indicates that the actor assigned themselves a new learning goal, without needing approval"
},
"scopeNote": {
"en": "See directed if the user is given the learning goal by an outside body"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/approved",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"relatedMatch": [
"https://w3id.org/xapi/dod-isd/verbs/approved"
],
"prefLabel": {
"en": "approved"
},
"definition": {
"en": "Indicates an OICS approved a requested activity for the given learner"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/explored",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "explored"
},
"definition": {
"en": "Indicates the actor searched active learning goals related to specific content, viewing what other content may trigger related goals, based on active goal and recently completed content"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/directed",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "directed"
},
"definition": {
"en": "Indicates the actor assigned a learning goal to a learner"
},
"scopeNote": {
"en": "See planned if the user set the goal themselves"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/scheduled",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "scheduled"
},
"definition": {
"en": "Indicates the actor scheduled an activity or lesson"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/located",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "located"
},
"definition": {
"en": "Indicates the actor's competency state needs to be updated based on completed content"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/asserted",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "asserted"
},
"definition": {
"en": "Indicates the learner has provided sufficient evidence to update the learner's measure of competence in a given competency"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/validated",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "validated"
},
"definition": {
"en": "Indicates an OICS approved a change to a competency framework within the TLA that will affect the learners’ states"
},
"scopeNote": {
"en": "Competency Framework for qualified personnel is achieving high readiness (updates to Competency Management System)"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/inferred",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "inferred"
},
"definition": {
"en": "Indicates an authoritative source changed a learner's competency assertions based on a valid competency framework change"
},
"scopeNote": {
"en": "Inferences change weighting in competency framework based on new longitudinal data (updates to Competency Management System)"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/qualified",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "qualified"
},
"definition": {
"en": "Indicates the learner meets all the requirements for a badge, but hasn't been awarded the badge yet"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/conferred",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "conferred"
},
"definition": {
"en": "Indicates the OICS conferred a badge to the learner in the learner context extension"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/certified",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "certified"
},
"definition": {
"en": "Indicates the learner received an accreditation by an authoritative source to perform a given job or task"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/verified",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "verified"
},
"definition": {
"en": "Indicates the authoritative source verified evidence of learning from a non-authoritative source as reliable data"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/recruited",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "recruited"
},
"definition": {
"en": "Indicates the actor recruited the learner to join the ecosystem"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/appraised",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "appraised"
},
"definition": {
"en": "Indicates the learner met entry criteria for jobs and assigned a career trajectory"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/detailed",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "detailed"
},
"definition": {
"en": "OICS detailed the learner to a specific job"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/mobilized",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "mobilized"
},
"definition": {
"en": "OICS mobilized the learner to a state of on duty"
},
"scopeNote": {
"en": "This usually means they will be off the grid for a while, causing time late data due to the disconnection"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/employed",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "employed"
},
"definition": {
"en": "Indicates OICS employs the actor such that they started work doing their job"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/schooled",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "schooled"
},
"definition": {
"en": "Indicates OICS has enrolled the learner in a schooling system"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/promoted",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "promoted"
},
"definition": {
"en": "Indicates OICS has changed a learner’s rank, either up or down"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/screened",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "screened"
},
"definition": {
"en": "Indicates OICS screened learner for a potentially narrower career trajectory, and passed through a \"gate\" within their career trajectory"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/selected",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "selected"
},
"definition": {
"en": "Indicates OICS selected learner based on criteria for a potentially wider career trajectory, opening up new career possibilities"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/transitioned",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "transitioned"
},
"definition": {
"en": "Indicates the actor changed career paths, putting them on a completely different and brand new career trajectory"
},
"scopeNote": {
"en": "EX: a pilot to reclassifies to a jag (lawyer)"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/released",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "released"
},
"definition": {
"en": "Indicates OICS released the learner from the learning environment"
},
"scopeNote": {
"en": "EX: Honorable Discharge, Entered Reserves, Death, etc"
}
},
{
"type": "Verb",
"id": "https://w3id.org/xapi/tla/verbs/restricted",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "restricted"
},
"definition": {
"en": "Indicates OICS temporarily restricted the learner from some (possibly all) participation within the learning environment"
}
},
{
"type": "ActivityType",
"id": "https://w3id.org/xapi/tla/activity-types/competency",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "competency"
},
"definition": {
"en": "A knowledge, skill, ability, or other object needed to perform in a given task"
}
},
{
"type": "ActivityType",
"id": "https://w3id.org/xapi/tla/activity-types/activity",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "activity"
},
"definition": {
"en": "Any generic activity an actor can interact with, that is not an assessment"
},
"scopeNote": {
"en": "No pass/fail statements, and assertions made by activities are considered weak (low weight)"
}
},
{
"type": "ActivityType",
"id": "https://w3id.org/xapi/tla/activity-types/assessment",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "assessment"
},
"definition": {
"en": "Any generic exercise that assesses the user's level of competence."
},
"scopeNote": {
"en": "Must be followed pass/fail statements, and assertions made by assessments are considered stronger (more weight)"
}
},
{
"type": "ActivityType",
"id": "https://w3id.org/xapi/tla/activity-types/content_set",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "content set"
},
"definition": {
"en": "Any generic collection of activities and/or assessment activities"
},
"scopeNote": {
"en": "Expected to be used as a context activity"
}
},
{
"type": "ActivityType",
"id": "https://w3id.org/xapi/tla/activity-types/badge",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "badge"
},
"definition": {
"en": "An online badge that is earned after achieving multiple related competencies"
},
"scopeNote": {
"en": "Can be used as a learning goal, or as the object of any badging related authoritative verb"
}
},
{
"type": "ActivityType",
"id": "https://w3id.org/xapi/tla/activity-types/credential",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "credential"
},
"definition": {
"en": "An authrotative statement that the recipient can perform a task"
},
"scopeNote": {
"en": "Can be used as a learning goal, or as the object of any credentialing related authoritative verb THIS IS NOT A COMPETENCY"
}
},
{
"type": "ActivityType",
"id": "https://w3id.org/xapi/tla/activity-types/career",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "career"
},
"definition": {
"en": "An outline of jobs and their requirements in a career, usually used to outline the expected learning path"
},
"scopeNote": {
"en": "Will usually be used as a learning goal, The object ID should point to metadata about the career"
}
},
{
"type": "ActivityType",
"id": "https://w3id.org/xapi/tla/activity-types/career_state",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "career state"
},
"definition": {
"en": "An attribute of one service that has distinct competency requirements, levels of mastery, training requirements associated with it"
}
},
{
"type": "ActivityType",
"id": "https://w3id.org/xapi/tla/activity-types/job_duty_gig",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "job/duty/gig"
},
"definition": {
"en": "An outline of the duties and requirements to perform these duties for a given position"
}
},
{
"id": "https://w3id.org/xapi/tla/extensions/instance",
"type": "ActivityExtension",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "instance"
},
"definition": {
"en": "the instance of the goal that was deselected"
}
},
{
"id": "https://w3id.org/xapi/tla/extensions/confidence",
"type": "ContextExtension",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "confidence"
},
"definition": {
"en": "The measure of a learner's acquisition of a competency according to the asserting authority"
},
"recommendedVerbs": [
"https://w3id.org/xapi/tla/verbs/asserted"
],
"scopeNote": {
"en": "The percentage level of confidence in the assertion, if negative signifies a negative assertion"
}
},
{
"id": "https://w3id.org/xapi/tla/extensions/evidence",
"type": "ContextExtension",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "evidence"
},
"definition": {
"en": "An array of the evidence to support an assertion"
},
"recommendedVerbs": [
"https://w3id.org/xapi/tla/verbs/asserted"
],
"scopeNote": {
"en": "This should be an array that holds the reason for the assertion. Will usually just be a single pointer to another xAPI statement, or an array of pointers"
}
},
{
"id": "https://w3id.org/xapi/tla/extensions/due_date",
"type": "ContextExtension",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "due date"
},
"definition": {
"en": "The ISO time stamp that an activity is due"
},
"recommendedVerbs": [
"https://w3id.org/xapi/tla/verbs/scheduled"
],
"scopeNote": {
"en": "This could be set as NULL if there is no due date"
}
},
{
"id": "https://w3id.org/xapi/tla/extensions/permanent_change_of_station",
"type": "ContextExtension",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "permanent change of station"
},
"definition": {
"en": "A boolean marking if this is a PCS or a different detail event"
},
"recommendedVerbs": [
"https://w3id.org/xapi/tla/verbs/detailed"
]
},
{
"id": "https://w3id.org/xapi/tla/extensions/unit_identification_code",
"type": "ContextExtension",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "unit identification code"
},
"definition": {
"en": "A unique code for the learner's unit"
},
"recommendedVerbs": [
"https://w3id.org/xapi/tla/verbs/detailed",
"https://w3id.org/xapi/tla/verbs/mobilized",
"https://w3id.org/xapi/tla/verbs/employed",
"https://w3id.org/xapi/tla/verbs/schooled"
]
},
{
"id": "https://w3id.org/xapi/tla/extensions/location",
"type": "ContextExtension",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "location"
},
"definition": {
"en": "The physical location of the statement's object"
},
"recommendedVerbs": [
"https://w3id.org/xapi/tla/verbs/detailed",
"https://w3id.org/xapi/tla/verbs/mobilized",
"https://w3id.org/xapi/tla/verbs/employed",
"https://w3id.org/xapi/tla/verbs/schooled"
]
},
{
"id": "https://w3id.org/xapi/tla/extensions/expiration",
"type": "ContextExtension",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "expiration"
},
"definition": {
"en": "The date the screening or selection expires"
},
"recommendedVerbs": [
"https://w3id.org/xapi/tla/verbs/selected",
"https://w3id.org/xapi/tla/verbs/screened"
],
"scopeNote": {
"en": "Should be the same format as the other timestamps within the statement"
}
},
{
"id": "https://w3id.org/xapi/tla/extensions/reason",
"type": "ContextExtension",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "reason"
},
"definition": {
"en": "The reason the learner has left the learning environment"
},
"recommendedVerbs": [
"https://w3id.org/xapi/tla/verbs/released"
],
"scopeNote": {
"en": "This should be a URI pointing to the authoritative record that details why the learner has left this ecosystem"
}
},
{
"id": "https://w3id.org/xapi/tla/extensions/restriction",
"type": "ContextExtension",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "restriction reason"
},
"definition": {
"en": "The reason the learner is restricted"
},
"recommendedVerbs": [
"https://w3id.org/xapi/tla/verbs/restricted"
]
},
{
"id": "https://w3id.org/xapi/tla/extensions/DEP",
"type": "ContextExtension",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "DEP"
},
"definition": {
"en": "A boolean indicating if the user is performing learning activities while in DEP"
},
"scopeNote": {
"en": "It is recommended to use this extension on any learning statements, but not required"
}
}
],
"templates": [
{
"id": "https://w3id.org/xapi/tla#generalrestrictions",
"type": "StatementTemplate",
"inScheme": "https://w3id.org/xapi/tla/v0.10",
"prefLabel": {
"en": "General restrictions"
},
"definition": {
"en": "Restrictions for all tla-defined Statements"
},
"rules": [
{
"location": "$.actor",
"presence": "included",
"scopeNote": {
"en": "When using this profile, every statement should have the learner as the actor"
}
},
{
"location": "$.authority",
"presence": "included",
"scopeNote": {
"en": "Should be used for all Statements. This will usually show the last trusted source to share/hold the statement"
}
},
{
"location": "$.id",
"presence": "included"
},
{
"location": "$.timestamp",
"presence": "included",
"scopeNote": {
"en": "All timestamps need to be in the UTC format and should use the same level of accuracy"
}
}
]
},
{
"id": "https://w3id.org/xapi/tla#attended",
"type": "StatementTemplate",
"prefLabel": {
"en": "attended"
},
"definition": {
"en": "Indicates that the actor is present at a virtual or physical event or activity"
},
"inScheme": "https://w3id.org/xapi/tla/v0.16",
"verb": "https://w3id.org/xapi/tla/verbs/attended",
"rules": [
{
"location": "$.result.duration",
"presence": "recommended"
},
{
"location": "$.object.id",
"presence": "included"
},
{
"location": "$.object.definition.extensions['https://w3id.org/xapi/tla/extensions/instance']",
"presence": "recommended",
"scopeNote": {
"en": "This should be a pointer to the an actual session definition"
}
},
{
"location": "$.object.definition.type",
"presence": "included",
"any": [
"https://w3id.org/xapi/tla/activity-types/activity"
]
}
]
},
{
"id": "https://w3id.org/xapi/tla#experienced",
"type": "StatementTemplate",
"prefLabel": {
"en": "experienced"
},
"definition": {
"en": "Indicates the actor encountered a learning situation where a specific achievement or completion is not applicable"
},
"inScheme": "https://w3id.org/xapi/tla/v0.16",
"verb": "https://w3id.org/xapi/tla/verbs/experienced",
"rules": [
{
"location": "$.result.duration",
"presence": "recommended"
},
{
"location": "$.object.id",
"presence": "included"
},
{
"location": "$.object.definition.extensions['https://w3id.org/xapi/tla/extensions/instance']",
"presence": "recommended",
"scopeNote": {
"en": "This should be a pointer to activity that was experienced"
}
},
{
"location": "$.object.definition.activityType",
"presence": "included",
"any": [
"https://w3id.org/xapi/tla/activity-types/activity",
"https://w3id.org/xapi/tla/activity-types/assessment"
]
}
]
},
{
"id": "https://w3id.org/xapi/tla#mastered",
"type": "StatementTemplate",
"prefLabel": {
"en": "mastered"
},
"definition": {
"en": "Indicates the actor has achieved the highest level of comprehension or competency"
},
"inScheme": "https://w3id.org/xapi/tla/v0.16",
"verb": "https://w3id.org/xapi/tla/verbs/mastered",
"rules": [
{
"location": "$.result.duration",
"presence": "excluded"
},
{
"location": "$.object.id",
"presence": "included"
},
{
"location": "$.object.definition.activityType",
"presence": "included",
"any": [
"https://w3id.org/xapi/tla/activity-types/credential",
"https://w3id.org/xapi/tla/activity-types/job_duty_gig"
]
}
]
},
{
"id": "https://w3id.org/xapi/tla#resumed",
"type": "StatementTemplate",
"prefLabel": {
"en": "resumed"
},
"definition": {
"en": "Indicates the actor has continued or reopened a suspended learning activity"
},
"inScheme": "https://w3id.org/xapi/tla/v0.16",
"verb": "https://w3id.org/xapi/tla/verbs/resumed",
"rules": [
{
"location": "$.result.duration",
"presence": "excluded"
},
{
"location": "$.object.id",
"presence": "included"
},
{
"location": "$.object.definition.activityType",
"presence": "included",
"any": [
"https://w3id.org/xapi/tla/activity-types/activity",
"https://w3id.org/xapi/tla/activity-types/assessment"
]
}
]
},
{
"id": "https://w3id.org/xapi/tla#scored",
"type": "StatementTemplate",
"prefLabel": {
"en": "scored"
},
"definition": {
"en": "Indicates the actor has continued or reopened a suspended learning activity"
},
"inScheme": "https://w3id.org/xapi/tla/v0.16",
"verb": "https://w3id.org/xapi/tla/verbs/scored",
"rules": [
{
"location": "$.result.duration",
"presence": "recommended"
},
{
"location": "$.result.score",
"presence": "included"
},
{
"location": "$.object.id",
"presence": "included"
},
{
"location": "$.object.definition.activityType",
"presence": "included",
"any": [
"https://w3id.org/xapi/tla/activity-types/activity",
"https://w3id.org/xapi/tla/activity-types/assessment"
]
}
]
},
{
"id": "https://w3id.org/xapi/tla#suspended",
"type": "StatementTemplate",
"prefLabel": {
"en": "suspended"
},
"definition": {
"en": "Indicates that the actor has temporarily halted an activity and will resume at a later time"
},
"inScheme": "https://w3id.org/xapi/tla/v0.16",
"verb": "https://w3id.org/xapi/tla/verbs/suspended",
"rules": [
{
"location": "$.result.duration",
"presence": "recommended",
"scopeNote": {
"en": "This should be the amount of time spent in the activity before suspending"
}
},
{
"location": "$.result.score",
"presence": "excluded"
},
{
"location": "$.object.id",
"presence": "included"
},
{
"location": "$.object.definition.activityType",
"presence": "included",
"any": [
"https://w3id.org/xapi/tla/activity-types/activity",
"https://w3id.org/xapi/tla/activity-types/assessment"
]
}
]
},
{
"id": "https://w3id.org/xapi/tla#registered",
"type": "StatementTemplate",
"prefLabel": {
"en": "registered"
},