9 lines
449 B
XML
9 lines
449 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<xs:schema xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning" attributeFormDefault="unqualified" elementFormDefault="qualified" vc:minVersion="1.1" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
|
<xs:simpleType name="imoType">
|
|
<xs:restriction base="xs:string">
|
|
<xs:pattern value="\p{N}{7}" />
|
|
</xs:restriction>
|
|
</xs:simpleType>
|
|
<xs:element name="imo" type="imoType" />
|
|
</xs:schema> |