Documentation for HeaderData

Table of Contents

top

Schema Document Properties

Target Namespace http://4psa.com/HeaderData.xsd/2.0.0
Element and Attribute Namespaces
  • Global element and attribute declarations belong to this schema's target namespace.
  • By default, local element declarations belong to this schema's target namespace.
  • By default, local attribute declarations have no namespace.
Schema Composition
  • This schema imports schema(s) from the following namespace(s):
    • http://4psa.com/Common.xsd/2.0.0 (at Common.xsd)

Declared Namespaces

Prefix Namespace
Default namespace http://4psa.com/HeaderData.xsd/2.0.0
xml http://www.w3.org/XML/1998/namespace
common http://4psa.com/Common.xsd/2.0.0
xs http://www.w3.org/2001/XMLSchema
Schema Component Representation
<xs:schema targetNamespace="http://4psa.com/HeaderData.xsd/2.0.0" elementFormDefault="qualified">
<xs:import namespace="http://4psa.com/Common.xsd/2.0.0" schemaLocation="Common.xsd"/>
...
</xs:schema>
top

Global Declarations

Element: userCredentials

Name userCredentials
Type Locally-defined complex type
Nillable no
Abstract no
Logical Diagram
XML Instance Representation
<userCredentials>
Start Choice [1]

'Either of'


<username> common:string </username> [1]

'Username for VoipNow server login'

<password> common:password </password> [1]

'Password for VoipNow server login'

<cryptedAuth> common:string </cryptedAuth> [1]

'Base64 encrypted conversion of VoipNow client username'

End Choice
</userCredentials>
Schema Component Representation
<xs:element name="userCredentials">
<xs:complexType>
<xs:choice>
<xs:sequence>
<xs:element name="username" type=" common:string "/>
<xs:element name="password" type=" common:password "/>
</xs:sequence>
<xs:sequence>
<xs:element name="cryptedAuth" type=" common:string "/>
</xs:sequence>
</xs:choice>
</xs:complexType>
</xs:element>
top