view _test/Resources/person.schema.xml @ 422:b0481c071bea ref20150831

IMPL::Config::Container tests, YAMLConfiguration now works and tested
author cin
date Sun, 20 Aug 2017 00:20:41 +0300
parents 608e74bc309f
children
line wrap: on
line source

<?xml version='1.0' encoding='utf-8'?>
<schema>
	<ComplexNode name='personInfo'>
		<NodeSet>
			<SimpleNode name='firstName'/>
			<SimpleNode name='lastName'/>
			<Node name='age' type='number' minOccur='0'/>
			<Node name='address' type='address' minOccur='0' maxOccur='unbounded'/>
		</NodeSet>
	</ComplexNode>
	<ComplexType type='address'>
		<NodeSet>
			<SimpleNode name='street'/>
			<Node name='line' type='number' minOccur='0'/>
		</NodeSet>
	</ComplexType>
	<SimpleType type='number'>
		<RegExp>\d+</RegExp>
	</SimpleType>
</schema>