Skip to content

Commit

Permalink
Use minOccurs and maxOccurs explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
wrygiel committed Feb 10, 2017
1 parent 5b5a8bc commit 85555c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manifest-entry.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@
<xs:complexContent>
<xs:extension base="ewp:ManifestApiEntryBase">
<xs:sequence>
<xs:element name="url" type="ewp:HTTPS">
<xs:element name="url" type="ewp:HTTPS" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>
An URL at which the the host will be listening.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="max-mobility-ids" type="xs:positiveInteger">
<xs:element name="max-mobility-ids" type="xs:positiveInteger" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>
The maximum number of `mobility_id` parameters the server is willing to accept
Expand Down

0 comments on commit 85555c2

Please sign in to comment.