leadingObjects
leadingObjects
is an element that contains a sequence of elements from the typeobjectIdentifierType
.objectIdentifierType
is a complex type that containsclassId
,objectId
andreplicaId
.The purpose of this structure is to save the leading object for each database in the system. It is not actually changed externally.
<xsd:element name="leadingObjects" minOccurs="0" cs:mustBeAuthenticated="false" cs:highestOverrideScope="cs:User"> <xsd:complexType> <xsd:sequence> <xsd:element name="leadingObject" type="tns:objectIdentifierType" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> </xsd:element> <xsd:complexType name="objectIdentifierType"> <xsd:all> <xsd:element name="classId" type="xsd:short" minOccurs="0"/> <xsd:element name="objectId" type="xsd:int" minOccurs="0"/> <xsd:element name="replicaId" type="xsd:string" minOccurs="0"/> </xsd:all> </xsd:complexType>