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

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v5/NetworkNodeMessage.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/MessageContext.xsd (at MessageContext.xsd)
    • http://cufxstandards.com/v5/NetworkNode.xsd (at NetworkNode.xsd)
    • http://cufxstandards.com/v5/NetworkNodeFilter.xsd (at NetworkNodeFilter.xsd)

Declared Namespaces

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

Global Declarations

Element: networkNodeMessage

Name networkNodeMessage
Type NetworkNodeMessage
Nillable no
Abstract no
Documentation All values that can be sent in an NetworkNode message. Contains message context, NetworkNode filter and an NetworkNode 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
{networkNodeMessage
"messageContext" : messageContext:MessageContext , [0..1] ?
"networkNodeFilter" : networkNodeFilter:NetworkNodeFilter , [0..1] ?
"networkNodeList" : networkNode:NetworkNodeList , [0..1] ?
networkNodeMessage}
Schema Component Representation
<xs:element name="networkNodeMessage" type="NetworkNodeMessage"/>
top

Global Definitions

Complex Type: NetworkNodeMessage

Name NetworkNodeMessage
Abstract no
Documentation All values that can be sent in an NetworkNode message. Contains message context, NetworkNode filter and an NetworkNode 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] ?
"networkNodeFilter" : networkNodeFilter:NetworkNodeFilter , [0..1] ?
"networkNodeList" : networkNode:NetworkNodeList , [0..1] ?
}
Schema Component Representation
<xs:complexType name="NetworkNodeMessage">
<xs:sequence>
<xs:element name="messageContext" type="messageContext:MessageContext" minOccurs="0" maxOccurs="1"/>
<xs:element name="networkNodeFilter" type="networkNodeFilter:NetworkNodeFilter" minOccurs="0" maxOccurs="1"/>
<xs:element name="networkNodeList" type="networkNode:NetworkNodeList" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top