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

Table of Contents

top

Schema Document Properties

Target Namespace http://cufxstandards.com/v4/RegisteredDevice.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/Party.xsd (at Party.xsd)
    • http://cufxstandards.com/v4/Relationship.xsd (at Relationship.xsd)
    • http://cufxstandards.com/v4/Account.xsd (at Account.xsd)

Declared Namespaces

Prefix Namespace
Default namespace http://cufxstandards.com/v4/RegisteredDevice.xsd
xml http://www.w3.org/XML/1998/namespace
xs http://www.w3.org/2001/XMLSchema
party http://cufxstandards.com/v4/Party.xsd
relationship http://cufxstandards.com/v4/Relationship.xsd
account http://cufxstandards.com/v4/Account.xsd
common http://cufxstandards.com/v4/Common.xsd
Schema Component Representation
<xs:schema targetNamespace="http://cufxstandards.com/v4/RegisteredDevice.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/Party.xsd" schemaLocation="Party.xsd"/>
<xs:import namespace="http://cufxstandards.com/v4/Relationship.xsd" schemaLocation="Relationship.xsd"/>
<xs:import namespace="http://cufxstandards.com/v4/Account.xsd" schemaLocation="Account.xsd"/>
...
</xs:schema>
top

Global Declarations

Element: registeredDeviceList

Name registeredDeviceList
Type RegisteredDeviceList
Nillable no
Abstract no
Documentation The collection/array list contains all the devices to be created, read, updated or deleted.
JSON Instance Representation
{registeredDeviceList
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"registeredDevice" : RegisteredDevice , [0..*] ?
registeredDeviceList}
Schema Component Representation
<xs:element name="registeredDeviceList" type="RegisteredDeviceList"/>
top

Global Definitions

Complex Type: RegisteredDevice

Name RegisteredDevice
Abstract no
Documentation The registered device to be created, read, updated or deleted.
JSON Instance Representation
{
"deviceId" : xs:string , [0..1] ?
"partyIdList" : party:PartyIdList , [0..1] ?
"relationshipIdList" : relationship:RelationshipIdList , [0..1] ?
"accountIdList" : account:AccountIdList , [0..1] ?
"encryptedFlag" : xs:boolean , [0..1] ?
"isRegisteredFlag" : xs:boolean , [0..1] ?
"customData" : common:CustomData , [0..1] ?
"accountIdentificationList" : account:AccountIdentificationList , [0..1] ?
}
Schema Component Representation
<xs:complexType name="RegisteredDevice">
<xs:sequence>
<xs:element name="deviceId" type="xs:string" minOccurs="0" maxOccurs="1"/>
<xs:element name="partyIdList" type="party:PartyIdList" minOccurs="0" maxOccurs="1"/>
<xs:element name="relationshipIdList" type="relationship:RelationshipIdList" minOccurs="0" maxOccurs="1"/>
<xs:element name="accountIdList" type="account:AccountIdList" minOccurs="0" maxOccurs="1"/>
<xs:element name="encryptedFlag" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
<xs:element name="isRegisteredFlag" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
<xs:element name="customData" type="common:CustomData" minOccurs="0" maxOccurs="1"/>
<xs:element name="accountIdentificationList" type="account:AccountIdentificationList" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
top

Complex Type: RegisteredDeviceIdList

Name RegisteredDeviceIdList
Abstract no
Documentation List of device IDs used for filtering or referencing in other schema's for foreign key relationships.
JSON Instance Representation
{
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"deviceId" : DeviceId , [0..1] ?
}
Schema Component Representation
<xs:complexType name="RegisteredDeviceIdList">
<xs:complexContent>
<xs:extension base="common:ListBase">
<xs:sequence>
<xs:element name="deviceId" type="DeviceId" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top

Complex Type: RegisteredDeviceList

Name RegisteredDeviceList
Abstract no
Documentation The collection/array list contains all the devices to be created, read, updated or deleted.
JSON Instance Representation
{
<!-- 'common:ListBase' super type was not found in this schema. Some elements and attributes may be missing. -->
"registeredDevice" : RegisteredDevice , [0..*] ?
}
Schema Component Representation
<xs:complexType name="RegisteredDeviceList">
<xs:complexContent>
<xs:extension base="common:ListBase">
<xs:sequence>
<xs:element name="registeredDevice" type="RegisteredDevice" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
top

Simple Type: DeviceId

Name DeviceId
Content
  • Base XSD Type: string
Documentation The registered device identification string. The application should ensure that this is unique across all accounts.
Schema Component Representation
<xs:simpleType name="DeviceId">
<xs:restriction base="xs:string"/>
</xs:simpleType>
top