User - Schema Documentation - V5.0.Revision
Documents generated: 6/7/2021

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v5/User.xsd
Version 5.0.Revision
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://cufxstandards.com/v5/Common.xsd (at Common.xsd)

Declared Namespaces

Prefix Namespace
Default namespace http://cufxstandards.com/v5/User.xsd
xml http://www.w3.org/XML/1998/namespace
common http://cufxstandards.com/v5/Common.xsd
xs http://www.w3.org/2001/XMLSchema
Schema Component Representation
<xs:schema targetNamespace="http://cufxstandards.com/v5/User.xsd" version="5.0.$Revision$" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:import schemaLocation="Common.xsd" namespace="http://cufxstandards.com/v5/Common.xsd"/>
...
</xs:schema>
top

Global Declarations

Element: userList

Name userList
Type UserList
Nillable no
Abstract no
Documentation List of users.
JSON Instance Representation
{userList
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"user" : User , [1..*] ?
userList}
Schema Component Representation
<xs:element name="userList" type="UserList"/>
top

Global Definitions

Complex Type: User

Name User
Abstract no
JSON Instance Representation
{
"userId" : common:UserId , [0..1] ?
"userIdType" : UserIdType , [0..1] ?
"partyId" : common:PartyId , [0..1] ?
"customData" : common:CustomData , [0..1] ?
}
Schema Component Representation
<xs:complexType name="User">
<xs:sequence>
<xs:element name="userId" type="common:UserId" minOccurs="0" maxOccurs="1"/>
<xs:element name="userIdType" type="UserIdType" minOccurs="0" maxOccurs="1"/>
<xs:element name="partyId" type="common:PartyId" minOccurs="0" maxOccurs="1"/>
<xs:element name="customData" type="common:CustomData" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top

Complex Type: UserIdList

Name UserIdList
Abstract no
JSON Instance Representation
{
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"userId" : common:UserId , [0..*] ?
}
Schema Component Representation
<xs:complexType name="UserIdList">
<xs:complexContent>
<xs:extension base="common:ListBase">
<xs:sequence>
<xs:element name="userId" type="common:UserId" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top

Complex Type: UserIdTypeList

Name UserIdTypeList
Abstract no
JSON Instance Representation
{
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"userType" : UserIdType , [0..*] ?
}
Schema Component Representation
<xs:complexType name="UserIdTypeList">
<xs:complexContent>
<xs:extension base="common:ListBase">
<xs:sequence>
<xs:element name="userType" type="UserIdType" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top

Complex Type: UserList

Name UserList
Abstract no
JSON Instance Representation
{
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"user" : User , [1..*] ?
}
Schema Component Representation
<xs:complexType name="UserList">
<xs:complexContent>
<xs:extension base="common:ListBase">
<xs:sequence>
<xs:element name="user" type="User" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top

Simple Type: UserIdType

Name UserIdType
Content
  • Base XSD Type: string
  • value comes from list: {'EmployeeId'|'VendorEmployeeId'|'Anonymous'|'FIUserId'|'SystemAccountId'|'SecurityToken'|'Custom'}
Schema Component Representation
<xs:simpleType name="UserIdType">
<xs:restriction base="xs:string">
<xs:enumeration value="EmployeeId"/>
<xs:enumeration value="VendorEmployeeId"/>
<xs:enumeration value="Anonymous"/>
<xs:enumeration value="FIUserId"/>
<xs:enumeration value="SystemAccountId"/>
<xs:enumeration value="SecurityToken"/>
<xs:enumeration value="Custom"/>
</xs:restriction>
</xs:simpleType>
top