-
Notifications
You must be signed in to change notification settings - Fork 259
/
nice-framework-knowledges.json
3855 lines (3855 loc) · 152 KB
/
nice-framework-knowledges.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": "Knowledge based on the NIST NICE framework",
"name": "NICE Knowledges",
"source": "https://csrc.nist.gov/pubs/sp/800/181/r1/final",
"type": "nice-framework-knowledges",
"uuid": "796e3e82-ca9a-4749-8421-4810ed440755",
"values": [
{
"description": "Knowledge of ingress filtering tools and techniques",
"related": [],
"uuid": "c3fa993f-f2db-5056-ac53-14e18aae3619",
"value": "Knowledge of ingress filtering tools and techniques - K1082"
},
{
"description": "Knowledge of risk assessment tools and techniques",
"related": [],
"uuid": "2660a2f8-5d68-5193-b8c7-f5d65651b984",
"value": "Knowledge of risk assessment tools and techniques - K1078"
},
{
"description": "Knowledge of life cycle development milestones",
"related": [],
"uuid": "008d0123-c2b9-563d-89b3-e088965a3d9e",
"value": "Knowledge of life cycle development milestones - K0670"
},
{
"description": "Knowledge of contractor management",
"related": [],
"uuid": "2cc178a3-af4d-58dc-99ad-1681f5e2b0d8",
"value": "Knowledge of contractor management - K0669"
},
{
"description": "Knowledge of contract management",
"related": [],
"uuid": "1c43820a-1da2-5bad-8588-df0fd9b104d5",
"value": "Knowledge of contract management - K0668"
},
{
"description": "Knowledge of software asset management principles and practices",
"related": [],
"uuid": "3d0e1e18-3b8d-54c2-841e-95e2b733cdea",
"value": "Knowledge of software asset management principles and practices - K1074"
},
{
"description": "Knowledge of continuous monitoring processes",
"related": [],
"uuid": "4c756710-3cbc-5612-84a2-146350e3c1d5",
"value": "Knowledge of continuous monitoring processes - K1071"
},
{
"description": "Knowledge of contracts",
"related": [],
"uuid": "316778fd-8686-5d27-81de-7147cdfa4444",
"value": "Knowledge of contracts - K0667"
},
{
"description": "Knowledge of system security plans",
"related": [],
"uuid": "da140746-664f-5c47-bd36-a1903f0556a7",
"value": "Knowledge of system security plans - K0666"
},
{
"description": "Knowledge of stakeholder management",
"related": [],
"uuid": "162ee449-1147-5f62-b2e4-44d35eea83b2",
"value": "Knowledge of stakeholder management - K0664"
},
{
"description": "Knowledge of industry standards and best practices",
"related": [],
"uuid": "4e0d7d84-307f-5361-892d-bdd455e5f578",
"value": "Knowledge of industry standards and best practices - K0663"
},
{
"description": "Knowledge of systems security engineering",
"related": [],
"uuid": "0239190b-345e-5262-be0c-a5cb4181e554",
"value": "Knowledge of systems security engineering - K0662"
},
{
"description": "Knowledge of reauthorization processes",
"related": [],
"uuid": "1a00473f-cac9-53df-b0ef-dd3d19c443e6",
"value": "Knowledge of reauthorization processes - K0661"
},
{
"description": "Knowledge of appropriate use policies and procedures",
"related": [],
"uuid": "5c42be6f-f117-5db9-a0a1-3eb6b8bfe0ce",
"value": "Knowledge of appropriate use policies and procedures - K0660"
},
{
"description": "Knowledge of risk tolerance principles and practices",
"related": [],
"uuid": "c047b366-bf81-50cd-93d7-e5af46fc5ebe",
"value": "Knowledge of risk tolerance principles and practices - K0822"
},
{
"description": "Knowledge of cybersecurity engineering",
"related": [],
"uuid": "e52557ff-6e36-5dde-a41e-7b6e4c626c55",
"value": "Knowledge of cybersecurity engineering - K1133"
},
{
"description": "Knowledge of organizational policy and procedures",
"related": [],
"uuid": "a12e3886-a915-5980-8900-9f1a355bb7f4",
"value": "Knowledge of organizational policy and procedures - K1189"
},
{
"description": "Knowledge of market research tools and techniques",
"related": [],
"uuid": "b622c362-eb1c-53fc-b259-acface6706f4",
"value": "Knowledge of market research tools and techniques - K0641"
},
{
"description": "Knowledge of pricing structures",
"related": [],
"uuid": "7148f95b-5198-5516-b167-2addb872cb8f",
"value": "Knowledge of pricing structures - K0642"
},
{
"description": "Knowledge of supplier assessment criteria",
"related": [],
"uuid": "bf110aca-1c0d-57b4-b25c-2ae1fe2470ab",
"value": "Knowledge of supplier assessment criteria - K0650"
},
{
"description": "Knowledge of trustworthiness principles",
"related": [],
"uuid": "6f6d8f51-2d5e-5d64-ad16-0460cbcfb6ef",
"value": "Knowledge of trustworthiness principles - K0651"
},
{
"description": "Knowledge of incident response policies and procedures",
"related": [],
"uuid": "bc6e8130-bc4e-527d-8ca2-8c5bd5625187",
"value": "Knowledge of incident response policies and procedures - K0823"
},
{
"description": "Knowledge of incident response roles and responsibilities",
"related": [],
"uuid": "64b5dec1-2106-5f55-96ff-6769d5a8ff14",
"value": "Knowledge of incident response roles and responsibilities - K0824"
},
{
"description": "Knowledge of sustainment principles and practices",
"related": [],
"uuid": "436228cf-9169-5e90-b270-137230abd3bb",
"value": "Knowledge of sustainment principles and practices - K0912"
},
{
"description": "Knowledge of sustainment processes",
"related": [],
"uuid": "d20071c6-157f-51cd-a934-fd703c955f4b",
"value": "Knowledge of sustainment processes - K0913"
},
{
"description": "Knowledge of system life cycles",
"related": [],
"uuid": "7d8b3bc9-cf4e-5c10-b2a0-1d7728e35444",
"value": "Knowledge of system life cycles - K1225"
},
{
"description": "Knowledge of continuous monitoring tools and techniques",
"related": [],
"uuid": "d8266da9-26d5-5d08-a750-1804f1534532",
"value": "Knowledge of continuous monitoring tools and techniques - K1125"
},
{
"description": "Knowledge of continuous monitoring scoring and grading metrics",
"related": [],
"uuid": "43a664d6-3e7a-5ada-a074-6b316205b543",
"value": "Knowledge of continuous monitoring scoring and grading metrics - K1124"
},
{
"description": "Knowledge of continuous monitoring principles and practices",
"related": [],
"uuid": "b520c01b-b799-5a5a-a173-b1af031c5bce",
"value": "Knowledge of continuous monitoring principles and practices - K1123"
},
{
"description": "Knowledge of cybersecurity objectives",
"related": [],
"uuid": "a1d4d16a-d1f4-5fe5-b74f-6ba2fcd01595",
"value": "Knowledge of cybersecurity objectives - K1135"
},
{
"description": "Knowledge of information architecture principles and practices",
"related": [],
"uuid": "251558fb-ca83-5caf-845b-a228fc20b3b4",
"value": "Knowledge of information architecture principles and practices - K1166"
},
{
"description": "Knowledge of enterprise cybersecurity architecture",
"related": [],
"uuid": "ffd758ea-2899-5510-b5e6-fc3a9e33e1c7",
"value": "Knowledge of enterprise cybersecurity architecture - K1156"
},
{
"description": "Knowledge of organizational evaluation and validation requirements",
"related": [],
"uuid": "b73deb35-c186-5967-b7af-eccf82d17183",
"value": "Knowledge of organizational evaluation and validation requirements - K1185"
},
{
"description": "Knowledge of organizational risk levels",
"related": [],
"uuid": "909b82bd-714b-5003-a437-aabc90a04760",
"value": "Knowledge of organizational risk levels - K1190"
},
{
"description": "Knowledge of project plans and schedules",
"related": [],
"uuid": "e37d8a52-02b7-59b2-af12-96ffdcf65aaf",
"value": "Knowledge of project plans and schedules - K1202"
},
{
"description": "Knowledge of programming languages",
"related": [],
"uuid": "c0613b01-a2b4-5f1a-b778-a3aecd4f408c",
"value": "Knowledge of programming languages - K1201"
},
{
"description": "Knowledge of system characteristics",
"related": [],
"uuid": "09e88959-bc48-5a00-82dc-8fabcc231c1d",
"value": "Knowledge of system characteristics - K1224"
},
{
"description": "Knowledge of software application, system, and network requirements",
"related": [],
"uuid": "b8ae0620-abbc-5d70-af11-9353a6312b9d",
"value": "Knowledge of software application, system, and network requirements - K1218"
},
{
"description": "Knowledge of user interfaces",
"related": [],
"uuid": "cea55969-9897-59cc-ae13-7b2ac534c362",
"value": "Knowledge of user interfaces - K1234"
},
{
"description": "Knowledge of intelligence data gathering principles and practices",
"related": [],
"uuid": "19c700d9-934c-52db-9da3-85cf1dfd2eb9",
"value": "Knowledge of intelligence data gathering principles and practices - K0944"
},
{
"description": "Knowledge of intelligence data gathering policies and procedures",
"related": [],
"uuid": "928c2bc5-1bc9-55af-ae1c-524cacbe4d7c",
"value": "Knowledge of intelligence data gathering policies and procedures - K0945"
},
{
"description": "Knowledge of foreign disclosure policies and procedures",
"related": [],
"uuid": "00d7508d-24e1-5ac8-8cb1-40619f30f8d0",
"value": "Knowledge of foreign disclosure policies and procedures - K0954"
},
{
"description": "Knowledge of privacy disclosure statement laws and regulations",
"related": [],
"uuid": "11fdf9ec-4bc5-5799-a28d-dc96b8088f7b",
"value": "Knowledge of privacy disclosure statement laws and regulations - K1070"
},
{
"description": "Knowledge of security awareness programs",
"related": [],
"uuid": "359dde67-609a-5947-ae87-c9051d47b5a0",
"value": "Knowledge of security awareness programs - K0638"
},
{
"description": "Knowledge of virtual learning environments",
"related": [],
"uuid": "49aac74b-041c-570f-b635-ddfe40537979",
"value": "Knowledge of virtual learning environments - K0643"
},
{
"description": "Knowledge of target audience requirements",
"related": [],
"uuid": "bc319fd7-ae7a-56a6-997d-bb33a117fa62",
"value": "Knowledge of target audience requirements - K0654"
},
{
"description": "Knowledge of information privacy technologies",
"related": [],
"uuid": "bf5ccab4-5ab7-5858-b00a-cadcbcfc4f60",
"value": "Knowledge of information privacy technologies - K0659"
},
{
"description": "Knowledge of cognitive domain models and frameworks",
"related": [],
"uuid": "2f1affb9-98d6-55e1-8bee-762a94530e1f",
"value": "Knowledge of cognitive domain models and frameworks - K0801"
},
{
"description": "Knowledge of instructional design principles and practices",
"related": [],
"uuid": "be5d73a0-2c5b-5298-baee-37f824075897",
"value": "Knowledge of instructional design principles and practices - K0885"
},
{
"description": "Knowledge of instructional design models and frameworks",
"related": [],
"uuid": "479f1c1d-42a2-5541-a2e2-00f869decad8",
"value": "Knowledge of instructional design models and frameworks - K0886"
},
{
"description": "Knowledge of Bloom's Taxonomy learning levels",
"related": [],
"uuid": "ee7a7876-5108-5bdc-92b3-f222203b1b9d",
"value": "Knowledge of Bloom's Taxonomy learning levels - K0888"
},
{
"description": "Knowledge of learning management system (LMS) systems and software",
"related": [],
"uuid": "df7bf611-16f8-5ed1-82b2-46d9e48d212d",
"value": "Knowledge of learning management system (LMS) systems and software - K0889"
},
{
"description": "Knowledge of learning modes",
"related": [],
"uuid": "b3cf50a1-6d10-58c5-b18e-b51254c48fb1",
"value": "Knowledge of learning modes - K0890"
},
{
"description": "Knowledge of media production tool and techniques",
"related": [],
"uuid": "31f6d084-312d-583d-ad99-f1b29bafae8b",
"value": "Knowledge of media production tool and techniques - K0905"
},
{
"description": "Knowledge of needs assessment principles and practices",
"related": [],
"uuid": "b5fa3ba8-13d2-5384-b50c-4abe72bae5aa",
"value": "Knowledge of needs assessment principles and practices - K0910"
},
{
"description": "Knowledge of cybersecurity competitions",
"related": [],
"uuid": "f917d86b-2476-5fce-8d9a-777f9694a00d",
"value": "Knowledge of cybersecurity competitions - K1083"
},
{
"description": "Knowledge of federal and state accreditation standards",
"related": [],
"uuid": "70393d57-45cf-5b0f-8662-bd68a4818ce4",
"value": "Knowledge of federal and state accreditation standards - K1160"
},
{
"description": "Knowledge of organzational privacy policies and procedures",
"related": [],
"uuid": "676da780-afaf-5b01-bca5-8faae5bf9820",
"value": "Knowledge of organzational privacy policies and procedures - K1192"
},
{
"description": "Knowledge of privacy and data security regulators",
"related": [],
"uuid": "b08b6b95-52a0-567e-9d4c-e479a2e1d456",
"value": "Knowledge of privacy and data security regulators - K1198"
},
{
"description": "Knowledge of privacy technologies",
"related": [],
"uuid": "93ba55d7-efcf-56f6-ad35-accecd28723e",
"value": "Knowledge of privacy technologies - K1200"
},
{
"description": "Knowlege of privacy laws and regulations",
"related": [],
"uuid": "1a22dd84-1469-5ca9-83e6-c85a28ee1f6e",
"value": "Knowlege of privacy laws and regulations - K1240"
},
{
"description": "Knowledge of all-source intelligence reporting policies and procedures",
"related": [],
"uuid": "bf481996-2321-5700-a6df-a1129e25cb94",
"value": "Knowledge of all-source intelligence reporting policies and procedures - K0964"
},
{
"description": "Knowledge of post implementation review (PIR) processes",
"related": [],
"uuid": "b6f1f6cd-7cd5-5f48-9986-2e7fd08f97b3",
"value": "Knowledge of post implementation review (PIR) processes - K1027"
},
{
"description": "Knowledge of approved intelligence dissemination processes",
"related": [],
"uuid": "0ff1101b-ee28-5b29-b1bb-dbee098bf5bd",
"value": "Knowledge of approved intelligence dissemination processes - K0359"
},
{
"description": "Knowledge of language processing tools and techniques",
"related": [],
"uuid": "e05deaa9-2e48-5017-a767-b3b989e01fb0",
"value": "Knowledge of language processing tools and techniques - K0476"
},
{
"description": "Knowledge of target communication tools and techniques",
"related": [],
"uuid": "77915e62-849c-594f-ab48-9f97c27a5a5c",
"value": "Knowledge of target communication tools and techniques - K0540"
},
{
"description": "Knowledge of language analysis tools and techniques",
"related": [],
"uuid": "0360e0bf-24e3-5ef3-bc1b-4e4c4e89aba3",
"value": "Knowledge of language analysis tools and techniques - K0965"
},
{
"description": "Knowledge of voice analysis tools and techniques",
"related": [],
"uuid": "d068201d-41b6-5283-a2ed-bc4e76d8d00b",
"value": "Knowledge of voice analysis tools and techniques - K0966"
},
{
"description": "Knowledge of graphic materials analysis tools and techniques",
"related": [],
"uuid": "a8b021e2-7443-5244-ae6b-1648ed8a6bc1",
"value": "Knowledge of graphic materials analysis tools and techniques - K0967"
},
{
"description": "Knowledge of intelligence collection systems and software",
"related": [],
"uuid": "7313933a-924d-590f-90ec-637f64376c18",
"value": "Knowledge of intelligence collection systems and software - K0981"
},
{
"description": "Knowledge of target language",
"related": [],
"uuid": "d97a71e3-b950-5a0a-8d82-b60a93f68ca9",
"value": "Knowledge of target language - K1034"
},
{
"description": "Knowledge of target cultural references",
"related": [],
"uuid": "fedd0cf1-defc-568c-8b93-9d41f279e728",
"value": "Knowledge of target cultural references - K1039"
},
{
"description": "Knowledge of the collection process feedback cycle",
"related": [],
"uuid": "d7903dc8-2af7-546e-9b89-a298fab8a0a3",
"value": "Knowledge of the collection process feedback cycle - K1053"
},
{
"description": "Knowledge of language analysis principles and practices",
"related": [],
"uuid": "b9547b5c-e104-5a94-add9-06962da2a60b",
"value": "Knowledge of language analysis principles and practices - K1056"
},
{
"description": "Knowledge of Interactive On-Net (ION) operator roles and responsibilities",
"related": [],
"uuid": "4733673e-fe4c-5713-a0bd-11b1001db858",
"value": "Knowledge of Interactive On-Net (ION) operator roles and responsibilities - K1057"
},
{
"description": "Knowledge of foreign languages and dialects",
"related": [],
"uuid": "a25bff83-5b22-57d0-aea2-971832c23f08",
"value": "Knowledge of foreign languages and dialects - K1162"
},
{
"description": "Knowledge of target communication network characteristics",
"related": [],
"uuid": "25b97fc3-c475-597f-8586-83581f49c938",
"value": "Knowledge of target communication network characteristics - K1229"
},
{
"description": "Knowledge of target communications tools and techniques",
"related": [],
"uuid": "1a9c6c9c-2220-5677-adcb-f56d73e687d8",
"value": "Knowledge of target communications tools and techniques - K1230"
},
{
"description": "Knowledge of Communications Security (COMSEC) policies and procedures",
"related": [],
"uuid": "4ec203b8-91ff-54fb-b35d-7b193c9ac628",
"value": "Knowledge of Communications Security (COMSEC) policies and procedures - K0671"
},
{
"description": "Knowledge of the Communications Security (COMSEC) Material Control System (CMCS)",
"related": [],
"uuid": "53bba8e2-04a6-5a11-915e-a68c7c0b3bc5",
"value": "Knowledge of the Communications Security (COMSEC) Material Control System (CMCS) - K0672"
},
{
"description": "Knowledge of types of Communications Security (COMSEC) incidents",
"related": [],
"uuid": "1dceb5dd-9db5-5120-865a-f9207de6f014",
"value": "Knowledge of types of Communications Security (COMSEC) incidents - K0673"
},
{
"description": "Knowledge of program management principles and practices",
"related": [],
"uuid": "35f402fb-5dde-5ea3-b58e-d751a771b054",
"value": "Knowledge of program management principles and practices - K0798"
},
{
"description": "Knowledge of mission assurance practices and principles",
"related": [],
"uuid": "9a738129-3a0f-5b03-8d8d-4a50523c59ae",
"value": "Knowledge of mission assurance practices and principles - K1171"
},
{
"description": "Knowledge of organization's security strategy",
"related": [],
"uuid": "37363583-9107-59d0-ba0a-5b3b504b2083",
"value": "Knowledge of organization's security strategy - K1179"
},
{
"description": "Knowledge of industry indicators",
"related": [],
"uuid": "1c57aee0-bc2a-51fa-b6d2-d78c9b70be08",
"value": "Knowledge of industry indicators - K0943"
},
{
"description": "Knowledge of organizational cybersecurity policies and procedures",
"related": [],
"uuid": "ce86b908-feb6-5adf-b6d8-dd8a80436854",
"value": "Knowledge of organizational cybersecurity policies and procedures - K1183"
},
{
"description": "Knowledge of organizational human resource (HR) policies and procedures",
"related": [],
"uuid": "31da8869-a05d-5974-9a24-25dde73708c1",
"value": "Knowledge of organizational human resource (HR) policies and procedures - K1186"
},
{
"description": "Knowledge of research and design processes and procedures",
"related": [],
"uuid": "29856ef9-e715-51be-a8ef-ea0c20703e1f",
"value": "Knowledge of research and design processes and procedures - K1206"
},
{
"description": "Knowledge of the organizational cybersecurity workforce",
"related": [],
"uuid": "674a9e80-f59b-57f3-8e8f-c7ba776aff7d",
"value": "Knowledge of the organizational cybersecurity workforce - K0640"
},
{
"description": "Knowledge of career paths",
"related": [],
"uuid": "575799da-6330-5ce1-a515-5af2b120d184",
"value": "Knowledge of career paths - K0648"
},
{
"description": "Knowledge of organizational career progressions",
"related": [],
"uuid": "d067e075-7d02-5082-8c84-0f26cb0ec742",
"value": "Knowledge of organizational career progressions - K0649"
},
{
"description": "Knowledge of workforce trends",
"related": [],
"uuid": "8e1b26aa-59bd-59f7-b17c-4fed54368275",
"value": "Knowledge of workforce trends - K0652"
},
{
"description": "Knowledge of resource management principles and practices",
"related": [],
"uuid": "8ada7d15-026c-5c86-b18e-43e300ac74a4",
"value": "Knowledge of resource management principles and practices - K0754"
},
{
"description": "Knowledge of training policies and procedures",
"related": [],
"uuid": "fe3ea4a9-ccb6-5635-ad6a-8b411a3f52ed",
"value": "Knowledge of training policies and procedures - K0887"
},
{
"description": "Knowledge of training systems and software",
"related": [],
"uuid": "0d8a7cfb-761e-5f55-ac20-162f441ad24b",
"value": "Knowledge of training systems and software - K0893"
},
{
"description": "Knowledge of the NIST Workforce Framework for Cybersecurity (NICE Framework)",
"related": [],
"uuid": "eb1541cf-f5d8-5286-9769-f5403fe75706",
"value": "Knowledge of the NIST Workforce Framework for Cybersecurity (NICE Framework) - K0902"
},
{
"description": "Knowledge of human resources policies and procedures",
"related": [],
"uuid": "b0eca096-6336-5cc4-a427-31eba9ec26ae",
"value": "Knowledge of human resources policies and procedures - K0908"
},
{
"description": "Knowledge of personnel systems and software",
"related": [],
"uuid": "d0b6aff0-dfb0-5a4a-b09b-01aa1105e9e6",
"value": "Knowledge of personnel systems and software - K1098"
},
{
"description": "Knowledge of cybersecurity workforce policies and procedures",
"related": [],
"uuid": "8f8be2d8-ed43-5a19-b24c-abbf5e2bc647",
"value": "Knowledge of cybersecurity workforce policies and procedures - K1140"
},
{
"description": "Knowledge of organizational cybersecurity workforce requirements",
"related": [],
"uuid": "ca028e6f-bb19-51f3-9ba0-9e5368728c11",
"value": "Knowledge of organizational cybersecurity workforce requirements - K1184"
},
{
"description": "Knowledge of intelligence processes",
"related": [],
"uuid": "6cb25de8-bd30-5e8d-acac-aaf091166b37",
"value": "Knowledge of intelligence processes - K1058"
},
{
"description": "Knowledge of priority intelligence collection requirements",
"related": [],
"uuid": "1954138b-2a15-5e1e-afa5-b89dfdffacc7",
"value": "Knowledge of priority intelligence collection requirements - K1196"
},
{
"description": "Knowledge of service desk principles and practices",
"related": [],
"uuid": "bb319832-911e-5c40-93eb-a7a60dfa0a24",
"value": "Knowledge of service desk principles and practices - K0903"
},
{
"description": "Knowledge of remote access tools and techniques",
"related": [],
"uuid": "d931eacc-5428-52c0-a782-716f191b4a3c",
"value": "Knowledge of remote access tools and techniques - K0911"
},
{
"description": "Knowledge of software, hardware, and peripheral equipment repair tools and techniques",
"related": [],
"uuid": "191b24f9-5cf8-5569-8517-0d6c08c8dd1e",
"value": "Knowledge of software, hardware, and peripheral equipment repair tools and techniques - K1090"
},
{
"description": "Knowledge of asset management policies and procedures",
"related": [],
"uuid": "2d7ef6bf-1366-59c0-a367-e0b6ec41cd08",
"value": "Knowledge of asset management policies and procedures - K1112"
},
{
"description": "Knowledge of customer experience principles and practices",
"related": [],
"uuid": "015591bf-bffc-5478-93a5-72b0ba86091f",
"value": "Knowledge of customer experience principles and practices - K1127"
},
{
"description": "Knowledge of Voice over IP (VoIP)",
"related": [],
"uuid": "9775cd6d-9629-5c81-8d76-dfc6cdfc15c0",
"value": "Knowledge of Voice over IP (VoIP) - K0159"
},
{
"description": "Knowledge of system performance indicators",
"related": [],
"uuid": "65cbd048-066d-5129-aa1c-c046ced75ea4",
"value": "Knowledge of system performance indicators - K0740"
},
{
"description": "Knowledge of system availability measures",
"related": [],
"uuid": "8189e05e-3ba6-54ac-b2b2-5dd7b9cc9c85",
"value": "Knowledge of system availability measures - K0741"
},
{
"description": "Knowledge of credential management systems and software",
"related": [],
"uuid": "276f7e69-a93c-5d5b-a11c-9987a987dce4",
"value": "Knowledge of credential management systems and software - K0930"
},
{
"description": "Knowledge of data-at-rest encryption (DARE) standards and best practices",
"related": [],
"uuid": "55fb6ccf-bdf0-5946-bfd0-977d3592abff",
"value": "Knowledge of data-at-rest encryption (DARE) standards and best practices - K0931"
},
{
"description": "Knowledge of cryptographic key storage systems and software",
"related": [],
"uuid": "8114db1b-acc7-5a4a-bbb5-35da6ddf2506",
"value": "Knowledge of cryptographic key storage systems and software - K0932"
},
{
"description": "Knowledge of system availability requirements",
"related": [],
"uuid": "48d791e2-3c81-5b62-a903-ed9da5138db9",
"value": "Knowledge of system availability requirements - K1222"
},
{
"description": "Knowledge of intelligence collection tasking tools and techniques",
"related": [],
"uuid": "e163d319-ffcf-56af-a88f-fbef565f97b1",
"value": "Knowledge of intelligence collection tasking tools and techniques - K0972"
},
{
"description": "Knowledge of intelligence collection principles and practices",
"related": [],
"uuid": "270f17e6-609a-5bfa-b9e7-57875f441eb2",
"value": "Knowledge of intelligence collection principles and practices - K0976"
},
{
"description": "Knowledge of resource and asset readiness reporting policies and procedures",
"related": [],
"uuid": "519d5c4f-d1d9-5792-8498-1e48d2596131",
"value": "Knowledge of resource and asset readiness reporting policies and procedures - K1021"
},
{
"description": "Knowledge of requirements submission processes",
"related": [],
"uuid": "004766e5-32d5-5703-9ab7-cbdd31c80bc7",
"value": "Knowledge of requirements submission processes - K1026"
},
{
"description": "Knowledge of production exploitation principles and practices",
"related": [],
"uuid": "87f523d1-beb9-5142-a5e7-dbfd9f075651",
"value": "Knowledge of production exploitation principles and practices - K1029"
},
{
"description": "Knowledge of tasking processes",
"related": [],
"uuid": "67730109-96a0-5ad4-84f9-ddf4bdfa1f69",
"value": "Knowledge of tasking processes - K1045"
},
{
"description": "Knowledge of intelligence collection requirements tools and techniques",
"related": [],
"uuid": "2392e711-6f34-53e0-9920-8f2ef664299b",
"value": "Knowledge of intelligence collection requirements tools and techniques - K1048"
},
{
"description": "Knowledge of the Tasking, Collection, Processing, Exploitation and Dissemination (TCPED) process",
"related": [],
"uuid": "56961972-a003-5f2a-9234-70d1a4aa46b7",
"value": "Knowledge of the Tasking, Collection, Processing, Exploitation and Dissemination (TCPED) process - K1052"
},
{
"description": "Knowledge of intelligence collection authority policies and procedures",
"related": [],
"uuid": "e5a43238-b8e3-5af4-bc49-eaf356a8728a",
"value": "Knowledge of intelligence collection authority policies and procedures - K1060"
},
{
"description": "Knowledge of environment preparation tools and techniques",
"related": [],
"uuid": "0e16222d-acef-59bc-9722-653bd939dc7d",
"value": "Knowledge of environment preparation tools and techniques - K1061"
},
{
"description": "Knowledge of surveillance tools and techniques",
"related": [],
"uuid": "e4136755-5a5d-576d-97e9-fdf48679b342",
"value": "Knowledge of surveillance tools and techniques - K1062"
},
{
"description": "Knowledge of operational environment risks",
"related": [],
"uuid": "26d15d65-900b-5aa6-b66e-2c6a4d5fd27b",
"value": "Knowledge of operational environment risks - K1178"
},
{
"description": "Knowledge of priority information requirements",
"related": [],
"uuid": "a026073e-a18f-5a62-9a70-aba0dce8c860",
"value": "Knowledge of priority information requirements - K1195"
},
{
"description": "Knowledge of data concealment tools and techniques",
"related": [],
"uuid": "9ebe874b-275a-5422-8a74-75c1307274b4",
"value": "Knowledge of data concealment tools and techniques - K0941"
},
{
"description": "Knowledge of data encryption practices and principles",
"related": [],
"uuid": "fff705b1-f0ec-5e9a-912d-ca8688c7408a",
"value": "Knowledge of data encryption practices and principles - K1145"
},
{
"description": "Knowledge of steganography practices and principles",
"related": [],
"uuid": "93d32c4d-70db-5434-8359-c4e3da9dd653",
"value": "Knowledge of steganography practices and principles - K1220"
},
{
"description": "Knowledge of blue force tracking",
"related": [],
"uuid": "207579e9-d559-54b9-bf9b-bdbb870b44cf",
"value": "Knowledge of blue force tracking - K1113"
},
{
"description": "Knowledge of cybersecurity standards and best practices",
"related": [],
"uuid": "e2dd5d5b-6ff1-5fb9-9a71-f0ff8a374e3d",
"value": "Knowledge of cybersecurity standards and best practices - K1138"
},
{
"description": "Knowledge of data visualization tools and techniques",
"related": [],
"uuid": "d1fc41da-ff0b-5015-8422-392fd50e7dbf",
"value": "Knowledge of data visualization tools and techniques - K0647"
},
{
"description": "Knowledge of data administration policies and procedures",
"related": [],
"uuid": "7115b47b-e060-5d8a-a1b9-d1cf5f0bb07a",
"value": "Knowledge of data administration policies and procedures - K0699"
},
{
"description": "Knowledge of data standardization policies and procedures",
"related": [],
"uuid": "c5b961f6-0d3d-5d6a-99ec-5fce2986e6b5",
"value": "Knowledge of data standardization policies and procedures - K0700"
},
{
"description": "Knowledge of database management system (DBMS) principles and practices",
"related": [],
"uuid": "afa19a5b-2bf7-53e0-b102-89515d40bfca",
"value": "Knowledge of database management system (DBMS) principles and practices - K0704"
},
{
"description": "Knowledge of database query language capabilities and applications",
"related": [],
"uuid": "dfed2def-1d23-5e13-bb30-02a348faa6ab",
"value": "Knowledge of database query language capabilities and applications - K0705"
},
{
"description": "Knowledge of database schema capabilities and applications",
"related": [],
"uuid": "45092cf9-e839-5f9a-8ea7-335b276bf3c8",
"value": "Knowledge of database schema capabilities and applications - K0706"
},
{
"description": "Knowledge of digital rights management (DRM) tools and techniques",
"related": [],
"uuid": "9eb74060-abd4-50ca-92bd-255615c17af4",
"value": "Knowledge of digital rights management (DRM) tools and techniques - K0708"
},
{
"description": "Knowledge of query languages",
"related": [],
"uuid": "7ebdb252-557a-51cb-9c70-023600cb6893",
"value": "Knowledge of query languages - K0750"
},
{
"description": "Knowledge of database application programming interfaces (APIs)",
"related": [],
"uuid": "7c078ec6-ac69-5b47-a549-1a30aa278129",
"value": "Knowledge of database application programming interfaces (APIs) - K0867"
},
{
"description": "Knowledge of logging tools and technologies",
"related": [],
"uuid": "8f982130-78d8-5212-9bce-5b0d243f4c92",
"value": "Knowledge of logging tools and technologies - K0897"
},
{
"description": "Knowledge of machine learning principles and practices",
"related": [],
"uuid": "0b5a20b3-f739-5868-8af4-b1397248ef15",
"value": "Knowledge of machine learning principles and practices - K0904"
},
{
"description": "Knowledge of hexadecimal data",
"related": [],
"uuid": "a7dbf302-ae8d-5c71-aa3a-bfd4de52d935",
"value": "Knowledge of hexadecimal data - K1094"
},
{
"description": "Knowledge of data mapping tools and techniques",
"related": [],
"uuid": "9275738a-223a-5c07-94a9-e3720c30353a",
"value": "Knowledge of data mapping tools and techniques - K1097"
},
{
"description": "Knowledge of data gathering tools and techniques",
"related": [],
"uuid": "bb0ef9b9-6a7d-5405-a80f-b366b1f3960b",
"value": "Knowledge of data gathering tools and techniques - K1146"
},
{
"description": "Knowledge of statistical processes",
"related": [],
"uuid": "f462f35c-ec7f-534a-aef5-8c5a0499867b",
"value": "Knowledge of statistical processes - K1219"
},
{
"description": "Knowledge of UNIX scripts",
"related": [],
"uuid": "c1fe04f3-81b1-5a7e-ab16-9806f001e161",
"value": "Knowledge of UNIX scripts - K1233"
},
{
"description": "Knowledge of Windows scripts",
"related": [],
"uuid": "06c7a87b-5a85-59e3-ba72-34a6c4205a4f",
"value": "Knowledge of Windows scripts - K1238"
},
{
"description": "Knowledge of data storage media characteristics",
"related": [],
"uuid": "124a1af6-901e-52b4-aeb6-bc1fb4c86dc6",
"value": "Knowledge of data storage media characteristics - K0777"
},
{
"description": "Knowledge of capacity management",
"related": [],
"uuid": "a847da12-4d7f-5cc2-b7e4-0058cded0fc8",
"value": "Knowledge of capacity management - K1114"
},
{
"description": "Knowledge of configuration management",
"related": [],
"uuid": "2c7cc69f-6d68-5e9e-8fe1-05e48addb75b",
"value": "Knowledge of configuration management - K1121"
},
{
"description": "Knowledge of financial management",
"related": [],
"uuid": "f146cda1-7652-5def-b420-e0ddfbce9d98",
"value": "Knowledge of financial management - K1161"
},
{
"description": "Knowledge of content creation tools and techniques",
"related": [],
"uuid": "8cc8151c-4aa4-5c18-aa94-f1d52c04608f",
"value": "Knowledge of content creation tools and techniques - K0774"
},
{
"description": "Knowledge of collaboration tools and techniques",
"related": [],
"uuid": "d147b05e-d9f8-5373-93e2-60f2c2798630",
"value": "Knowledge of collaboration tools and techniques - K0776"
},
{
"description": "Knowledge of cloud computing principles and practices",
"related": [],
"uuid": "8ca48481-3769-5d7e-88c7-79e0ac3ed159",
"value": "Knowledge of cloud computing principles and practices - K0863"
},
{
"description": "Knowledge of knowledge management principles and practices",
"related": [],
"uuid": "3cf68f70-a980-5bbe-834d-e9eb8c67723a",
"value": "Knowledge of knowledge management principles and practices - K0864"
},
{
"description": "Knowledge of taxonomy models and frameworks",
"related": [],
"uuid": "455374b7-1eb1-59e8-81dc-6fc5c4626fef",
"value": "Knowledge of taxonomy models and frameworks - K0895"
},
{
"description": "Knowledge of semantic ontology models and frameworks",
"related": [],
"uuid": "ffebca88-1970-5a10-83e4-e372e2c83273",
"value": "Knowledge of semantic ontology models and frameworks - K0896"
},
{
"description": "Knowledge of content synchronization tools and techniques",
"related": [],
"uuid": "9e7460b1-2734-5009-b4a0-082d4512136e",
"value": "Knowledge of content synchronization tools and techniques - K0929"
},
{
"description": "Knowledge of performance tuning tools and techniques",
"related": [],
"uuid": "93166601-b975-573f-99b7-41b1d5a42a52",
"value": "Knowledge of performance tuning tools and techniques - K0064"
},
{
"description": "Knowledge of standard operating procedures (SOPs)",
"related": [],
"uuid": "28826e21-34a6-54b6-abe8-5b63369d4629",
"value": "Knowledge of standard operating procedures (SOPs) - K0645"
},
{
"description": "Knowledge of incident, event, and problem management policies and procedures",
"related": [],
"uuid": "299c461f-d804-57e7-a59f-50bddedd9182",
"value": "Knowledge of incident, event, and problem management policies and procedures - K0935"
},
{
"description": "Knowledge of incident reporting policies and procedures",
"related": [],
"uuid": "405fa90f-c122-58b1-80fe-b94d175b8566",
"value": "Knowledge of incident reporting policies and procedures - K0946"
},
{
"description": "Knowledge of system integration principles and practices",
"related": [],
"uuid": "ebad0849-9fe9-5446-a9e1-d36e107b2224",