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

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v4/ConfigurationMessage.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/MessageContext.xsd (at MessageContext.xsd)
    • http://cufxstandards.com/v4/Configuration.xsd (at Configuration.xsd)
    • http://cufxstandards.com/v4/ConfigurationFilter.xsd (at ConfigurationFilter.xsd)

Declared Namespaces

Prefix Namespace
Default namespace http://cufxstandards.com/v4/ConfigurationMessage.xsd
xml http://www.w3.org/XML/1998/namespace
xs http://www.w3.org/2001/XMLSchema
messageContext http://cufxstandards.com/v4/MessageContext.xsd
configuration http://cufxstandards.com/v4/Configuration.xsd
configurationFilter http://cufxstandards.com/v4/ConfigurationFilter.xsd
Schema Component Representation
<xs:schema targetNamespace="http://cufxstandards.com/v4/ConfigurationMessage.xsd" version="4.5.$Revision$" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:import namespace="http://cufxstandards.com/v4/MessageContext.xsd" schemaLocation="MessageContext.xsd"/>
<xs:import namespace="http://cufxstandards.com/v4/Configuration.xsd" schemaLocation="Configuration.xsd"/>
<xs:import namespace="http://cufxstandards.com/v4/ConfigurationFilter.xsd" schemaLocation="ConfigurationFilter.xsd"/>
...
</xs:schema>
top

Global Declarations

Element: configurationMessage

Name configurationMessage
Type ConfigurationMessage
Nillable no
Abstract no
Documentation All values that can be sent in a configuration message. Contains message context, configuration filter and a configuration list. This is a wrapper used to more easily serialize the complete message. All values are optional. See example specifications for usage.
JSON Instance Representation
{configurationMessage
"messageContext" : messageContext:MessageContext , [0..1] ?
"configurationFilter" : configurationFilter:ConfigurationFilter , [0..1] ?
"configurationList" : configuration:ConfigurationList , [0..1] ?
configurationMessage}
Schema Component Representation
<xs:element name="configurationMessage" type="ConfigurationMessage"/>
top

Global Definitions

Complex Type: ConfigurationMessage

Name ConfigurationMessage
Abstract no
Documentation All values that can be sent in a configuration message. Contains message context, configuration filter and a configuration list. This is a wrapper used to more easily serialize the complete message. All values are optional. See example specifications for usage.
JSON Instance Representation
{
"messageContext" : messageContext:MessageContext , [0..1] ?
"configurationFilter" : configurationFilter:ConfigurationFilter , [0..1] ?
"configurationList" : configuration:ConfigurationList , [0..1] ?
}
Schema Component Representation
<xs:complexType name="ConfigurationMessage">
<xs:sequence>
<xs:element name="messageContext" type="messageContext:MessageContext" minOccurs="0" maxOccurs="1"/>
<xs:element name="configurationFilter" type="configurationFilter:ConfigurationFilter" minOccurs="0" maxOccurs="1"/>
<xs:element name="configurationList" type="configuration:ConfigurationList" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top