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

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v5/SimpleValidationRequest.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)
    • http://cufxstandards.com/v5/Application.xsd (at Application.xsd)

Declared Namespaces

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

Global Declarations

Element: simpleValidationRequestList

Name simpleValidationRequestList
Type SimpleValidationRequestList
Nillable no
Abstract no
Documentation Top level simple validation request list collection element.
JSON Instance Representation
{simpleValidationRequestList
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"simpleValidationRequest" : SimpleValidationRequest , [0..*] ?
simpleValidationRequestList}
Schema Component Representation
<xs:element name="simpleValidationRequestList" type="SimpleValidationRequestList"/>
top

Global Definitions

Complex Type: SimpleValidationRequest

Name SimpleValidationRequest
Abstract no
JSON Instance Representation
{
"validationType" : ValidationType , [0..1] ?
"applicant" : application:Applicant , [0..1] ?
"simpleValidationStatus" : SimpleValidationStatus , [0..1] ?
"validationSubmittedDateTime" : xs:dateTime , [0..1] ?
"customData" : common:CustomData , [0..1] ?
}
Schema Component Representation
<xs:complexType name="SimpleValidationRequest">
<xs:sequence>
<xs:element name="validationType" type="ValidationType" minOccurs="0" maxOccurs="1"/>
<xs:element name="applicant" type="application:Applicant" minOccurs="0" maxOccurs="1"/>
<xs:element name="simpleValidationStatus" type="SimpleValidationStatus" minOccurs="0" maxOccurs="1"/>
<xs:element name="validationSubmittedDateTime" type="xs:dateTime" minOccurs="0" maxOccurs="1"/>
<xs:element name="customData" type="common:CustomData" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top

Complex Type: SimpleValidationRequestList

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

Complex Type: SimpleValidationStatusList

Name SimpleValidationStatusList
Abstract no
Documentation The list of validation status that should be returned or affected by a read, update or delete simple validation request.
JSON Instance Representation
{
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"simpleValidationStatus" : SimpleValidationStatus , [0..*] ?
}
Schema Component Representation
<xs:complexType name="SimpleValidationStatusList">
<xs:complexContent>
<xs:extension base="common:ListBase">
<xs:sequence>
<xs:element name="simpleValidationStatus" type="SimpleValidationStatus" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top

Complex Type: ValidationTypeList

Name ValidationTypeList
Abstract no
Documentation The list of validation types that should be returned or affected by a read, update or delete simple validation request.
JSON Instance Representation
{
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"validationType" : ValidationType , [0..*] ?
}
Schema Component Representation
<xs:complexType name="ValidationTypeList">
<xs:complexContent>
<xs:extension base="common:ListBase">
<xs:sequence>
<xs:element name="validationType" type="ValidationType" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top

Simple Type: SimpleValidationStatus

Name SimpleValidationStatus
Content
  • Base XSD Type: string
  • value comes from list: {'Pass'|'Fail'|'Indeterminate'|'InProcess'|'Error'}
Documentation An enumeration defining possible results of a simple validation.
Schema Component Representation
<xs:simpleType name="SimpleValidationStatus">
<xs:restriction base="xs:string">
<xs:enumeration value="Pass"/>
<xs:enumeration value="Fail"/>
<xs:enumeration value="Indeterminate"/>
<xs:enumeration value="InProcess"/>
<xs:enumeration value="Error"/>
</xs:restriction>
</xs:simpleType>
top

Simple Type: ValidationType

Name ValidationType
Content
  • Base XSD Type: string
Schema Component Representation
<xs:simpleType name="ValidationType">
<xs:restriction base="xs:string"/>
</xs:simpleType>
top