profileCardTabsExpanded
profileCardTabsExpanded
is an element that contains a sequence of database elements from typedatabaseType
.databaseType is a complex type that contains profileCard elements from type profileCardType.
profileCardType is a complex type that contain elements of the tabId.
The purpose of this structure is to save the state (open or closed) of the tabs in the profile card for each class in each database.It is not actually changed externally.
<xsd:element name="profileCardTabsExpanded" minOccurs="0" cs:mustBeAuthenticated="false" cs:highestOverrideScope="cs:User"> <xsd:complexType> <xsd:sequence> <xsd:element name="database" type="tns:databaseType" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> </xsd:element> <xsd:complexType name="databaseType"> <xsd:sequence> <xsd:element name="profileCard" type="tns:profileCardType" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="id" type="xsd:string"/> </xsd:complexType> <xsd:complexType name="profileCardType"> <xsd:sequence> <xsd:element name="tabId" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> <xsd:attribute name="classId" type="xsd:string"/> </xsd:complexType>