Skip to content

Commit

Permalink
Adding schema for new ConcurrentRate limit policy
Browse files Browse the repository at this point in the history
  • Loading branch information
u2000 committed Sep 11, 2013
1 parent 8889fc0 commit 180e3c9
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions schemas/policy/ConcurrentRatelimit.xsd
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="ConcurrentRatelimit">
<xs:complexType>
<xs:sequence>
<xs:element name="AllowConnections">
<xs:complexType>
<xs:attribute type="xs:string" name="count"/>
</xs:complexType>
</xs:element>
<xs:element type="xs:boolean" name="Distributed" default="false"/>
<xs:element name="TargetIdentifier">
<xs:complexType>
<xs:attribute type="xs:string" name="name"/>
<xs:attribute type="xs:string" name="ref"/>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute type="xs:string" name="name"/>
</xs:complexType>
</xs:element>
</xs:schema>

0 comments on commit 180e3c9

Please sign in to comment.