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

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v4/SystemStatusFilter.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/SystemStatus.xsd (at SystemStatus.xsd)

Declared Namespaces

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

Global Declarations

Element: systemStatusFilter

Name systemStatusFilter
Type SystemStatusFilter
Nillable no
Abstract no
Documentation The list of filter options for services requesting system status data.
JSON Instance Representation
{systemStatusFilter
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"systemStatusList" : systemStatus:SystemStatusList , [0..1] ?
"customData" : common:CustomData , [0..1] ?
systemStatusFilter}
Schema Component Representation
<xs:element name="systemStatusFilter" type="SystemStatusFilter"/>
top

Global Definitions

Complex Type: SystemStatusFilter

Name SystemStatusFilter
Abstract no
Documentation The list of filter options for services requesting system status data. The options can be used in combination or by themselves. It is up to the data source to either return or affect the data requested or return a standard error identifying why the request was rejected.
JSON Instance Representation
{
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"systemStatusList" : systemStatus:SystemStatusList , [0..1] ?
"customData" : common:CustomData , [0..1] ?
}
Schema Component Representation
<xs:complexType name="SystemStatusFilter">
<xs:complexContent>
<xs:extension base="common:ListBase">
<xs:sequence>
<xs:element name="systemStatusList" type="systemStatus:SystemStatusList" minOccurs="0" maxOccurs="1"/>
<xs:element name="customData" type="common:CustomData" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top