-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fluent-builder: add failing test for inherited builders
- Loading branch information
Showing
2 changed files
with
50 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xsd:schema xmlns="http://www.siri.org.uk/siri" xmlns:xsd="http://www.w3.org/2001/XMLSchema" | ||
targetNamespace="http://www.siri.org.uk/siri" elementFormDefault="qualified" | ||
attributeFormDefault="unqualified" version="2.1" id="siri_vehicleMonitoring_service"> | ||
<xsd:complexType name="VehicleActivityStructure"> | ||
<xsd:sequence> | ||
<xsd:element name="MonitoredVehicleJourney"> | ||
<xsd:complexType> | ||
<xsd:complexContent> | ||
<xsd:extension base="MonitoredVehicleJourneyStructure"/> | ||
</xsd:complexContent> | ||
</xsd:complexType> | ||
</xsd:element> | ||
</xsd:sequence> | ||
</xsd:complexType> | ||
<xsd:complexType name="MonitoredVehicleJourneyStructure"> | ||
<xsd:sequence> | ||
<xsd:element name="TrainNumbers" minOccurs="0"> | ||
<xsd:complexType> | ||
<xsd:sequence> | ||
<xsd:element name="TrainNumberRef" type="TrainNumberRefStructure" maxOccurs="unbounded"> | ||
</xsd:element> | ||
</xsd:sequence> | ||
</xsd:complexType> | ||
</xsd:element> | ||
</xsd:sequence> | ||
</xsd:complexType> | ||
<xsd:complexType name="TrainNumberRefStructure"> | ||
<xsd:annotation> | ||
<xsd:documentation>Type for reference to a TRAIN NUMBER</xsd:documentation> | ||
</xsd:annotation> | ||
<xsd:simpleContent> | ||
<xsd:extension base="TrainNumber"/> | ||
</xsd:simpleContent> | ||
</xsd:complexType> | ||
<xsd:simpleType name="TrainNumber"> | ||
<xsd:annotation> | ||
<xsd:documentation>Type for identifier of an TRAIN NUMBER</xsd:documentation> | ||
</xsd:annotation> | ||
<xsd:restriction base="xsd:NMTOKEN"/> | ||
</xsd:simpleType> | ||
</xsd:schema> |