forked from vz-risk/veris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
verisc.json
1339 lines (1339 loc) · 44.6 KB
/
verisc.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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "VERIS Community Schema 1.3.7.",
"properties": {
"incident_id": {
"type": "string",
"description": "<a href='http://veriscommunity.net/incident-track.html' target='_blank'>More Info</a>"
},
"security_incident": {
"type": "string",
"description": "Confirmed incident?"
},
"reference": {
"type": "string",
"description": "Reference should be a url, incident number, case ID, or other reference to the document the VERIS incident was based on."
},
"summary": {
"type": "string",
"description": "Give a good descriptive summary of the incident in several sentences. Use natural language instead of VERIS notation, but we should be able to 'VERISize' the incident pretty well from just this description.<br />**REMINDER: IF THIS IS FOR THE DBIR AND NOT VCDB - DON'T RECORD VICTIM-INDENTIFYING INFO**"
},
"source_id": {
"type": "string",
"description": "Source of the data (eg vcdb, vzir, hr dept)"
},
"campaign_id": {
"type": "string",
"description": "(Way to associate multiple incident w/in one campaign)."
},
"confidence": {
"type": "string"
},
"timeline": {
"additionalProperties": false,
"properties": {
"incident": {
"description": "When did this incident initially occur?",
"additionalProperties": false,
"properties": {
"year": {
"type": "integer",
"maximum": 2022,
"minimum": 1950
},
"month": {
"type": "integer",
"maximum": 12,
"minimum": 1
},
"day": {
"type": "integer",
"maximum": 31,
"minimum": 1
},
"time": {
"description": "Use the format '05:45:00 PM'",
"type": "string",
"pattern": "^0[1-9]|1[0-2]:[0-5][0-9]:[0-5][0-9] [AP]M$"
}
},
"required": [
"year"
],
"type": "object"
},
"compromise": {
"description": "How long from the first action to the first compromise of an attribute?",
"additionalProperties": false,
"properties": {
"unit": {
"type": "string"
},
"value": {
"type": "number"
}
},
"required": [
"unit"
],
"type": "object"
},
"exfiltration": {
"description": "How long from initial compromise to first known data exfiltration?",
"additionalProperties": false,
"properties": {
"unit": {
"type": "string"
},
"value": {
"type": "number"
}
},
"required": [
"unit"
],
"type": "object"
},
"discovery": {
"description": "How long from compromise until the incident was discovered by the victim organization?",
"additionalProperties": false,
"properties": {
"unit": {
"type": "string"
},
"value": {
"type": "number"
}
},
"required": [
"unit"
],
"type": "object"
},
"containment": {
"description": "How long did it take the organization to contain the incident once it was discovered?",
"additionalProperties": false,
"properties": {
"unit": {
"type": "string"
},
"value": {
"type": "number"
}
},
"required": [
"unit"
],
"type": "object"
}
},
"required": [
"incident"
],
"type": "object"
},
"victim": {
"description": "<a href='http://veriscommunity.net/victim-demo.html' target='_blank'>More Info</a>. **REMINDER - UNLESS THIS IS A VCDB INCIDENT, DON'T RECORD VICTIM-IDENTIFYING INFO IN ANY INCIDENT TO BE SUBMITTED TO THE DBIR**",
"additionalProperties": false,
"properties": {
"victim_id": {
"type": "string"
},
"employee_count": {
"description": "Number of employees. Only use the count of the individual instance of a business (e.g. franchise location vs entire company) if the action vector was explicitly something unique to this individual instance. (i.e. This franchisee used a non-standard POS system that was then compromised.)",
"type": "string"
},
"industry": {
"description": "Victim NAICS Code. You can look it up <a href='http://www.farsmarterbids.com/reference/naics-list.php' target='_blank'>here</a> or <a href='http://www.naics.com/search' target='_blank'>here</a>.",
"maxLength":6,
"minLength":2,
"pattern":"(00|11|2[1-3]|3[1-3]|4[24589]|5[1-6]|6[1-2]|7[12]|81|92)-?\\d{0,4}",
"type": "string"
},
"government": {
"description": "The level of government if industry starts with 92. Otherwise 'NA'",
"items": {
"type": "string",
"default": "NA"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"locations_affected": {
"description": "The number of victim locations, (stores, offices, etc), affected",
"type": "integer"
},
"country": {
"description": "Victim country of operation",
"items": {
"type": "string",
"default": "Unknown"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"region": {
"description": "The <a href='https://en.wikipedia.org/wiki/UN_M.49' target='_blank'>UN M.49</a> super-region and sub-region joined together. e.g. North America: 019021. South America (Brazil): 019005, Asia: 142000, East Asia (includes China): 142030, West Asia (Middle East): 142145, South Asia (India): 142034, Eastern Europe: 150151, Western Europe: 150155. Use 000000 if you do not know and 000001 for 'other' (includes international waters and outer space). If you only know the super-region, use zero's for the region. (e.g. 019000 for Americas.)",
"items": {
"type": "string",
"maxLength":6,
"minLength":6,
"pattern": "\\d{6}"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"state": {
"description": "ALL CAPS. For US states, you can use the <a href='https://en.wikipedia.org/wiki/ISO_3166-2:US' target='_blank'>ISO_3166-2 2-character state code</a>, otherwise use the full <a href='https://en.wikipedia.org/wiki/ISO_3166-2' target='_blank'>ISO_3166-2 Country subdivision code</a>",
"type": "string"
},
"notes": {
"description": "**UNLESS THIS IS FOR VCDB, DON'T RECORD VICTIM-INDENTIFYING INFO IF THIS WILL BE SUBMITTED TO THE DBIR**",
"minLength": 1,
"type": "string"
},
"secondary": {
"description": "Secondary victims indicates that the breach being coded is the first part of a supply chain breach.",
"additionalProperties": false,
"minProperties": 1,
"properties": {
"amount": {
"definition": "The number of known secondary victims. Should always be a positive number if victim_id is filled in. May not represent all victims if some are unknown.",
"type": "integer"
},
"notes": {
"minLength": 1,
"type": "string"
},
"victim_id": {
"description": "List any secondary victims here. IF a NAICS is known, list the NAICS code after a semi-colon. For example: `verizon;517911`. If only the NAICS code is known, list it first. `;517911`",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"type": "object"
},
"revenue": {
"description": "For the DBIR, this is a low priority field and is OK to not fill in.",
"additionalProperties": false,
"minProperties": 1,
"properties": {
"amount": {
"type": "integer"
},
"iso_currency_code": {
"description": "ISO4217 currency code. <a href='https://w.wiki/3Sfv' target='_blank'>More Info</a>",
"type": "string"
}
},
"type": "object"
}
},
"required": [
"country",
"employee_count",
"industry",
"government"
],
"type": "object"
},
"action": {
"description": "What threat actions were involved? <a href='http://veriscommunity.net/actions.html' target='_blank'>More Info</a>",
"minProperties": 1,
"additionalProperties": false,
"properties": {
"hacking": {
"description": "Think things a person does at a keyboard (rather than by a program). <a href='http://veriscommunity.net/actions.html#section-hacking' target='_blank'>More Info</a>",
"additionalProperties": false,
"properties": {
"variety": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"vector": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"notes": {
"minLength": 1,
"type": "string"
},
"result": {
"description": "The result of the action. If there's a difference between action result and actor intent, use the result not intent.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"cve": {
"description": "CVE(s) exploited through hacking",
"type": "string"
}
},
"required": [
"vector",
"variety"
],
"type": "object"
},
"malware": {
"description": "Think things a program does (rather than a person on a keyboard) <a href='http://veriscommunity.net/actions.html#section-malware' target='_blank'>More Info</a>",
"additionalProperties": false,
"properties": {
"variety": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"vector": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"notes": {
"minLength": 1,
"type": "string"
},
"result": {
"description": "The result of the action. If there's a difference between action result and actor intent, use the result not intent.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"name": {
"description": "Common name(s) or strain(s) of malware",
"type": "string"
},
"cve": {
"description": "CVE(s) exploited by this malware",
"type": "string"
}
},
"required": [
"vector",
"variety"
],
"type": "object"
},
"social": {
"description": "Actions done to a person. <a href='http://veriscommunity.net/actions.html#section-social' target='_blank'>More Info</a>",
"additionalProperties": false,
"properties": {
"variety": {
"description": "Varities of social tactics",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"vector": {
"description": "Vectors of communication",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"target": {
"description": "Target of social tactics",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"notes": {
"minLength": 1,
"type": "string"
},
"result": {
"description": "The result of the action. If there's a difference between action result and actor intent, use the result not intent.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
}
},
"required": [
"vector",
"variety",
"target"
],
"type": "object"
},
"error": {
"description": "Unintentional actions. <a href='http://veriscommunity.net/actions.html#section-error' target='_blank'>More Info</a>",
"additionalProperties": false,
"properties": {
"variety": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"vector": {
"description": "Reasons errors occurred",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"notes": {
"minLength": 1,
"type": "string"
}
},
"required": [
"variety",
"vector"
],
"type": "object"
},
"misuse": {
"description": "Unapproved use of legitimate access or permissions. <a href='http://veriscommunity.net/actions.html#section-misuse' target='_blank'>More Info</a>",
"additionalProperties": false,
"properties": {
"variety": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"vector": {
"description": "Vectors or access methods",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"notes": {
"minLength": 1,
"type": "string"
},
"result": {
"description": "The result of the action. If there's a difference between action result and actor intent, use the result not intent.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
}
},
"required": [
"vector",
"variety"
],
"type": "object"
},
"physical": {
"description": "Actions involving proximity and physical contact. <a href='http://veriscommunity.net/actions.html#section-physical' target='_blank'>More Info</a>",
"additionalProperties": false,
"properties": {
"variety": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"vector": {
"description": "Vector of physical access",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"notes": {
"minLength": 1,
"type": "string"
},
"result": {
"description": "The result of the action. If there's a difference between action result and actor intent, use the result not intent.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
}
},
"required": [
"vector",
"variety"
],
"type": "object"
},
"environmental": {
"description": "Forces of nature. Cannot include intentional actions. <a href='http://veriscommunity.net/actions.html#section-environmental' target='_blank'>More Info</a>",
"additionalProperties": false,
"properties": {
"variety": {
"description": "Varieties of environmental events",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"notes": {
"minLength": 1,
"type": "string"
}
},
"required": [
"variety"
],
"type": "object"
},
"unknown": {
"description": "The action taken was unknown",
"properties": {
"notes": {
"minLength": 1,
"type": "string"
},
"result": {
"description": "The result of the action. If there's a difference between action result and actor intent, use the result not intent.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
}
},
"type": "object"
}
},
"type": "object"
},
"actor": {
"description": "What entity did the threat action? <a href='http://veriscommunity.net/actors.html' target='_blank'>More Info</a>",
"additionalProperties": false,
"minProperties": 1,
"properties": {
"external": {
"description": "Unaffiliated with the victim. <a href='http://veriscommunity.net/actors.html#section-external' target='_blank'>More Info</a>",
"additionalProperties": false,
"properties": {
"variety": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"motive": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"notes": {
"description": "Misc external actor notes",
"minLength": 1,
"type": "string"
},
"country": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"region": {
"description": "The <a href='https://en.wikipedia.org/wiki/UN_M.49' target='_blank'>UN M.49</a> super-region and sub-region joined together. e.g. North America: 019021. South America (Brazil): 019005, Asia: 142000, East Asia (includes China): 142030, West Asia (Middle East): 142145, South Asia (India): 142034, Eastern Europe: 150151, Western Europe: 150155. Use 000000 if you do not know and 000001 for 'other' (includes international waters and outer space). If you only know the super-region, use zero's for the region. (e.g. 019000 for Americas.)",
"items": {
"type": "string",
"maxLength":6,
"minLength":6,
"pattern": "\\d{6}"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"name": {
"description": "Actor name (if known). e.g. 'lizard squad'",
"items": {
"type": "string"
},
"type": "array",
"uniqueItems": true
}
},
"required": [
"variety",
"motive"
],
"type": "object"
},
"internal": {
"description": "The victim or a part thereof (such as an employee). <a href='http://veriscommunity.net/actors.html#section-internal' target='_blank'>More Info</a>. Unless it is an error or intentional breaking of rules (misuse), the actor MUST be acting maliciously.",
"additionalProperties": false,
"properties": {
"variety": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"motive": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"job_change": {
"description": "Recent job change PRIOR to incident? (i.e., not asking if 'let go' afterwards)",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"notes": {
"description": "Misc internal actor notes",
"minLength": 1,
"type": "string"
}
},
"required": [
"motive",
"variety"
],
"type": "object"
},
"partner": {
"description": "An entity with an organizational relationship to the victim, but not the victim (such as a customer or supplier). <a href='http://veriscommunity.net/actors.html#section-partner' target='_blank'>More Info</a>",
"additionalProperties": false,
"properties": {
"motive": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"notes": {
"description": "Misc partner actor notes",
"minLength": 1,
"type": "string"
},
"industry": {
"maxLength":6,
"minLength":2,
"pattern":"\\d{2}-?\\d{0,4}",
"type": "string"
},
"country": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"region": {
"description": "The <a href='https://en.wikipedia.org/wiki/UN_M.49' target='_blank'>UN M.49</a> super-region and sub-region joined together. e.g. North America: 019021. South America (Brazil): 019005, Asia: 142000, East Asia (includes China): 142030, West Asia (Middle East): 142145, South Asia (India): 142034, Eastern Europe: 150151, Western Europe: 150155. Use 000000 if you do not know and 000001 for 'other' (includes international waters and outer space). If you only know the super-region, use zero's for the region. (e.g. 019000 for Americas.)",
"items": {
"type": "string",
"maxLength":6,
"minLength":6,
"pattern": "\\d{6}"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"name": {
"items": {
"type": "string"
},
"type": "array",
"uniqueItems": true
}
},
"required": [
"country",
"motive"
],
"type": "object"
},
"unknown": {
"description": "If the actor is unknown, you *must* add a note of some type, otherwise the incident will not validate.",
"properties": {
"notes": {
"minLength": 1,
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"asset": {
"description": "What assets were affected by the incident actions. Data types and record count will be covered in the attributes section. <a href='http://veriscommunity.net/assets.html' target='_blank'>More Info</a>",
"additionalProperties": false,
"minProperties": 1,
"properties": {
"total_amount": {
"type": "number"
},
"assets": {
"items": {
"additionalProperties": false,
"properties": {
"variety": {
"description": "What varieties of assets were compromised?",
"type": "string"
},
"amount": {
"description": "How many total systems were compromised?",
"type": "integer"
}
},
"required": [
"variety"
],
"type": "object"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"ownership": {
"description": "Who owns the affected asset? This can allow us to identify employee-owned (BYOD) assets.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"cloud": {
"description": "Only answer if you know for sure if the asset was hosted in a cloud service.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"hosting": {
"description": "Where is the affected asset hosted/located?",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"management": {
"description": "Independent of physical location, who administers and maintains the affected asset?",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"role": {
"description": "Is the asset Information Technology (IT) such as email or the domain controller or Operational Technology (OT) such as rail-switching computers for a railroad or manufacturing robots for a manufacturing company.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"notes": {
"minLength": 1,
"type": "string"
},
"country": {
"description": "The country hosting the asset.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
}
},
"type": "object",
"required": [
"assets",
"cloud"
]
},
"attribute": {
"description": "What attributes were compromised? <a href='http://veriscommunity.net/attributes.html' target='_blank'>More Info</a>",
"additionalProperties": false,
"minProperties": 1,
"properties": {
"confidentiality": {
"description": "Was data (potentially) disclosed to an unauthorized party? <a href='http://veriscommunity.net/attributes.html#section-confidentiality' target='_blank'>More Info</a>",
"additionalProperties": false,
"properties": {
"data_disclosure": {
"description": "Was data disclosed? This is the core determiner if this incident is a breach. If this is 'Yes', it will be considered a breach. If it is anything else, it will only be an incident.",
"type": "string"
},
"data_total": {
"description": "Total records breached",
"type": "integer"
},
"data": {
"description": "Varieties (and amount) of data compromised. Click the red ‘Add’ button to record multiple data varieties.",
"items": {
"additionalProperties": false,
"properties": {
"amount": {
"type": "integer"
},
"variety": {
"type": "string"
}
},
"required": [
"variety"
],
"type": "object"
},
"minItems": 1,
"type": "array"
},
"data_victim": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"state": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"notes": {
"minLength": 1,
"type": "string"
}
},
"required": [
"data_disclosure"
],
"type": "object"
},
"integrity": {
"description": "Was a person manipulated or the state of a system changed? <a href='http://veriscommunity.net/attributes.html#section-integrity' target='_blank'>More Info</a>",
"additionalProperties": false,
"properties": {
"variety": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"notes": {
"minLength": 1,
"type": "string"
}
},
"required": [
"variety"
],
"type": "object"
},
"availability": {
"description": "Was something rendered partially or wholly unavailable? <a href='http://veriscommunity.net/attributes.html#section-availability' target='_blank'>More Info</a>",
"properties": {
"variety": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
},
"duration": {
"description": "Specific value of the specific selected unit, (i.e., # of 'days').",
"additionalProperties": false,
"properties": {
"unit": {
"type": "string"
},
"value": {
"type": "number"
}
},
"required": [
"unit"
],
"type": "object"
},
"notes": {
"minLength": 1,
"type": "string"
}
},
"required": [
"variety"
],
"type": "object"
},
"unknown": {
"properties": {
"notes": {
"minLength": 1,
"type": "string"
},
"result": {
"description": "The result of the action. If there's a difference between action result and actor intent, use the result not intent.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
}
},
"type": "object"
}
},
"type": "object"
},
"targeted": {
"description": "Was this a targeted or opportunistic attack? <a href='http://veriscommunity.net/discovery.html#section-target-opportunistic' target='_blank'>More Info</a><br />N/A: Not an attack (e.g., unintentional actions)<br />Opportunistic: Victim was NOT pre-selected as a target; they were identified/attacked because they exhibited a weakness the attacker knew how to exploit.<br />Targeted: The victim is pre-selected as a target; the attacker(s) then determined what weaknesses exist within the target that could be exploited.",
"type": "string"
},
"discovery_method": {
"description": "What discovery method was involved? <a href='http://veriscommunity.net/discovery.html#section-discovery-method' target='_blank'>More Info</a>",
"minProperties": 1,
"additionalProperties": false,
"properties": {
"external": {
"description": "Discovered by an external entity.",
"additionalProperties": false,
"properties": {
"variety": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array",
"uniqueItems": true
}
},
"required": [
"variety"
],
"type": "object"
},
"internal": {
"description": "Discovered by entity within the victim organization.",
"additionalProperties": false,
"properties": {
"variety": {