dateCreated Element (Search Connector Schema)

[This documentation is preliminary and is subject to change.]

The optional <dateCreated> element identifies the date and the time when this search connector was created, using the ISO 8601 standard. It has no child elements and no attribute.

Syntax

<!-- dateCreated -->
    <xs:complexType name="searchConnectorDescriptionType">
        <xs:all>
            ...
            <xs:element name="dateCreated" type="xs:dateTime" minOccurs="0"/>
            ...
        </xs:all>
        <xs:attribute name="publisher" type="xs:string"/>
        <xs:attribute name="product" type="xs:string"/>
    </xs:complexType>

Element Information

Parent Element Child Elements
searchConnectorDescriptionType Element (Search Connector Schema)  

Remarks

The format of the value of this element follows the ISO 8601 standard. A common use would be either of the following:

  • [YYYY]-[MM]-[DD]T[hh]:[mm]:[ss]±[hh]:[mm] ("1981-04-05T14:30:30-05:00")
  • [YYYY][MM][DD]T[hh][mm][ss]Z ("19810405T193030Z")

Example

<?xml version="1.0" encoding="UTF-8"?>
<searchConnectorDescription xmlns="https://schemas.adventureworks.com/searchConnector">
    ...
    <dateCreated>2009-04-05T12:00:00-05:00</dateCreated>
    ...
</searchConnectionDescription>