-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cover the case when file has not been loaded yet
- Loading branch information
Showing
3 changed files
with
65 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
xmlns="spec:example:xsd:CommonBasicComponents-1.0" | ||
targetNamespace="spec:example:xsd:CommonBasicComponents-1.0" | ||
elementFormDefault="qualified" | ||
attributeFormDefault="unqualified"> | ||
<xsd:element name="Date" type="DateType"/> | ||
<xsd:element name="Indicator" type="IndicatorType"/> | ||
|
||
<xsd:complexType name="DateType"> | ||
</xsd:complexType> | ||
<xsd:complexType name="IndicatorType"> | ||
</xsd:complexType> | ||
|
||
</xsd:schema> |
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,19 @@ | ||
<?xml version="1.0" encoding="iso-8859-1" ?> | ||
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
xmlns="spec:example:xsd:CommonBasicComponents-1.0" | ||
targetNamespace="spec:example:xsd:CommonBasicComponents-1.0" | ||
elementFormDefault="qualified" | ||
attributeFormDefault="unqualified"> | ||
|
||
<xsd:redefine schemaLocation="base-components.xsd"> | ||
</xsd:redefine> | ||
|
||
<xsd:element name="DeliveryDate" type="DateType"> | ||
<xsd:annotation><xsd:documentation>Lieferdatum</xsd:documentation> | ||
</xsd:annotation> | ||
</xsd:element> | ||
<xsd:element name="BacklogIndicator" type="IndicatorType"> | ||
<xsd:annotation><xsd:documentation>Indikator</xsd:documentation> | ||
</xsd:annotation> | ||
</xsd:element> | ||
</xsd:schema> |