User Tools

Site Tools


en:lensorder:version010604:complextypes:contactinfo:patient

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
en:lensorder:version010604:complextypes:contactinfo:patient [2017/02/14 16:17] – external edit 127.0.0.1en:lensorder:version010604:complextypes:contactinfo:patient [2017/06/19 12:39] (current) sebastianraring
Line 1: Line 1:
 +====== contact (ContactInfo) ======
  
 +[[en:lensorder:version010604:structure|b2boptic]] -> [[en:lensorder:version010604:structure|items]] -> [[en:lensorder:version010604:complextypes:item|item]] -> [[en:lensorder:version010604:complextypes:pair|pair]] -> [[en:lensorder:version010604:complextypes:patient|patient]] -> [[en:lensorder:version010604:complextypes:contactinfo:patient|contact]]
 +
 +{{:en:lensorder:version010604:images:contactinfo.png?nolink|ContactInfo}}
 +
 +^ title ^^
 +^ type | string |
 +^ occurs | 0..1 |
 +^ description |  |
 +
 +^ firstName ^^
 +^ type | string |
 +^ occurs | 0..1 |
 +^ description |  |
 +
 +^ lastName ^^
 +^ type | string |
 +^ occurs | 1 |
 +^ description |  |
 +
 +^ phone ^^
 +^ type | string |
 +^ occurs | 0..n |
 +^ description |  |
 +
 +^ fax ^^
 +^ type | string |
 +^ occurs | 0..n |
 +^ description |  |
 +
 +^ eMail ^^
 +^ type | string |
 +^ occurs | 0..n |
 +^ description |  |
 +
 +<code xml>
 +<xs:complexType name="ContactInfo">
 +  <xs:sequence>
 +    <xs:element name="title" type="xs:string" minOccurs="0"/>
 +    <xs:element name="firstName" type="xs:string" minOccurs="0"/>
 +    <xs:element name="lastName" type="xs:string"/>
 +    <xs:element name="phone" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
 +    <xs:element name="fax" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
 +    <xs:element name="eMail" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
 +  </xs:sequence>
 +</xs:complexType>
 +</code>