Skip to content
This repository has been archived by the owner on Jul 17, 2020. It is now read-only.

Commit

Permalink
Merge pull request #5 from niels-nijens/xsd-column-escape-character
Browse files Browse the repository at this point in the history
Add columnEscapeCharacter attribute to XML Schema
  • Loading branch information
niels-nijens committed Mar 18, 2016
2 parents 55775ee + ea5faa2 commit 24cdc9a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/Resources/xsd/flexmodel.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
<xs:any minOccurs='0' processContents='skip'/>
</xs:sequence>
<xs:attribute name='table' type='xs:string' use='optional'/>
<xs:attribute name='columnEscapeCharacter' type='single-character' use='optional'/>
<xs:anyAttribute processContents='skip'/>
</xs:complexType>

Expand Down Expand Up @@ -336,6 +337,16 @@
</xs:restriction>
</xs:simpleType>

<!--
Single character restriction.
-->
<xs:simpleType name='single-character'>
<xs:restriction base='xs:string'>
<xs:minLength value='0'/>
<xs:maxLength value='1'/>
</xs:restriction>
</xs:simpleType>

<!--
Boolean.
-->
Expand Down

0 comments on commit 24cdc9a

Please sign in to comment.