dateCreated 요소(검색 커넥터 스키마)

선택적 <dateCreated> 요소는 ISO 8601 표준을 사용하여 이 검색 커넥터를 만든 날짜와 시간을 식별합니다. 자식 요소와 특성이 없습니다.

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>

요소 정보

부모 요소 자식 요소
searchConnectorDescriptionType 요소(Search 커넥터 스키마)  

 

설명

이 요소의 값 형식은 ISO 8601 표준을 따릅니다. 일반적인 사용은 다음 중 하나입니다.

  • [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")

예제

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