-
Notifications
You must be signed in to change notification settings - Fork 715
/
Copy pathjson_threat_protection.xsd
33 lines (33 loc) · 1.47 KB
/
json_threat_protection.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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0">
<xs:element name="JSONThreatProtection" type="jsonThreatProtectionBean"/>
<xs:element name="stepDefinitionBean" type="stepDefinitionBean"/>
<xs:complexType name="jsonThreatProtectionBean">
<xs:complexContent>
<xs:extension base="stepDefinitionBean">
<xs:sequence>
<xs:element name="ArrayElementCount" type="xs:int"/>
<xs:element name="ContainerDepth" type="xs:int"/>
<xs:element name="ObjectEntryCount" type="xs:int"/>
<xs:element name="ObjectEntryNameLength" type="xs:int"/>
<xs:element name="Source" type="xs:string" minOccurs="0"/>
<xs:element name="StringValueLength" type="xs:int"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="stepDefinitionBean" abstract="true">
<xs:complexContent>
<xs:extension base="leafBean">
<xs:sequence>
<xs:element name="DisplayName" type="xs:string" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="required"/>
<xs:attribute name="async" type="xs:string"/>
<xs:attribute name="continueOnError" type="xs:string"/>
<xs:attribute name="enabled" type="xs:string"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="leafBean" abstract="true"/>
</xs:schema>