forked from CybOXProject/schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cybox_core.xsd
executable file
·1095 lines (1095 loc) · 64.3 KB
/
cybox_core.xsd
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
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:cybox="http://cybox.mitre.org/cybox-2" xmlns:cyboxCommon="http://cybox.mitre.org/common-2" targetNamespace="http://cybox.mitre.org/cybox-2" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2.0.1">
<xs:annotation>
<xs:documentation>This schema was originally developed by The MITRE Corporation. The CybOX XML Schema implementation is maintained by The MITRE Corporation and developed by the open CybOX Community. For more information, including how to get involved in the effort and how to submit change requests, please visit the CybOX website at http://cybox.mitre.org. </xs:documentation>
<xs:appinfo>
<schema>CybOX Core</schema>
<version>2.0.1</version>
<date>09/30/2013 9:00:00 AM</date>
<short_description>The following specifies the fields and types that compose this defined CybOX Core.</short_description>
<terms_of_use>Copyright (c) 2012-2013, The MITRE Corporation. All rights reserved. The contents of this file are subject to the terms of the CybOX License located at http://cybox.mitre.org/about/termsofuse.html. See the CybOX License for the specific language governing permissions and limitations for use of this schema. When distributing copies of the CybOX Schema, this license header must be included. </terms_of_use>
</xs:appinfo>
</xs:annotation>
<xs:import namespace="http://cybox.mitre.org/common-2" schemaLocation="cybox_common.xsd"/>
<xs:element name="Observables" type="cybox:ObservablesType">
<xs:annotation>
<xs:documentation>The Observables construct represents a collection of cyber observables.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="ObservablesType">
<xs:annotation>
<xs:documentation>The ObservablesType is a type representing a collection of cyber observables.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Observable_Package_Source" type="cyboxCommon:MeasureSourceType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Observable_Package_Source field is optional and enables descriptive specification of how this package of Observables was identified and specified. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="cybox:Observable" maxOccurs="unbounded"/>
<xs:element name="Pools" type="cybox:PoolsType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Pools construct enables the description of Events, Actions, Objects and Properties in a space-efficient pooled manner with the actual Observable structures defined in the CybOX schema containing references to the pooled elements. This reduces redundancy caused when identical observable elements occur multiple times within a set of defined Observables.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="cybox_major_version" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>The cybox_major_version field specifies the major version of the CybOX language utilized for this set of Observables.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="cybox_minor_version" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>The cybox_minor_version field specifies the minor version of the CybOX language utilized for this set of Observables.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="cybox_update_version" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>The cybox_update_version field specifies the update version of the CybOX language utilized for this set of Observables. This field MUST be used when using an update version of CybOX.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:element name="Observable" type="cybox:ObservableType">
<xs:annotation>
<xs:documentation>The Observable construct represents a description of a single cyber observable.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="ObservableType">
<xs:annotation>
<xs:documentation>The ObservableType is a type representing a description of a single cyber observable.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Title" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>The Title field provides a mechanism to specify a short title or description for this Observable</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Description" type="cyboxCommon:StructuredTextType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Description field provides a mechanism to specify a structured text description of this Observable. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Keywords" type="cybox:KeywordsType" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Keywords enables capture of relevant keywords for this cyber observable.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Observable_Source" type="cyboxCommon:MeasureSourceType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Observable_Source field is optional and enables descriptive specification of how this Observable was identified and specified. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:choice minOccurs="0">
<xs:element ref="cybox:Object" minOccurs="0">
<xs:annotation>
<xs:documentation>The Object construct identifies and specificies the characteristics of a specific cyber-relevant object (e.g. a file, a registry key or a process). </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="cybox:Event" minOccurs="0">
<xs:annotation>
<xs:documentation>The Event construct enables specification of a cyber observable event that is dynamic in nature with specific action(s) taken against specific cyber relevant objects (e.g. a file is deleted, a registry key is created or an HTTP Get Request is received).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Observable_Composition" type="cybox:ObservableCompositionType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Observable_Composition construct enables specification of composite observables made up of logical constructions of atomic observables or other composite observables (e.g. Obs5 = (Obs1 OR Obs2) AND (Obs3 OR Obs4)).</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:element name="Pattern_Fidelity" type="cybox:PatternFidelityType" minOccurs="0">
<xs:annotation>
<xs:documentation>Pattern_Fidelity contains elements that enable the characterization of the fidelity of this pattern to its purpose.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="id" type="xs:QName">
<xs:annotation>
<xs:documentation>The id field specifies a unique id for this Observable.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="idref" type="xs:QName">
<xs:annotation>
<xs:documentation>The idref field specifies a unique id reference to an Observable defined elsewhere.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="negate" type="xs:boolean" default="false">
<xs:annotation>
<xs:documentation>The negate field, when set to true, indicates the absence (rather than the presence) of the given Observable in a CybOX pattern.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<!---->
<xs:simpleType name="TrendEnum">
<xs:annotation>
<xs:documentation>TrendEnum is a (non-exhaustive) enumeration of trend types.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Increasing">
<xs:annotation>
<xs:documentation>Specifies an increasing trend.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Decreasing">
<xs:annotation>
<xs:documentation>Specifies a decreasing trend.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<!---->
<xs:element name="Event" type="cybox:EventType">
<xs:annotation>
<xs:documentation>The Event construct enables specification of a cyber observable event that is dynamic in nature with specific action(s) taken against specific cyber relevant objects (e.g. a file is deleted, a registry key is created or an HTTP Get Request is received).</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="EventType">
<xs:annotation>
<xs:documentation>The EventType is a complex type representing a cyber observable event that is dynamic in nature with specific action(s) taken against specific cyber relevant objects (e.g. a file is deleted, a registry key is created or an HTTP Get Request is received).</xs:documentation>
</xs:annotation>
<xs:choice>
<xs:sequence>
<xs:element name="Type" type="cyboxCommon:ControlledVocabularyStringType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Type field uses a standardized controlled vocabulary to capture what type of Event this is.</xs:documentation>
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is EventTypeVocab-1.0.1 in the http://cybox.mitre.org/default_vocabularies-2 namespace. This type is defined in the cybox_default_vocabularies.xsd file or at the URL http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0.1/cybox_default_vocabularies.xsd.
Users may also define their own vocabulary using the type extension mechanism (by specifying a vocabulary name and/or reference using the vocab_name and vocab_reference attributes, respectively) or simply use this as a string field. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Description" type="cyboxCommon:StructuredTextType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Description field provides a mechanism to specify a structured text description of this Event. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Observation_Method" type="cyboxCommon:MeasureSourceType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Observation_Method field is optional and enables descriptive specification of how this Event was observed (in the case of a Cyber Observable Event instance) or could potentially be observed (in the case of a Cyber Observable Event pattern). </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Actions" type="cybox:ActionsType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Actions construct enables description/specification of one or more cyber observable actions. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Frequency" type="cybox:FrequencyType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Frequency field conveys a targeted observation pattern of the frequency of the associated event or action.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:sequence maxOccurs="unbounded">
<xs:element name="Event" type="cybox:EventType">
<xs:annotation>
<xs:documentation>This Event construct is included recursively to enable description/specification of composite Events.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:choice>
<xs:attribute name="id" type="xs:QName">
<xs:annotation>
<xs:documentation>The id field specifies a unique id for this Event.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="idref" type="xs:QName">
<xs:annotation>
<xs:documentation>The idref field specifies a unique id reference to an Event defined elsewhere.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="FrequencyType">
<xs:annotation>
<xs:documentation>The FrequencyType is a type representing the specification of a frequency for a given action or event.</xs:documentation>
</xs:annotation>
<xs:attribute name="rate" type="xs:float" use="optional">
<xs:annotation>
<xs:documentation>This field specifies the rate for this defined frequency.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="units" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>This field specifies the units for this defined frequency.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="scale" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>This field specifies the time scale for this defined frequency.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="trend" type="cybox:TrendEnum">
<xs:annotation>
<xs:documentation>This field is optional and conveys a targeted observation pattern of the nature of any trend in the frequency of the associated event or action. This field would be leveraged within an event or action pattern observable triggering on the matching of a specified trend in the frequency of an event or action.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<!---->
<xs:element name="Action" type="cybox:ActionType">
<xs:annotation>
<xs:documentation>The Action construct enables description/specification of a single cyber observable action. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="ActionsType">
<xs:annotation>
<xs:documentation>The ActionsType is a complex type representing a set of cyber observable actions.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element ref="cybox:Action" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The Action construct enables description/specification of a single cyber observable action. </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ActionType">
<xs:annotation>
<xs:documentation>The ActionType is a complex type representing a single cyber observable action.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Type" type="cyboxCommon:ControlledVocabularyStringType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Type field is optional and utilizes a standardized controlled vocabulary to specify the basic type of the action that was performed.</xs:documentation>
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is ActionTypeVocab in the http://cybox.mitre.org/default_vocabularies-2 namespace. This type is defined in the cybox_default_vocabularies.xsd file or at the URL http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0.1/cybox_default_vocabularies.xsd.
Users may also define their own vocabulary using the type extension mechanism (by specifying a vocabulary name and/or reference using the vocab_name and vocab_reference attributes, respectively) or simply use this as a string field.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Name" type="cyboxCommon:ControlledVocabularyStringType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Name field is optional and utilizes a standardized controlled vocabulary to identify/characterize the specific name of the action that was performed.</xs:documentation>
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is ActionNameVocab in the http://cybox.mitre.org/default_vocabularies-2 namespace. This type is defined in the cybox_default_vocabularies.xsd file or at the URL http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0.1/cybox_default_vocabularies.xsd.
Users may also define their own vocabulary using the type extension mechanism (by specifying a vocabulary name and/or reference using the vocab_name and vocab_reference attributes, respectively) or simply use this as a string field.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Description" type="cyboxCommon:StructuredTextType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Description field contains a textual description of the action.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Action_Aliases" type="cybox:ActionAliasesType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Action_Aliases field is optional and enables identification of other potentially used names for this Action.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Action_Arguments" type="cybox:ActionArgumentsType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Action_Arguments field is optional and enables the specification of relevant arguments/parameters for this Action.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Discovery_Method" type="cyboxCommon:MeasureSourceType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Discovery_Method field is optional and enables descriptive specification of how this Action was observed (in the case of a Cyber Observable Action instance) or could potentially be observed (in the case of a Cyber Observable Action pattern). </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Associated_Objects" type="cybox:AssociatedObjectsType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Associated_Objects construct is optional and enables the description/specification of cyber Objects relevant (either initiating or affected by) this Action.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Relationships" type="cybox:RelationshipsType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Relationships construct is optional and enables description of other cyber observable actions that are related to this Action.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Frequency" type="cybox:FrequencyType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Frequency field conveys a targeted observation pattern of the frequency of the associated event or action.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="id" type="xs:QName">
<xs:annotation>
<xs:documentation>The id field specifies a unique id for this Action.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="idref" type="xs:QName">
<xs:annotation>
<xs:documentation>The idref field specifies a unique id reference to an Action defined elsewhere.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="ordinal_position" type="xs:positiveInteger">
<xs:annotation>
<xs:documentation>The ordinal_position field is intended to reference the ordinal position of the action with within a series of actions.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="action_status" type="cybox:ActionStatusTypeEnum">
<xs:annotation>
<xs:documentation>The action_status field enables description of the status of the action being described.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="context" type="cybox:ActionContextTypeEnum">
<xs:annotation>
<xs:documentation>The context field is optional and enables simple characterization of the broad operational context in which the Action is relevant</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="timestamp" type="xs:dateTime">
<xs:annotation>
<xs:documentation>The timestamp field represents the local or relative time at which the action occurred or was observed. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:simpleType name="ActionStatusTypeEnum">
<xs:annotation>
<xs:documentation>ActionStatusTypeEnum is a (non-exhaustive) enumeration of cyber observable action status types.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Success">
<xs:annotation>
<xs:documentation>Specifies a cyber observable action that was successful.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Fail">
<xs:annotation>
<xs:documentation>Specifies a cyber observable action that failed.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Error">
<xs:annotation>
<xs:documentation>Specifies a cyber observable action that resulted in an error.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Complete/Finish">
<xs:annotation>
<xs:documentation>Specifies a cyber observable action that completed or finished. This action status does not specify the result of the action (e.g., Success/Error).</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Pending">
<xs:annotation>
<xs:documentation>Specifies a cyber observable action is pending.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Ongoing">
<xs:annotation>
<xs:documentation>Specifies a cyber observable action that is ongoing.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Unknown">
<xs:annotation>
<xs:documentation>Specifies a cyber observable action with an unknown status.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="ActionContextTypeEnum">
<xs:annotation>
<xs:documentation>ActionContextTypeEnum is a (non-exhaustive) enumeration of cyber observable action contexts.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Host">
<xs:annotation>
<xs:documentation>Specifies that the cyber observable action occurred on a host.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Network">
<xs:annotation>
<xs:documentation>Specifies that the cyber observable action occurred on a network.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="ActionAliasesType">
<xs:annotation>
<xs:documentation>The ActionAliasesType enables identification of other potentially used names for this Action.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Action_Alias" type="xs:string" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The Action_Alias field is optional and enables identification of a single other potentially used name for this Action.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ActionArgumentsType">
<xs:annotation>
<xs:documentation>The ActionArgumentsType enables the specification of relevant arguments/parameters for this Action.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Action_Argument" type="cybox:ActionArgumentType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The Action_Argument construct is optional and enables the specification of a single relevant argument/parameter for this Action.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ActionArgumentType">
<xs:annotation>
<xs:documentation>The ActionArgumentType enables the specification of a single relevant argument/parameter for this Action.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Argument_Name" type="cyboxCommon:ControlledVocabularyStringType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Defined_Argument_Name field is optional and utilizes a standardized controlled vocabulary to identify/characterize the specific action argument utilized.</xs:documentation>
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is ActionArgumentNameVocab in the http://cybox.mitre.org/default_vocabularies-2 namespace. This type is defined in the cybox_default_vocabularies.xsd file or at the URL http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0.1/cybox_default_vocabularies.xsd.
Users may also define their own vocabulary using the type extension mechanism (by specifying a vocabulary name and/or reference using the vocab_name and vocab_reference attributes, respectively) or simply use this as a string field.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Argument_Value" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>The Argument_Value field specifies the value for this action argument/parameter.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="AssociatedObjectsType">
<xs:annotation>
<xs:documentation>The AssociatedObjectsType enables the description/specification of cyber Objects relevant to an Action.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Associated_Object" type="cybox:AssociatedObjectType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The Associated_Object construct enables the description of cyber Objects associated with this Action. This could include Objects that initiated the action, are the target Objects affected by the Action, are utilized by the Action or are the returned result of the Action.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="AssociatedObjectType">
<xs:annotation>
<xs:documentation>The AssociatedObjectType is a complex type representing the characterization of a cyber observable Object associated with a given cyber observable Action.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="cybox:ObjectType">
<xs:sequence>
<xs:element name="Association_Type" type="cyboxCommon:ControlledVocabularyStringType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Association_Type field utilizes a standardized controlled vocabulary to specify the kind of association this Object holds for this Action.</xs:documentation>
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is ActionObjectAssociationTypeVocab in the http://cybox.mitre.org/default_vocabularies-2 namespace. This type is defined in the cybox_default_vocabularies.xsd file or at the URL http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0.1/cybox_default_vocabularies.xsd.
Users may also define their own vocabulary using the type extension mechanism (by specifying a vocabulary name and/or reference using the vocab_name and vocab_reference attributes, respectively) or simply use this as a string field.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Action_Pertinent_Object_Properties" type="cybox:ActionPertinentObjectPropertiesType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Action_Pertinent_Object_Properties construct is optional and identifies which of the Properties of this Object are specifically pertinent to this Action.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="ActionPertinentObjectPropertiesType">
<xs:annotation>
<xs:documentation>The ActionPertinentObjectPropertiesType identifies which of the Properties of this Object are specifically pertinent to this Action.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Property" type="cybox:ActionPertinentObjectPropertyType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The Property construct identifies a single Object Property that is specifically pertinent to this Action.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ActionPertinentObjectPropertyType">
<xs:annotation>
<xs:documentation>The ActionPertinentObjectPropertyType identifies one of the Properties of an Object that specifically pertinent to an Action.</xs:documentation>
</xs:annotation>
<xs:attribute name="name" type="xs:string">
<xs:annotation>
<xs:documentation>The name field specifies the field name for the pertinent Object Property.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="xpath" type="xs:string">
<xs:annotation>
<xs:documentation>The xpath field specifies the XPath 1.0 expression identifying the pertinent property within the Properties schema for this object type.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="RelationshipsType">
<xs:annotation>
<xs:documentation>The RelationshipsType enables description of other cyber observable actions that are related to this Action.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Relationship" type="cybox:ActionRelationshipType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The Relationship construct is optional and enables description of a single other cyber observable action that is related to this Action.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ActionRelationshipType">
<xs:annotation>
<xs:documentation>The ActionRelationshipType characterizes a relationship between a specified cyber observable action and another cyber observable action.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Type" type="cyboxCommon:ControlledVocabularyStringType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Type field utilizes a standardized controlled vocabulary to describe the nature of the relationship between this Action and the related Action.</xs:documentation>
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is ActionRelationshipTypeVocab in the http://cybox.mitre.org/default_vocabularies-2 namespace. This type is defined in the cybox_default_vocabularies.xsd file or at the URL http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0.1/cybox_default_vocabularies.xsd.
Users may also define their own vocabulary using the type extension mechanism (by specifying a vocabulary name and/or reference using the vocab_name and vocab_reference attributes, respectively) or simply use this as a string field. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Action_Reference" type="cybox:ActionReferenceType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The Action_Reference construct captures references to other Actions.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ActionReferenceType">
<xs:annotation>
<xs:documentation>ActionReferenceType is intended to serve as a method for linking to actions.</xs:documentation>
</xs:annotation>
<xs:attribute name="action_id" type="xs:QName" use="required">
<xs:annotation>
<xs:documentation>The action_id field refers to the id of the action being referenced.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<!---->
<xs:element name="Object" type="cybox:ObjectType">
<xs:annotation>
<xs:documentation>The Object construct identifies and specificies the characteristics of a specific cyber-relevant object (e.g. a file, a registry key or a process). </xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="ObjectType">
<xs:annotation>
<xs:documentation>The ObjectType is a complex type representing the characteristics of a specific cyber-relevant object (e.g. a file, a registry key or a process). </xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="State" type="cyboxCommon:ControlledVocabularyStringType" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>The State field enables the description of the current state of the object, through a standardized controlled vocabulary.</xs:documentation>
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is ObjectStateVocab in the http://cybox.mitre.org/default_vocabularies-2 namespace. This type is defined in the cybox_default_vocabularies.xsd file or at the URL http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0.1/cybox_default_vocabularies.xsd.
Users may also define their own vocabulary using the type extension mechanism (by specifying a vocabulary name and/or reference using the vocab_name and vocab_reference attributes, respectively) or simply use this as a string field. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Description" type="cyboxCommon:StructuredTextType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Description field provides a mechanism to specify a structured text description of this Object. </xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Properties" type="cyboxCommon:ObjectPropertiesType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Properties construct is an abstract placeholder for various predefined Object type schemas (e.g. File, Process or System) that can be instantiated in its place through extension of the ObjectPropertiesType. This mechanism enables the specification of a broad range of Object types with consistent Object Property naming and structure. The set of Properties schemas are maintained independent of the core CybOX schema.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Domain_Specific_Object_Properties" type="cybox:DomainSpecificObjectPropertiesType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Domain_Specific_Object_Properties construct is of an Abstract type placeholder within the CybOX schema enabling the inclusion of domain-specific metadata for an object through the use of a custom type defined as an extension of this base Abstract type. This enables domains utilizing CybOX such as malware analysis or forensics to incorporate non-generalized object metadata from their domains into CybOX objects.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Related_Objects" type="cybox:RelatedObjectsType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Related_Objects construct is optional and enables the identification and/or specification of Objects with relevant relationships with this Object.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Defined_Effect" type="cybox:DefinedEffectType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Defined_Effect construct is an abstract placeholder for various predefined Object Effect types (e.g. DataReadEffect, ValuesEnumeratedEffect or StateChangeEffect) that can be instantiated in its place through extension of the DefinedEffectType. This mechanism enables the specification of a broad range of types of potential complex action effects on Objects. The set of Defined_Effect types (extending the DefinedEffectType) are maintained as part of the core CybOX schema.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Discovery_Method" type="cyboxCommon:MeasureSourceType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Discovery_Method field is optional and enables descriptive specification of how this Object was observed (in the case of a Cyber Observable Object instance) or could potentially be observed (in the case of a Cyber Observable Object pattern). </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="id" type="xs:QName">
<xs:annotation>
<xs:documentation>The id field specifies a unique id for this Object.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="idref" type="xs:QName">
<xs:annotation>
<xs:documentation>The idref field specifies a unique id reference to an Object defined elsewhere.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="has_changed" type="xs:boolean">
<xs:annotation>
<xs:documentation>The has_changed field is optional and conveys a targeted observation pattern of whether the associated object specified has changed. This field would be leveraged within a pattern observable triggering on whether the value of an object specification has changed.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="DomainSpecificObjectPropertiesType" abstract="true">
<xs:annotation>
<xs:documentation>The DomainSpecificObjectPropertiesType is an abstract type placeholder within the CybOX schema enabling the inclusion of domain-specific metadata for an object through the use of a custom type defined as an extension of this base Abstract type. This enables domains utilizing CybOX such as malware analysis or forensics to incorporate non-generalized object metadata from their domains into CybOX objects.</xs:documentation>
</xs:annotation>
</xs:complexType>
<xs:complexType name="RelatedObjectsType">
<xs:annotation>
<xs:documentation>The RelatedObjectsType enables the identification and/or specification of Objects with relevant relationships with this Object.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Related_Object" type="cybox:RelatedObjectType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The Related_Object construct is optional and enables the identification and/or specification of a single Objects with relevant relationships with this Object.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="RelatedObjectType">
<xs:annotation>
<xs:documentation>The RelatedObjectType enables the identification and/or specification of an Object with a relevant relationship with this Object.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="cybox:ObjectType">
<xs:sequence>
<xs:element name="Relationship" type="cyboxCommon:ControlledVocabularyStringType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Relationship field uses a standardized controlled vocabulary to capture the nature of the relationship between this Object and the Related_Object.</xs:documentation>
<xs:documentation>This field is implemented through the xsi:type controlled vocabulary extension mechanism. The default vocabulary type is ObjectRelationshipVocab in the http://cybox.mitre.org/default_vocabularies-2 namespace. This type is defined in the cybox_default_vocabularies.xsd file or at the URL http://cybox.mitre.org/XMLSchema/default_vocabularies/2.0.1/cybox_default_vocabularies.xsd.
Users may also define their own vocabulary using the type extension mechanism (by specifying a vocabulary name and/or reference using the vocab_name and vocab_reference attributes, respectively) or simply use this as a string field. </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="DefinedEffectType" abstract="true">
<xs:annotation>
<xs:documentation>The DefinedEffectType is an abstract placeholder for various predefined Object Effect types (e.g. DataReadEffect, ValuesEnumeratedEffect or StateChangeEffect) that can be instantiated in its place through extension of the DefinedEffectType. This mechanism enables the specification of a broad range of types of potential complex action effects on Objects. The set of Defined_Effect types (extending the DefinedEffectType) are maintained as part of the core CybOX schema.</xs:documentation>
</xs:annotation>
<xs:attribute name="effect_type" type="cybox:EffectTypeEnum">
<xs:annotation>
<xs:documentation>The effect_type field specifies the nature of the Defined Effect instantiated in the place of the Defined_Effect element. </xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:simpleType name="EffectTypeEnum">
<xs:annotation>
<xs:documentation>EffectTypeEnum is a (non-exhaustive) enumeration of effect types.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="State_Changed">
<xs:annotation>
<xs:documentation>Specifies that the associated Action had an effect on the Object of changing its state.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Data_Read">
<xs:annotation>
<xs:documentation>Specifies that the associated Action had an effect on the Object of reading data from it.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Data_Written">
<xs:annotation>
<xs:documentation>Specifies that the associated Action had an effect on the Object of writing data to it.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Data_Sent">
<xs:annotation>
<xs:documentation>Specifies that the associated Action had an effect on the Object of sending data to it.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Data_Received">
<xs:annotation>
<xs:documentation>Specifies that the associated Action had an effect on the Object of receiving data from it.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Properties_Read">
<xs:annotation>
<xs:documentation>Specifies that the associated Action had an effect on the Object of reading properties from it.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Properties_Enumerated">
<xs:annotation>
<xs:documentation>Specifies that the associated Action had an effect on the Object of enumeraring properies from it.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="Values_Enumerated">
<xs:annotation>
<xs:documentation>Specifies that the associated Action had an effect on the Object of enumerating values from it.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ControlCode_Sent">
<xs:annotation>
<xs:documentation>Specifies that the associated Action had an effect on the Object of having a control code sent to it.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="StateChangeEffectType">
<xs:annotation>
<xs:documentation>The StateChangeEffectType is intended as a generic way of characterizing the effects of actions upon objects where the some state of the object is changed. </xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="cybox:DefinedEffectType">
<xs:sequence>
<xs:element name="Old_Object" type="cybox:ObjectType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Old_Object construct specifies the object and its properties as they were before the state change effect occurred.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="New_Object" type="cybox:ObjectType">
<xs:annotation>
<xs:documentation>The New_Object construct specifies the object and its properties as they are after the state change effect occurred.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="DataReadEffectType">
<xs:annotation>
<xs:documentation>The DataReadEffectType type is intended to characterize the effects of actions upon objects where some data is read, such as from a file or a pipe.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="cybox:DefinedEffectType">
<xs:sequence>
<xs:element name="Data" type="cyboxCommon:DataSegmentType">
<xs:annotation>
<xs:documentation>The Data field specifies the data that was read from the object by the action.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="DataWrittenEffectType">
<xs:annotation>
<xs:documentation>The DataWrittenEffectType type is intended to characterize the effects of actions upon objects where some data is written, such as to a file or a pipe.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="cybox:DefinedEffectType">
<xs:sequence>
<xs:element name="Data" type="cyboxCommon:DataSegmentType">
<xs:annotation>
<xs:documentation>The Data field specifies the data that was written to the object by the action.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="DataSentEffectType">
<xs:annotation>
<xs:documentation>The DataSentEffectType type is intended to characterize the effects of actions upon objects where some data is sent, such as a byte sequence on a socket.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="cybox:DefinedEffectType">
<xs:sequence>
<xs:element name="Data" type="cyboxCommon:DataSegmentType">
<xs:annotation>
<xs:documentation>The Data field specifies the data that was sent on the object, or from the object, by the action.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="DataReceivedEffectType">
<xs:annotation>
<xs:documentation>The DataReceivedEffectType type is intended to characterize the effects of actions upon objects where some data is received, such as a byte sequence on a socket.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="cybox:DefinedEffectType">
<xs:sequence>
<xs:element name="Data" type="cyboxCommon:DataSegmentType">
<xs:annotation>
<xs:documentation>The Data field specifies the data that was received on the object, or from the object, by the action.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="PropertyReadEffectType">
<xs:annotation>
<xs:documentation>The PropertyReadEffectType type is intended to characterize the effects of actions upon objects where some specific property is read from an object, such as the current running state of a process.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="cybox:DefinedEffectType">
<xs:sequence>
<xs:element name="Name" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>The Name field specifies the Name of the property being read.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Value" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>The Value field specifies the value of the property being read.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="PropertiesEnumeratedEffectType">
<xs:annotation>
<xs:documentation>The PropertiesEnumeratedEffectType type is intended to characterize the effects of actions upon objects where some properties of the object are enumerated, such as the startup parameters for a process.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="cybox:DefinedEffectType">
<xs:sequence>
<xs:element name="Properties" type="cybox:PropertiesType">
<xs:annotation>
<xs:documentation>The Properties field specifies the properties that were enumerated as a result of the action on the object.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="PropertiesType">
<xs:annotation>
<xs:documentation>The PropertiesType specifies the properties that were enumerated as a result of the action on the object.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Property" type="xs:string" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The Property element specifies a single property that was enumerated as a result of the action on the object.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ValuesEnumeratedEffectType">
<xs:annotation>
<xs:documentation>The ValuesEnumeratedEffectType type is intended to characterize the effects of actions upon objects where some values of the object are enumerated, such as the values of a registry key.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="cybox:DefinedEffectType">
<xs:sequence>
<xs:element name="Values" type="cybox:ValuesType">
<xs:annotation>
<xs:documentation>The Values field specifies the values that were enumerated as a result of the action on the object.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="ValuesType">
<xs:annotation>
<xs:documentation>The ValuesType specifies the values that were enumerated as a result of the action on the object.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Value" type="xs:string" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The Value field specifies a single value that was enumerated as a result of the action on the object.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="SendControlCodeEffectType">
<xs:annotation>
<xs:documentation>The SendControlCodeEffectType is intended to characterize the effects of actions upon objects where some control code, or other control-oriented communication signal, is sent to the object. For example, an action may send a control code to change the running state of a process.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="cybox:DefinedEffectType">
<xs:sequence>
<xs:element name="Control_Code" type="xs:string">
<xs:annotation>
<xs:documentation>The Control_Code field specifies the actual control code that was sent to the object.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<!---->
<xs:element name="Property" type="cyboxCommon:PropertyType">
<xs:annotation>
<xs:documentation>The Property element represents the specification of a single Object Property</xs:documentation>
</xs:annotation>
</xs:element>
<!---->
<xs:complexType name="ObservableCompositionType">
<xs:annotation>
<xs:documentation>The ObservablesCompositionType enables the specification of higher-order composite observables composed of logical combinations of other observables.</xs:documentation>
</xs:annotation>
<xs:sequence minOccurs="0">
<xs:element name="Observable" type="cybox:ObservableType" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The Observable construct represents a description of a single cyber observable.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="operator" type="cybox:OperatorTypeEnum" use="required">
<xs:annotation>
<xs:documentation>The operator field enables the specification of complex compositional cyber observables by providing logical operators for defining interrelationships between constituent cyber observables defined utilizing the recursive Observable element.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:simpleType name="OperatorTypeEnum">
<xs:annotation>
<xs:documentation>OperatorTypeEnum is a (non-exhaustive) enumeration of operators.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="AND">
<xs:annotation>
<xs:documentation>Specifies the AND logical composition operation.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="OR">
<xs:annotation>
<xs:documentation>Specifies the OR logical composition operation.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
<!---->
<xs:complexType name="PoolsType">
<xs:annotation>
<xs:documentation>The PoolsType enables the description of Events, Actions, Objects and Properties in a space-efficient pooled manner with the actual Observable structures defined in the CybOX schema containing references to the pooled elements. This reduces redundancy caused when identical observable elements occur multiple times within a set of defined Observables.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Event_Pool" type="cybox:EventPoolType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Event_Pool construct enables the description of CybOX Events in a space-efficient pooled manner with the actual Observable structures defined in the CybOX schema containing references to the pooled Event elements. This reduces redundancy caused when identical Events occur multiple times within a set of defined Observables.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Action_Pool" type="cybox:ActionPoolType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Action_Pool construct enables the description of CybOX Actions in a space-efficient pooled manner with the actual Observable structures defined in the CybOX schema containing references to the pooled Action elements. This reduces redundancy caused when identical Actions occur multiple times within a set of defined Observables.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Object_Pool" type="cybox:ObjectPoolType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Object_Pool construct enables the description of CybOX Objects in a space-efficient pooled manner with the actual Observable structures defined in the CybOX schema containing references to the pooled Object elements. This reduces redundancy caused when identical Objects occur multiple times within a set of defined Observables.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Property_Pool" type="cybox:PropertyPoolType" minOccurs="0">
<xs:annotation>
<xs:documentation>The Property_Pool construct enables the description of CybOX Properties in a space-efficient pooled manner with the actual Observable structures defined in the CybOX schema containing references to the pooled Properties elements. This reduces redundancy caused when identical Properties occur multiple times within a set of defined Observables.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="EventPoolType">
<xs:annotation>
<xs:documentation>The EventPoolType enables the description of CybOX Events in a space-efficient pooled manner with the actual Observable structures defined in the CybOX schema containing references to the pooled Event elements. This reduces redundancy caused when identical Events occur multiple times within a set of defined Observables.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Event" type="cybox:EventType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The Event construct enables specification of a cyber observable event that is dynamic in nature with specific action(s) taken against specific cyber relevant objects (e.g. a file is deleted, a registry key is created or an HTTP Get Request is received).</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ActionPoolType">
<xs:annotation>
<xs:documentation>The ActionPoolType enables the description of CybOX Actions in a space-efficient pooled manner with the actual Observable structures defined in the CybOX schema containing references to the pooled Action elements. This reduces redundancy caused when identical Actions occur multiple times within a set of defined Observables.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Action" type="cybox:ActionType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The Action construct enables description/specification of a single cyber observable action. </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ObjectPoolType">
<xs:annotation>
<xs:documentation>The ObjectPoolType enables the description of CybOX Objects in a space-efficient pooled manner with the actual Observable structures defined in the CybOX schema containing references to the pooled Object elements. This reduces redundancy caused when identical Objects occur multiple times within a set of defined Observables.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Object" type="cybox:ObjectType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The Object construct identifies and specificies the characteristics of a specific cyber-relevant object (e.g. a file, a registry key or a process). </xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="PropertyPoolType">
<xs:annotation>
<xs:documentation>The PropertyPoolType enables the description of CybOX Properties in a space-efficient pooled manner with the actual Observable structures defined in the CybOX schema containing references to the pooled Properties elements. This reduces redundancy caused when identical Properties occur multiple times within a set of defined Observables.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Property" type="cyboxCommon:PropertyType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The Property construct enables the specification of a single Object Property.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<!---->
<xs:simpleType name="NoisinessEnum">
<xs:annotation>
<xs:documentation>NoisinessEnum is a (non-exhaustive) enumeration of potential levels of noisiness for a given observable pattern.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="High">
<xs:annotation>