-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
STORY-2142 Fix XSD import docs generation (#540)
* Fix XSD import docs generation * Add unit test
- 9.35.0
- 9.34.2
- 9.34.1
- 9.34.0
- 9.33.0
- 9.32.2
- 9.32.1
- 9.32.0
- 9.31.0
- 9.30.2
- 9.30.1
- 9.30.0
- 9.29.0
- 9.28.2
- 9.28.1
- 9.28.0
- 9.27.0
- 9.26.0
- 9.25.0
- 9.24.0
- 9.23.1
- 9.23.0
- 9.22.1
- 9.22.0
- 9.21.0
- 9.20.0
- 9.19.0
- 9.18.2
- 9.18.1
- 9.18.0
- 9.17.2
- 9.17.1
- 9.17.0
- 9.16.7
- 9.16.6
- 9.16.5
- 9.16.4
- 9.16.3
- 9.16.2
- 9.16.1
- 9.16.0
- 9.15.2
- 9.15.1
- 9.15.0
- 9.14.1
- 9.14.0
- 9.13.0
- 9.12.4
- 9.12.3
- 9.12.2
- 9.12.1
- 9.12.0
- 9.11.2
- 9.11.1
- 9.11.0
- 9.10.1
- 9.10.0
- 9.9.0
- 9.8.6
- 9.8.5
- 9.8.0
- 9.7.0
- 9.6.1
- 9.6.0
- 9.5.0
- 9.4.1
- 9.4.0
- 9.3.1
- 9.3.0
- 9.2.0
- 9.1.4
- 9.1.3
- 9.1.2
- 9.1.1
- 9.1.0
- 9.0.3
- 9.0.2
- 9.0.1
- 9.0.0
- 8.9.0
- 8.8.3
- 8.8.2
- 8.8.1
- 8.8.0.1
- 8.8.0
- 8.7.1
- 8.7.0
- 8.6.3
- 8.6.2
- 8.6.1
- 8.6.0
- 8.5.2
- 8.5.1
- 8.5.0
- 8.4.1
- 8.4.0
- 8.3.5
- 8.3.4
- 8.3.3
- 8.3.2
- 8.3.1
- 8.3.0
- 8.2.0
- 8.1.0
- 8.0.0
- 7.10.0
- 7.9.4
- 7.9.3
- 7.9.2
- 7.9.1
- 7.9.0
- 7.8.0
- 7.7.3
- 7.7.2
- 7.7.1
- 7.7.0
- 7.6.0
- 7.5.4
- 7.5.3
- 7.5.2
1 parent
007636e
commit e8f8d98
Showing
3 changed files
with
134 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> | ||
<xs:simpleType name="Max500Text"> | ||
<xs:annotation> | ||
<xs:documentation>Specifies a character string with a maximum length of 500 characters.</xs:documentation> | ||
</xs:annotation> | ||
<xs:restriction base="xs:string"> | ||
<xs:minLength value="1"/> | ||
<xs:maxLength value="500"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
<xs:simpleType name="Max3Number"> | ||
<xs:annotation> | ||
<xs:documentation>Number (max 999) of objects represented as an integer.</xs:documentation> | ||
</xs:annotation> | ||
<xs:restriction base="xs:decimal"> | ||
<xs:fractionDigits value="0"/> | ||
<xs:totalDigits value="3"/> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
<xs:complexType name="Bar"> | ||
<xs:annotation> | ||
<xs:documentation>Bar definition.</xs:documentation> | ||
</xs:annotation> | ||
<xs:sequence> | ||
<xs:element name="BarStrAttr" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>Bar string attribute definition.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
</xs:sequence> | ||
</xs:complexType> | ||
<xs:complexType name="Foo"> | ||
<xs:annotation> | ||
<xs:documentation>Foo definition.</xs:documentation> | ||
</xs:annotation> | ||
<xs:sequence> | ||
<xs:element name="FooBooleanAttr" type="xs:boolean"> | ||
<xs:annotation> | ||
<xs:documentation>FooBooleanAttr definition.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="FooStrAttr" type="xs:string"> | ||
<xs:annotation> | ||
<xs:documentation>FooStrAttr definition.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="FooDecimalAttr" type="xs:decimal" minOccurs="0"> | ||
<xs:annotation> | ||
<xs:documentation>FooDecimalAttr definition.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="FooStringWithRestrictionAttr" type="Max500Text"> | ||
<xs:annotation> | ||
<xs:documentation>FooStringWithRestrictionAttr definition.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="FooDecimalWithRestrictionAttr" type="Max3Number" minOccurs="0"> | ||
<xs:annotation> | ||
<xs:documentation>FooDecimalWithRestrictionAttr definition.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="FooBarAttr" type="Bar"> | ||
<xs:annotation> | ||
<xs:documentation>FooBarAttr definition.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="FooStrListAttr" type="xs:string" minOccurs="0" maxOccurs="unbounded"> | ||
<xs:annotation> | ||
<xs:documentation>FooStrListAttr definition.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
<xs:element name="FooBarListAttr" type="Bar" minOccurs="1" maxOccurs="2"> | ||
<xs:annotation> | ||
<xs:documentation>FooBarListAttr definition.</xs:documentation> | ||
</xs:annotation> | ||
</xs:element> | ||
</xs:sequence> | ||
</xs:complexType> | ||
</xs:schema> |