QuestionList - Schema Documentation - V4.5.Revision
Documents generated: 4/9/2021

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v4/QuestionList.xsd
Version 4.5.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/v4/Common.xsd (at Common.xsd)
    • http://cufxstandards.com/v4/Application.xsd (at Application.xsd)

Declared Namespaces

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

Global Declarations

Element: questionList

Name questionList
Type QuestionList
Nillable no
Abstract no
Documentation Top level element for list of multiple-choice questions to ask a potential party to verify that they know the answers to validate their identity.
JSON Instance Representation
{questionList
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"question" : Question , [1..*] ?
questionList}
Schema Component Representation
<xs:element name="questionList" type="QuestionList"/>
top

Global Definitions

Complex Type: Choice

Name Choice
Abstract no
JSON Instance Representation
{
"choiceId" : xs:string , [1] ?
"choiceText" : xs:string , [1] ?
"customData" : common:CustomData , [0..1] ?
}
Schema Component Representation
<xs:complexType name="Choice">
<xs:sequence>
<xs:element name="choiceId" type="xs:string" minOccurs="1" maxOccurs="1"/>
<xs:element name="choiceText" type="xs:string" minOccurs="1" maxOccurs="1"/>
<xs:element name="customData" type="common:CustomData" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top

Complex Type: ChoiceList

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

Complex Type: Question

Name Question
Abstract no
JSON Instance Representation
{
"choiceList" : ChoiceList , [1] ?
"questionId" : QuestionId , [1] ?
"questionText" : xs:string , [1] ?
"customData" : common:CustomData , [0..1] ?
}
Schema Component Representation
<xs:complexType name="Question">
<xs:sequence>
<xs:element name="choiceList" type="ChoiceList" minOccurs="1" maxOccurs="1"/>
<xs:element name="questionId" type="QuestionId" minOccurs="1" maxOccurs="1"/>
<xs:element name="questionText" type="xs:string" minOccurs="1" maxOccurs="1"/>
<xs:element name="customData" type="common:CustomData" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top

Complex Type: QuestionList

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

Simple Type: ChoiceId

Name ChoiceId
Content
  • Base XSD Type: string
Documentation An identifier for a multiple-choice answer to the out-of-wallet question. Must be unique within the list of choices. May be a serial number or letter (1, 2, 3 or A, B, C), a GUID, or other identifier.
Schema Component Representation
<xs:simpleType name="ChoiceId">
<xs:restriction base="xs:string"/>
</xs:simpleType>
top

Simple Type: QuestionId

Name QuestionId
Content
  • Base XSD Type: string
Documentation An identifier for the out-of-wallet question. Must be unique within the list of questions. May be a serial number or letter (1, 2, 3 or A, B, C), a GUID, or other identifier.
Schema Component Representation
<xs:simpleType name="QuestionId">
<xs:restriction base="xs:string"/>
</xs:simpleType>
top