cs_personName.xsd
2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0"?>
<xsd:schema
elementFormDefault="qualified"
attributeFormDefault="unqualified"
targetNamespace="http://www.witsml.org/schemas/131/addendum/combo"
xmlns:witsml="http://www.witsml.org/schemas/131/addendum/combo"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
version="1.3.1">
<!-- -->
<!--POSC License Agreement
This file is distributed under the POSC License Agreement at
http://www.posc.org/about/license.shtml.
Use of this file constitutes agreement with the POSC License Agreement.
-->
<!-- -->
<xsd:include schemaLocation="typ_dataTypes.xsd"/>
<!-- -->
<xsd:complexType name="cs_personName" final="#all">
<xsd:annotation>
<xsd:documentation>The components of a persons name.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="prefix" type="witsml:nameString" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>A name prefix. Such as, Dr, Ms, Miss, Mr, etc.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="first" type="witsml:nameString" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The persons first name.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="middle" type="witsml:nameString" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The persons middle name or initial name.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="last" type="witsml:nameString" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The persons last or given name.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="suffix" type="witsml:nameString" minOccurs="0" maxOccurs="9">
<xsd:annotation>
<xsd:documentation>A name suffix. Such as Esq, Phd, etc.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<!-- -->
</xsd:schema>