name.xsd 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
  9. <xs:simpleType name="nameType">
  10. <xs:annotation>
  11. <xs:documentation>
  12. We can`t create column index or constraint with name length more than 64 char
  13. </xs:documentation>
  14. </xs:annotation>
  15. <xs:restriction base="xs:string">
  16. <xs:maxLength value="64" />
  17. </xs:restriction>
  18. </xs:simpleType>
  19. <xs:simpleType name="referenceIdType">
  20. <xs:union memberTypes="nameType">
  21. <xs:simpleType>
  22. <xs:annotation>
  23. <xs:documentation>
  24. The attribute can contain only [A-Z0-9_].
  25. </xs:documentation>
  26. </xs:annotation>
  27. <xs:restriction base="xs:string">
  28. <xs:pattern value="[A-Z0-9_]+" />
  29. </xs:restriction>
  30. </xs:simpleType>
  31. </xs:union>
  32. </xs:simpleType>
  33. </xs:schema>