-
Notifications
You must be signed in to change notification settings - Fork 259
/
Copy pathnice-framework-skills.json
3351 lines (3351 loc) · 122 KB
/
nice-framework-skills.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
{
"authors": [
"NIST",
"Jean-Louis Huynen"
],
"category": "workforce",
"description": "Skills based on the NIST NICE framework",
"name": "NICE Skills",
"source": "https://csrc.nist.gov/pubs/sp/800/181/r1/final",
"type": "nice-framework-skills",
"uuid": "2d330f93-fa49-4451-859a-aacc68c63110",
"values": [
{
"description": "Skill in network systems management principles, models, methods (e.g., end-to-end systems performance monitoring), and tools",
"related": [],
"uuid": "f69cae5c-f66a-5e4b-b042-a92dc7ff985e",
"value": "Skill in network systems management principles, models, methods (e.g., end-to-end systems performance monitoring), and tools - S0136"
},
{
"description": "Skill in creating system security policies",
"related": [],
"uuid": "e3f9dd11-c4ac-5db0-bb76-475606099a3e",
"value": "Skill in creating system security policies - S0564"
},
{
"description": "Skill in anticipating new security threats",
"related": [],
"uuid": "3e40800e-a465-5fd0-92ba-593f8ad4b988",
"value": "Skill in anticipating new security threats - S0799"
},
{
"description": "Skill in communicating with external organizations",
"related": [],
"uuid": "7dc05996-074e-5bf8-a519-3bd16d4e5361",
"value": "Skill in communicating with external organizations - S0826"
},
{
"description": "Skill in applying standards",
"related": [],
"uuid": "c423b825-1603-56ab-8a74-019f71ff904f",
"value": "Skill in applying standards - S0384"
},
{
"description": "Skill in conducting market research",
"related": [],
"uuid": "3349005a-34a8-54d8-8184-0e4a404e1718",
"value": "Skill in conducting market research - S0404"
},
{
"description": "Skill in pricing products",
"related": [],
"uuid": "868809c9-8b0d-5004-9a53-445169a0070f",
"value": "Skill in pricing products - S0405"
},
{
"description": "Skill in analyzing supplier trustworthiness",
"related": [],
"uuid": "ba6dd2a9-8d87-51af-85fa-2f9dd7cb6bc2",
"value": "Skill in analyzing supplier trustworthiness - S0412"
},
{
"description": "Skill in determining supplier trustworthiness",
"related": [],
"uuid": "7e6de68b-7161-5641-b662-0b0303c39d99",
"value": "Skill in determining supplier trustworthiness - S0413"
},
{
"description": "Skill in monitoring system performance",
"related": [],
"uuid": "7787c1ad-9368-5cde-b12f-8640ec0e228e",
"value": "Skill in monitoring system performance - S0580"
},
{
"description": "Skill in configuring systems for performance enhancement",
"related": [],
"uuid": "5371678d-4d83-5fce-9e99-04c33e8643d4",
"value": "Skill in configuring systems for performance enhancement - S0581"
},
{
"description": "Skill in performing data requirement analysis",
"related": [],
"uuid": "09170fb8-c6bb-5906-bdd4-4cb14bafe314",
"value": "Skill in performing data requirement analysis - S0855"
},
{
"description": "Skill in creating a risk management program",
"related": [],
"uuid": "5ad444b3-b08e-545a-9f5b-fbd3fdf143c7",
"value": "Skill in creating a risk management program - S0452"
},
{
"description": "Skill in creating a risk management strategy",
"related": [],
"uuid": "3d467f42-31bc-50ed-b2d1-c513344fac0d",
"value": "Skill in creating a risk management strategy - S0453"
},
{
"description": "Skill in creating an internal information sharing program",
"related": [],
"uuid": "86e13fd0-840a-5384-b8dd-f4cc29fb3f3f",
"value": "Skill in creating an internal information sharing program - S0454"
},
{
"description": "Skill in integrating authorizations with requirements",
"related": [],
"uuid": "be4629fe-93fa-502f-a3f1-68a19e99528e",
"value": "Skill in integrating authorizations with requirements - S0455"
},
{
"description": "Skill in integrating security plans and authorizations",
"related": [],
"uuid": "4f9e0974-2b44-5142-923c-ef5e5d6fad55",
"value": "Skill in integrating security plans and authorizations - S0456"
},
{
"description": "Skill in determining system authorization status",
"related": [],
"uuid": "e77ef729-46f4-5232-ac17-81d9874eccc2",
"value": "Skill in determining system authorization status - S0457"
},
{
"description": "Skill in creating security assessment reports",
"related": [],
"uuid": "d3c73dc4-6703-5093-8d08-1c8a44ff524e",
"value": "Skill in creating security assessment reports - S0459"
},
{
"description": "Skill in maintaining data",
"related": [],
"uuid": "0a65fa26-7e48-545b-9cd1-c3bce96fa670",
"value": "Skill in maintaining data - S0843"
},
{
"description": "Skill in verifying contractor compliance with contracts",
"related": [],
"uuid": "c2b4c273-c6ee-51bb-b0cf-7f432495bcac",
"value": "Skill in verifying contractor compliance with contracts - S0460"
},
{
"description": "Skill in integrating security requirements and contracts",
"related": [],
"uuid": "64462c12-d36c-5993-834c-1830d1681a55",
"value": "Skill in integrating security requirements and contracts - S0461"
},
{
"description": "Skill in applying stakeholder management within a system development life cycle",
"related": [],
"uuid": "2fbb13d1-0878-5e1c-9086-e5e1dd2673ce",
"value": "Skill in applying stakeholder management within a system development life cycle - S0464"
},
{
"description": "Skill in implementing countermeasures",
"related": [],
"uuid": "34bc6941-dc63-5ccf-ad91-6a4ea82a7217",
"value": "Skill in implementing countermeasures - S0489"
},
{
"description": "Skill in developing curriculum standards",
"related": [],
"uuid": "1d625141-6e29-5486-9dae-0cb1dbe9767b",
"value": "Skill in developing curriculum standards - S0816"
},
{
"description": "Skill in providing software updates",
"related": [],
"uuid": "7a972daa-315e-5f2e-8899-125c4b93703e",
"value": "Skill in providing software updates - S0541"
},
{
"description": "Skill in developing access control lists",
"related": [],
"uuid": "a38a0dc4-6f0d-5585-b589-f0c2ab5c4754",
"value": "Skill in developing access control lists - S0542"
},
{
"description": "Skill in responding to threat reports",
"related": [],
"uuid": "abdbc4ad-031d-5d4e-a7f0-8aad91f9b96f",
"value": "Skill in responding to threat reports - S0810"
},
{
"description": "Skill in performing supply chain analysis",
"related": [],
"uuid": "93653722-6dbb-55d0-b0b7-0aea7f1baab3",
"value": "Skill in performing supply chain analysis - S0812"
},
{
"description": "Skill in performing market analysis",
"related": [],
"uuid": "38393261-8168-5fd4-8f85-e4788a7c2052",
"value": "Skill in performing market analysis - S0868"
},
{
"description": "Skill in creating policies",
"related": [],
"uuid": "09328367-6036-5071-b73d-84f976229c56",
"value": "Skill in creating policies - S0665"
},
{
"description": "Skill in defining performance objectives",
"related": [],
"uuid": "4fde96d0-d5fe-5292-b29b-43be1a1bc76b",
"value": "Skill in defining performance objectives - S0666"
},
{
"description": "Skill in cooperating with internal and external stakeholders",
"related": [],
"uuid": "8c87da6c-63d6-59bb-b703-a074b32aad53",
"value": "Skill in cooperating with internal and external stakeholders - S0832"
},
{
"description": "Skill in correlating incident data",
"related": [],
"uuid": "830d5a65-d61f-53f8-a75d-2348e80b584e",
"value": "Skill in correlating incident data - S0833"
},
{
"description": "Skill in applying security controls",
"related": [],
"uuid": "96d4b11c-b23a-55a7-8379-f6e49eaf854c",
"value": "Skill in applying security controls - S0097"
},
{
"description": "Skill in verifying participation in a security awareness program",
"related": [],
"uuid": "ae5de8bf-79d9-531d-94c4-da12a55646d1",
"value": "Skill in verifying participation in a security awareness program - S0379"
},
{
"description": "Skill in facilitating cybersecurity awareness briefings",
"related": [],
"uuid": "2b72130d-efa8-5c5f-bfa7-b8d646c101c3",
"value": "Skill in facilitating cybersecurity awareness briefings - S0380"
},
{
"description": "Skill in developing training programs",
"related": [],
"uuid": "d1508f97-82a4-5bca-8c8a-de0127d896d7",
"value": "Skill in developing training programs - S0381"
},
{
"description": "Skill in facilitating small group discussions",
"related": [],
"uuid": "6c626338-b07c-5456-8010-cee3a0d44e25",
"value": "Skill in facilitating small group discussions - S0388"
},
{
"description": "Skill in facilitating group discussions",
"related": [],
"uuid": "c7eb6bf0-36b0-56f6-9ad4-29df908b717f",
"value": "Skill in facilitating group discussions - S0389"
},
{
"description": "Skill in assessing learner comprehension",
"related": [],
"uuid": "a69051a6-4e52-5d0b-a361-e1a0e03ab05a",
"value": "Skill in assessing learner comprehension - S0390"
},
{
"description": "Skill in providing training and education feedback to learners",
"related": [],
"uuid": "e8740a5c-e863-5f96-92e4-86d2e6a0c571",
"value": "Skill in providing training and education feedback to learners - S0392"
},
{
"description": "Skill in applying technologies for instructional purposes",
"related": [],
"uuid": "bebbe751-5b98-513b-97ba-6ceaa02ecf5e",
"value": "Skill in applying technologies for instructional purposes - S0629"
},
{
"description": "Skill in developing instructional materials",
"related": [],
"uuid": "dd9ba699-0ab8-5089-ba73-2f9fabf472c5",
"value": "Skill in developing instructional materials - S0395"
},
{
"description": "Skill in conducting an education needs assessment",
"related": [],
"uuid": "3baae9d4-fb8b-5ee0-8f40-6255b6db7150",
"value": "Skill in conducting an education needs assessment - S0467"
},
{
"description": "Skill in conducting a training needs assessment",
"related": [],
"uuid": "d8d327ff-2a82-5739-9b68-6055aebc968d",
"value": "Skill in conducting a training needs assessment - S0468"
},
{
"description": "Skill in developing curricula",
"related": [],
"uuid": "c98652c7-5881-5d9b-a11e-ac0907f1c67a",
"value": "Skill in developing curricula - S0601"
},
{
"description": "Skill in teaching training programs",
"related": [],
"uuid": "ffa479cc-c5c9-57df-9d58-93aa05f54922",
"value": "Skill in teaching training programs - S0602"
},
{
"description": "Skill in developing learning activities",
"related": [],
"uuid": "b238d5ea-bda1-5c74-80a9-e67fde9b7270",
"value": "Skill in developing learning activities - S0628"
},
{
"description": "Skill in aligning privacy and cybersecurity objectives",
"related": [],
"uuid": "f2aa7ec2-36a3-5c9e-9a8c-438b02520638",
"value": "Skill in aligning privacy and cybersecurity objectives - S0447"
},
{
"description": "Skill in authoring privacy disclosure statements",
"related": [],
"uuid": "7ea0ee19-0d49-5e2b-9deb-b94985969351",
"value": "Skill in authoring privacy disclosure statements - S0450"
},
{
"description": "Skill in creating privacy policies",
"related": [],
"uuid": "249a4943-caa9-54c6-b45f-b73f98c40171",
"value": "Skill in creating privacy policies - S0796"
},
{
"description": "Skill in negotiating vendor agreements",
"related": [],
"uuid": "8b853c6c-0aed-5ddb-be87-579387a39093",
"value": "Skill in negotiating vendor agreements - S0797"
},
{
"description": "Skill in evaluating vendor privacy practices",
"related": [],
"uuid": "a98051a5-9165-5b95-89d9-0b9d519dcac9",
"value": "Skill in evaluating vendor privacy practices - S0798"
},
{
"description": "Skill in building internal and external stakeholder relationships",
"related": [],
"uuid": "9fda6713-7325-548b-9a53-bd3544979a06",
"value": "Skill in building internal and external stakeholder relationships - S0818"
},
{
"description": "Skill in resolving conflicting intelligence collection requirements",
"related": [],
"uuid": "8f6ce40c-e0af-514c-9d57-c70247b3035f",
"value": "Skill in resolving conflicting intelligence collection requirements - S0792"
},
{
"description": "Skill in establishing timelines",
"related": [],
"uuid": "043cf632-ebbb-50f6-abaf-e7aa00743335",
"value": "Skill in establishing timelines - S0794"
},
{
"description": "Skill in tracking intelligence collection requirements",
"related": [],
"uuid": "a9ee670c-4a53-5702-97d0-e9037c14f88f",
"value": "Skill in tracking intelligence collection requirements - S0795"
},
{
"description": "Skill in applying analytical standards during intelligence product evaluation",
"related": [],
"uuid": "a320faa3-6b75-53fd-b453-3b707dc2bebb",
"value": "Skill in applying analytical standards during intelligence product evaluation - S0310"
},
{
"description": "Skill in determining intelligence employment requirements",
"related": [],
"uuid": "a4efad8d-e9e6-59ab-a010-01b66894f603",
"value": "Skill in determining intelligence employment requirements - S0513"
},
{
"description": "Skill in performing strategic guidance analysis",
"related": [],
"uuid": "0eed06fe-a742-5226-9cd9-1450afb617da",
"value": "Skill in performing strategic guidance analysis - S0761"
},
{
"description": "Skill in coordinating product development",
"related": [],
"uuid": "f2c45275-9c40-5f6d-a441-58c8cb45b2e1",
"value": "Skill in coordinating product development - S0766"
},
{
"description": "Skill in developing tailored intelligence products",
"related": [],
"uuid": "df57e472-c027-57bf-a5f4-a149c8efc810",
"value": "Skill in developing tailored intelligence products - S0767"
},
{
"description": "Skill in allocating resources",
"related": [],
"uuid": "5554a11f-a53d-5453-a16b-576a13c9889c",
"value": "Skill in allocating resources - S0768"
},
{
"description": "Skill in creating planning documents",
"related": [],
"uuid": "22fd7ff7-6fa1-5343-a8be-56781eb77ecf",
"value": "Skill in creating planning documents - S0771"
},
{
"description": "Skill in maintaining planning documents",
"related": [],
"uuid": "bb019666-519d-5f26-b5b6-353e5afa34f2",
"value": "Skill in maintaining planning documents - S0772"
},
{
"description": "Skill in tracking services",
"related": [],
"uuid": "83bdb782-781b-59ba-a934-f1aa50d02f37",
"value": "Skill in tracking services - S0773"
},
{
"description": "Skill in monitoring threat effects to partner capabilities",
"related": [],
"uuid": "7c30dcd6-5e6f-5ce6-89c5-cc31cfcd8556",
"value": "Skill in monitoring threat effects to partner capabilities - S0787"
},
{
"description": "Skill in managing intelligence collection requirements",
"related": [],
"uuid": "8dde99fe-cd70-5198-943c-4edc5433092d",
"value": "Skill in managing intelligence collection requirements - S0811"
},
{
"description": "Skill in transcribing target language communications",
"related": [],
"uuid": "42c15c8e-7e3e-5a95-a8e0-a8e8d59f078a",
"value": "Skill in transcribing target language communications - S0283"
},
{
"description": "Skill in implementing network security",
"related": [],
"uuid": "0279b341-698c-5ed6-9c1a-510fdcf8300f",
"value": "Skill in implementing network security - S0524"
},
{
"description": "Skill in developing target communication profiles",
"related": [],
"uuid": "45228c69-9d9f-52d6-88eb-48717aba12ce",
"value": "Skill in developing target communication profiles - S0533"
},
{
"description": "Skill in developing transcripts",
"related": [],
"uuid": "a08e820b-e399-58db-ad1d-a016bd7813ea",
"value": "Skill in developing transcripts - S0539"
},
{
"description": "Skill in performing language processing tool analysis",
"related": [],
"uuid": "2555417d-882f-5b8a-8d4a-2633dd19e8a0",
"value": "Skill in performing language processing tool analysis - S0689"
},
{
"description": "Skill in developing target assessments",
"related": [],
"uuid": "78392e58-66b6-557b-87e8-26f2e71ac6a9",
"value": "Skill in developing target assessments - S0692"
},
{
"description": "Skill in performing Open Source Intelligence (OSINT) research",
"related": [],
"uuid": "d49d19e5-1706-5ff8-bcae-b1c3fc5e0aec",
"value": "Skill in performing Open Source Intelligence (OSINT) research - S0695"
},
{
"description": "Skill in identifying target network characteristics",
"related": [],
"uuid": "78b5249a-8451-5aa7-a6e0-25398bce9593",
"value": "Skill in identifying target network characteristics - S0717"
},
{
"description": "Skill in identifying regional languages and dialects",
"related": [],
"uuid": "024e6c7f-5e8b-59af-b57a-7b127f8db454",
"value": "Skill in identifying regional languages and dialects - S0720"
},
{
"description": "Skill in translating languages",
"related": [],
"uuid": "0fd3428a-6f3b-5730-b645-2ffa5bc6a62a",
"value": "Skill in translating languages - S0747"
},
{
"description": "Skill in mapping networks",
"related": [],
"uuid": "2b794492-7e4f-539e-b51b-d9d69044fc56",
"value": "Skill in mapping networks - S0845"
},
{
"description": "Skill in performing cultural analysis",
"related": [],
"uuid": "f19b0a57-4d7a-51eb-88d0-50a0074e89b9",
"value": "Skill in performing cultural analysis - S0851"
},
{
"description": "Skill in performing language analysis",
"related": [],
"uuid": "cb3fcc8d-a478-5d89-a50b-44dd679263d8",
"value": "Skill in performing language analysis - S0865"
},
{
"description": "Skill in performing social network analysis",
"related": [],
"uuid": "0ba8c816-3447-5411-b309-c2b3167f9c52",
"value": "Skill in performing social network analysis - S0881"
},
{
"description": "Skill in developing assessments",
"related": [],
"uuid": "395247aa-ba99-502c-97e8-703adb8e19a6",
"value": "Skill in developing assessments - S0393"
},
{
"description": "Skill in developing security assessments",
"related": [],
"uuid": "69152994-86a9-5b94-978d-1644f4c176fa",
"value": "Skill in developing security assessments - S0394"
},
{
"description": "Skill in forecasting requirements",
"related": [],
"uuid": "72885849-ebd7-507a-b34e-cba60113cbf7",
"value": "Skill in forecasting requirements - S0396"
},
{
"description": "Skill in assessing requirements",
"related": [],
"uuid": "8a2a51f8-5826-577f-9940-25c6ac73c9bf",
"value": "Skill in assessing requirements - S0397"
},
{
"description": "Skill in analyzing organizational objectives",
"related": [],
"uuid": "5252f176-dc8b-5e83-939a-485bb21dfb6c",
"value": "Skill in analyzing organizational objectives - S0398"
},
{
"description": "Skill in creating career path definitions",
"related": [],
"uuid": "9a3fe6a9-1df2-5f3a-a242-7e31a35d7e4d",
"value": "Skill in creating career path definitions - S0410"
},
{
"description": "Skill in developing career paths",
"related": [],
"uuid": "5f542f88-3d19-573d-893b-c44145818022",
"value": "Skill in developing career paths - S0411"
},
{
"description": "Skill in evaluating workforce trends",
"related": [],
"uuid": "82d7c48b-d02c-56c9-9dbd-a52207fba64b",
"value": "Skill in evaluating workforce trends - S0422"
},
{
"description": "Skill in managing a workforce",
"related": [],
"uuid": "eca507ae-a2ee-5a08-a932-f3b819e7d339",
"value": "Skill in managing a workforce - S0647"
},
{
"description": "Skill in developing policy plans",
"related": [],
"uuid": "7979ae18-1e46-5075-bfd8-c9d155da77a4",
"value": "Skill in developing policy plans - S0406"
},
{
"description": "Skill in identifying possible security violations",
"related": [],
"uuid": "c5a0b71b-3202-5332-9175-dd7f947f3b0f",
"value": "Skill in identifying possible security violations - S0841"
},
{
"description": "Skill in performing cost/benefit analysis",
"related": [],
"uuid": "c0d51934-c9a7-53af-8e93-335706bdd940",
"value": "Skill in performing cost/benefit analysis - S0850"
},
{
"description": "Skill in performing economic analysis",
"related": [],
"uuid": "406cf460-a255-59a5-b262-c5d2918def9b",
"value": "Skill in performing economic analysis - S0858"
},
{
"description": "Skill in providing customer support",
"related": [],
"uuid": "59148eb2-c3d6-5ea9-9b51-d7cb03ea3404",
"value": "Skill in providing customer support - S0478"
},
{
"description": "Skill in repairing hardware",
"related": [],
"uuid": "b2d2a53e-74a8-5cb3-bdff-004102827ea4",
"value": "Skill in repairing hardware - S0594"
},
{
"description": "Skill in repairing system peripherals",
"related": [],
"uuid": "c5badfd6-fd58-562b-a0c1-80f6750bf62d",
"value": "Skill in repairing system peripherals - S0595"
},
{
"description": "Skill in troubleshooting client-level problems",
"related": [],
"uuid": "32976c78-3a60-5444-a93b-3ef026337f4f",
"value": "Skill in troubleshooting client-level problems - S0661"
},
{
"description": "Skill in configuring network workstations and peripherals",
"related": [],
"uuid": "41a9e3b7-0a32-5ece-8364-2e318cbd6a15",
"value": "Skill in configuring network workstations and peripherals - S0679"
},
{
"description": "Skill in validating network workstations and peripherals",
"related": [],
"uuid": "40ab8695-9d5a-5412-894a-905c3f9c9584",
"value": "Skill in validating network workstations and peripherals - S0680"
},
{
"description": "Skill in performing cyber defense trend analysis",
"related": [],
"uuid": "44ba9e83-2bfc-5bd2-9b73-bad89aaba02e",
"value": "Skill in performing cyber defense trend analysis - S0852"
},
{
"description": "Skill in evaluating supplier trustworthiness",
"related": [],
"uuid": "b1d46cb5-a74c-57bb-9664-0cc84a393350",
"value": "Skill in evaluating supplier trustworthiness - S0479"
},
{
"description": "Skill in evaluating product trustworthiness",
"related": [],
"uuid": "4d39003b-954f-52ee-a8da-92c6520b1039",
"value": "Skill in evaluating product trustworthiness - S0480"
},
{
"description": "Skill in developing user credential management systems",
"related": [],
"uuid": "24fc9949-651c-562c-a44d-26e9f2737978",
"value": "Skill in developing user credential management systems - S0484"
},
{
"description": "Skill in implementing user credential management systems",
"related": [],
"uuid": "1a837927-844d-5046-83b9-f74728793a03",
"value": "Skill in implementing user credential management systems - S0485"
},
{
"description": "Skill in implementing enterprise key escrow systems",
"related": [],
"uuid": "5bec99f8-fce3-549a-9b18-8b249b3ca1c9",
"value": "Skill in implementing enterprise key escrow systems - S0486"
},
{
"description": "Skill in establishing a routing schema",
"related": [],
"uuid": "2fa72bd1-cbdf-53db-814e-ddb9c94909f8",
"value": "Skill in establishing a routing schema - S0035"
},
{
"description": "Skill in operating network equipment",
"related": [],
"uuid": "5593eb58-bd83-5e61-8f3c-c8ebfe5c5b08",
"value": "Skill in operating network equipment - S0421"
},
{
"description": "Skill in executing command line tools",
"related": [],
"uuid": "2762e8e2-5b17-5b56-bc2a-fe1e10b79ff1",
"value": "Skill in executing command line tools - S0424"
},
{
"description": "Skill in operating network systems",
"related": [],
"uuid": "c9b801a3-5281-5f71-9a22-b77a5c894513",
"value": "Skill in operating network systems - S0425"
},
{
"description": "Skill in deploying continuous monitoring technologies",
"related": [],
"uuid": "268db0ff-3a80-5a78-ab1f-10b3311fd9bb",
"value": "Skill in deploying continuous monitoring technologies - S0451"
},
{
"description": "Skill in troubleshooting system performance",
"related": [],
"uuid": "34ef4cb9-fff6-5c05-a4b1-99a81069bd0e",
"value": "Skill in troubleshooting system performance - S0582"
},
{
"description": "Skill in implementing established network security practices",
"related": [],
"uuid": "c38ed5ba-270a-5878-aa36-847287512835",
"value": "Skill in implementing established network security practices - S0583"
},
{
"description": "Skill in configuring network protection components",
"related": [],
"uuid": "fec90dfb-a234-5660-91a3-29d4002dafe2",
"value": "Skill in configuring network protection components - S0618"
},
{
"description": "Skill in applying subnet techniques",
"related": [],
"uuid": "e801dca4-8513-59b0-9c37-f225f215ac70",
"value": "Skill in applying subnet techniques - S0682"
},
{
"description": "Skill in troubleshooting network equipment",
"related": [],
"uuid": "df7bb86f-bf21-5d02-bc0f-8f0d5cddc05e",
"value": "Skill in troubleshooting network equipment - S0815"
},
{
"description": "Skill in identify intelligence gaps",
"related": [],
"uuid": "c4a4cd83-4fc8-58c8-a789-b6540702b88b",
"value": "Skill in identify intelligence gaps - S0335"
},
{
"description": "Skill in determining asset availability, capabilities, and limitations",
"related": [],
"uuid": "28d89db9-8059-5ed9-95ec-0cff486f0ed4",
"value": "Skill in determining asset availability, capabilities, and limitations - S0495"
},
{
"description": "Skill in assessing intelligence collection tasking",
"related": [],
"uuid": "a942f1f7-d955-5398-b64a-7b7a281311bf",
"value": "Skill in assessing intelligence collection tasking - S0496"
},
{
"description": "Skill in creating intelligence collection strategies",
"related": [],
"uuid": "63ce9673-a43f-5b5b-9377-cc7fb4e82170",
"value": "Skill in creating intelligence collection strategies - S0500"
},
{
"description": "Skill in evaluating intelligence collection products",
"related": [],
"uuid": "92c6ffad-aef7-5766-ae2f-7fdf661ad741",
"value": "Skill in evaluating intelligence collection products - S0502"
},
{
"description": "Skill in assessing threat actors",
"related": [],
"uuid": "10f4693c-1979-52c1-8844-d9e8a691fb05",
"value": "Skill in assessing threat actors - S0518"
},
{
"description": "Skill in determining intelligence collection asset posture and availability",
"related": [],
"uuid": "a614446c-06bf-5d1c-9a73-005113854fbe",
"value": "Skill in determining intelligence collection asset posture and availability - S0520"
},
{
"description": "Skill in managing operations",
"related": [],
"uuid": "43993143-910e-5966-9056-873cae3dd5e6",
"value": "Skill in managing operations - S0525"
},
{
"description": "Skill in identifying priority information",
"related": [],
"uuid": "78d88b5e-de97-5b03-98b7-0e9391b574cd",
"value": "Skill in identifying priority information - S0528"
},
{
"description": "Skill in identifying production exploitation needs",
"related": [],
"uuid": "4965b009-d553-5673-8cd4-b4b130985b72",
"value": "Skill in identifying production exploitation needs - S0529"
},
{
"description": "Skill in managing sensors",
"related": [],
"uuid": "99496934-a610-50f6-86cf-7d6ae0ca5143",
"value": "Skill in managing sensors - S0538"
},
{
"description": "Skill in prioritizing information",
"related": [],
"uuid": "a4cf0efd-61a5-547b-8ae8-49735c2dcf46",
"value": "Skill in prioritizing information - S0721"
},
{
"description": "Skill in navigating databases",
"related": [],
"uuid": "896e2e0d-24fc-5278-8784-80fda25369f1",
"value": "Skill in navigating databases - S0760"
},
{
"description": "Skill in comparing indicators with requirements",
"related": [],
"uuid": "0d3a6b43-81f0-52fe-948c-d2bb827d000b",
"value": "Skill in comparing indicators with requirements - S0764"
},
{
"description": "Skill in evaluating feasibility of intelligence collection sources",
"related": [],
"uuid": "a86075b2-8949-5445-8168-39980c421774",
"value": "Skill in evaluating feasibility of intelligence collection sources - S0774"
},
{
"description": "Skill in developing intelligence collection plans",
"related": [],
"uuid": "491359ad-eed0-5903-893f-114b66f95282",
"value": "Skill in developing intelligence collection plans - S0775"
},
{
"description": "Skill in evaluating collection capabilities",
"related": [],
"uuid": "90626be9-812b-5855-8a7e-53fe14abcf5c",
"value": "Skill in evaluating collection capabilities - S0781"
},
{
"description": "Skill in interpreting readiness reporting",
"related": [],
"uuid": "f5d831d7-6bf3-5b72-9349-7ec050d1ae65",
"value": "Skill in interpreting readiness reporting - S0786"
},
{
"description": "Skill in analyzing performance specifications",
"related": [],
"uuid": "d0005de2-2bd5-5c09-9b98-c9e82dc200d9",
"value": "Skill in analyzing performance specifications - S0793"
},
{
"description": "Skill in navigating the dark web",
"related": [],
"uuid": "d4ab5a53-9fc2-5db1-b95b-32ac597d7a9a",
"value": "Skill in navigating the dark web - S0469"
},
{
"description": "Skill in using the TOR network",
"related": [],
"uuid": "6c30fcab-b80d-58a9-bc70-6a3283177833",
"value": "Skill in using the TOR network - S0470"
},
{
"description": "Skill in examining digital media",
"related": [],
"uuid": "4cf02e99-96b8-5225-a37c-79fee26ed6b0",
"value": "Skill in examining digital media - S0471"
},
{
"description": "Skill in evaluating the trustworthiness of a supply chain",
"related": [],
"uuid": "79b8fe27-c6b5-56a1-b5b7-ca9286ff61bf",
"value": "Skill in evaluating the trustworthiness of a supply chain - S0620"
},
{
"description": "Skill in developing data dictionaries",
"related": [],
"uuid": "f8878619-0d65-5aa1-a889-ebe06249f511",
"value": "Skill in developing data dictionaries - S0028"
},
{
"description": "Skill in developing data models",
"related": [],
"uuid": "cbac3ff8-f373-5934-82df-b53cee91807f",
"value": "Skill in developing data models - S0029"
},
{
"description": "Skill in identifying hidden patterns or relationships",
"related": [],
"uuid": "738fc2b9-220a-5d45-9a0e-358604ab835f",
"value": "Skill in identifying hidden patterns or relationships - S0109"
},
{
"description": "Skill in performing sensitivity analysis",
"related": [],
"uuid": "04d2369a-ee8f-5ce9-a680-37a2b47e1829",
"value": "Skill in performing sensitivity analysis - S0114"
},
{
"description": "Skill in developing machine understandable semantic ontologies",
"related": [],
"uuid": "2e531128-8b90-507d-82fb-641960fcf30f",
"value": "Skill in developing machine understandable semantic ontologies - S0118"
},
{
"description": "Skill in creating complex data structures",
"related": [],
"uuid": "5595e576-0bff-528e-9da7-dc6a2b5216c1",
"value": "Skill in creating complex data structures - S0399"
},
{
"description": "Skill in creating programming languages",
"related": [],
"uuid": "71b6b059-0de0-51d9-84df-92021fe2c1ee",
"value": "Skill in creating programming languages - S0400"
},
{
"description": "Skill in identifying common encoding techniques",
"related": [],
"uuid": "a9719fc6-5352-5683-8df8-bda6e8063488",
"value": "Skill in identifying common encoding techniques - S0626"
},
{
"description": "Skill in performing data preprocessing",
"related": [],
"uuid": "55632b79-b128-5321-a1bd-fd44ce41ba1d",
"value": "Skill in performing data preprocessing - S0631"
},
{
"description": "Skill in performing format conversions",
"related": [],
"uuid": "c0e8c71d-1adb-5743-88e5-0d38854f9693",
"value": "Skill in performing format conversions - S0636"
},
{
"description": "Skill in performing regression analysis",
"related": [],
"uuid": "e67c5a15-ad45-5735-a7c2-bc2b729984a0",
"value": "Skill in performing regression analysis - S0640"
},
{
"description": "Skill in performing transformation analytics",
"related": [],
"uuid": "4b107e47-b574-5d41-b240-0fae26b8f09b",
"value": "Skill in performing transformation analytics - S0644"
},
{
"description": "Skill in applying descriptive statistics",
"related": [],
"uuid": "f3c08af4-fd21-59c6-a1d5-27a2f4a85416",
"value": "Skill in applying descriptive statistics - S0646"
},
{
"description": "Skill in detecting anomalies",
"related": [],
"uuid": "c0f07283-bb1a-54fb-880b-b2592d08e97b",
"value": "Skill in detecting anomalies - S0648"
},
{
"description": "Skill in removing outliers",
"related": [],
"uuid": "9990f64d-978b-5c53-b98f-1e04f9cd78a3",
"value": "Skill in removing outliers - S0649"
},
{
"description": "Skill in assessing an organization’s data assets",
"related": [],
"uuid": "e415aaf7-dcd2-52bd-b0f3-20d08d4fcceb",
"value": "Skill in assessing an organization’s data assets - S0808"
},
{
"description": "Skill in caching data",
"related": [],
"uuid": "027d6118-6ffa-583a-ae5f-032afa74ede9",
"value": "Skill in caching data - S0819"
},
{
"description": "Skill in cataloging data",
"related": [],
"uuid": "b4fd0958-8f80-5a06-aa51-47293ee6147b",
"value": "Skill in cataloging data - S0820"
},
{
"description": "Skill in compiling data",
"related": [],
"uuid": "ac6d2212-13ea-580f-91f4-82cf35e96481",
"value": "Skill in compiling data - S0828"
},
{
"description": "Skill in distributing data",
"related": [],
"uuid": "7ff8cee8-cb6d-5ce9-a93a-77109f35938c",
"value": "Skill in distributing data - S0835"
},
{
"description": "Skill in performing quantitative analysis",
"related": [],
"uuid": "20bc90ff-80ac-559b-8a81-a6e038e8856a",
"value": "Skill in performing quantitative analysis - S0877"
},
{
"description": "Skill in retrieving data",
"related": [],
"uuid": "622bb5a8-3109-5d99-b54d-b2e117ba08c3",
"value": "Skill in retrieving data - S0897"
},
{
"description": "Skill in developing standard operating procedures (SOPs)",
"related": [],
"uuid": "4ae45f03-46a0-5c97-92aa-cb6fd4bbdb1e",
"value": "Skill in developing standard operating procedures (SOPs) - S0407"
},
{
"description": "Skill in maintaining standard operating procedures (SOPs)",
"related": [],
"uuid": "3d643319-24f6-5c69-8b7a-ecfe473c965e",