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

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v4/NoteMessage.xsd
Version 4.5.Revision:1351
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/Common.xsd (at Common.xsd)
    • http://cufxstandards.com/v4/Notes.xsd (at Notes.xsd)
    • http://cufxstandards.com/v4/NotesFilter.xsd (at NotesFilter.xsd)

Declared Namespaces

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

Global Declarations

Element: noteMessage

Name noteMessage
Type NoteMessage
Nillable no
Abstract no
Documentation All values that can be sent in a note message. Contains message context, note filter and a note 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
{noteMessage
"messageContext" : messageContext:MessageContext , [0..1] ?
"notesFilter" : notesFilter:NotesFilter , [0..1] ?
"detailedNoteList" : notes:DetailedNoteList , [0..1] ?
noteMessage}
Schema Component Representation
<xs:element name="noteMessage" type="NoteMessage"/>
top

Global Definitions

Complex Type: NoteMessage

Name NoteMessage
Abstract no
Documentation All values that can be sent in a note message. Contains message context, note filter and a note 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] ?
"notesFilter" : notesFilter:NotesFilter , [0..1] ?
"detailedNoteList" : notes:DetailedNoteList , [0..1] ?
}
Schema Component Representation
<xs:complexType name="NoteMessage">
<xs:sequence>
<xs:element name="messageContext" type="messageContext:MessageContext" minOccurs="0" maxOccurs="1"/>
<xs:element name="notesFilter" type="notesFilter:NotesFilter" minOccurs="0" maxOccurs="1"/>
<xs:element name="detailedNoteList" type="notes:DetailedNoteList" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top