view _test/Resources/person.xsd @ 241:f48a1a9f4fa2

+Added ViewResult to allow implementation of the view environment. *TTDocuments now storing creation parameters *TTControls automatically propagating layout and title meta to their attributes +Added UnauthorizaedException web exception *minor fixes
author sergey
date Thu, 18 Oct 2012 04:49:55 +0400
parents 77a9934a44af
children eff7f75a4408
line wrap: on
line source

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
	targetNamespace="http://implab.org/person/"
	xmlns:xs="http://www.w3.org/2001/XMLSchema"
	xmlns:tns="http://implab.org/person/"
	elementFormDefault="qualified"
>
    <xs:complexType name="personInfo">
    	<xs:sequence>
    		<xs:element name="firstName" type="xs:string" />
    		<xs:element name="lastName" type="xs:string" />
    		<xs:element name="address" type="tns:addressType" minOccurs="0" maxOccurs="unbounded"/>
    	</xs:sequence>
    	<xs:attribute name="code" use="optional" type="xs:string"/>
    </xs:complexType>
    
    <xs:element name="personInfo" type="tns:personInfo"/>

    <xs:complexType name="addressType">
    	<xs:sequence>
    		<xs:element name="street" type="xs:string" />
    		<xs:element name="line" type="xs:string" />
    	</xs:sequence>
    </xs:complexType>
</xs:schema>