Skip to content

Commit

Permalink
Update mw xsd for autoland (iNavFlight#9723)
Browse files Browse the repository at this point in the history
* update MW XML File schema definition for 7.1 Autland

* fix "approachdirection" type

* fix "approachdirection" type
  • Loading branch information
stronnag authored and JulianTiller committed Oct 18, 2024
1 parent 640cf68 commit 4f257ef
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions docs/development/wp_mission_schema/mw-mission.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,14 @@
<xs:attribute name="landalt" use="required" type="xs:integer"/>
<xs:attribute name="landheading1" use="required" type="xs:integer"/>
<xs:attribute name="landheading2" use="required" type="xs:integer"/>
<xs:attribute name="approachdirection" use="required"
type="xs:boolean"/>
<xs:attribute name="approachdirection" use="required">
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="left"/>
<xs:enumeration value="right"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="sealevelref" use="required" type="xs:boolean"/>
</xs:complexType>
</xs:element>
Expand Down

0 comments on commit 4f257ef

Please sign in to comment.