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

Table of Contents

top

Schema Document Properties

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

Declared Namespaces

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

Global Declarations

Element: answerList

Name answerList
Type AnswerList
Nillable no
Abstract no
Documentation Top level element for answers to the identification resource. List is provided in case there is more than one question asked.
JSON Instance Representation
{answerList
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"answer" : Answer , [1..*]
answerList}
Schema Component Representation
<xs:element name="answerList" type="AnswerList"/>
top

Global Definitions

Complex Type: Answer

Name Answer
Abstract no
JSON Instance Representation
{
"party" : party:Party , [0..1] ?
"questionId" : xs:string , [1] ?
"choiceList" : question:ChoiceList , [0..1] ?
"answerChoice" : question:Choice , [0..1] ?
}
Schema Component Representation
<xs:complexType name="Answer">
<xs:sequence>
<xs:element name="party" type="party:Party" minOccurs="0" maxOccurs="1"/>
<xs:element name="questionId" type="xs:string" minOccurs="1" maxOccurs="1"/>
<xs:element name="choiceList" type="question:ChoiceList" minOccurs="0" maxOccurs="1"/>
<xs:element name="answerChoice" type="question:Choice" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top

Complex Type: AnswerList

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