diagram | |||||
namespace | http://base.api.ec.n2.tibco.com | ||||
properties |
|
||||
children | attributeId attributeName attributeDisplayName type | ||||
used by |
|
||||
annotation |
|
||||
source | <xs:complexType name="BaseEntryAttribute" abstract="true"> <xs:annotation> <xs:documentation>Specific attribute that is set on an entry returned by a query. This entity is abstract and provides the id and name (where requested/applicable) for the query. It is then extended by each specific type supported, which provides a hard-typed value for the attribute.</xs:documentation> </xs:annotation> <xs:sequence> <xs:element name="attributeId" type="xs:long" minOccurs="1" maxOccurs="1"> <xs:annotation> <xs:documentation>Unique identifier for this attribute (where applicable, else -1).</xs:documentation> </xs:annotation> </xs:element> <xs:element name="attributeName" type="xs:string" minOccurs="0" maxOccurs="1"> <xs:annotation> <xs:documentation>Name of this attribute. This value is not set if populateAttributeNames is set to false.</xs:documentation> </xs:annotation> </xs:element> <xs:element name="attributeDisplayName" type="xs:string" minOccurs="0" maxOccurs="1"/> <xs:element name="type" type="AttributeType" minOccurs="1" maxOccurs="1"/> </xs:sequence> </xs:complexType> |