English 中文(简体)
XSD - 日期
  • 时间:2024-11-05

XSD - Date Time


Previous Page Next Page  

所用日期和时间数据类型是XML文件的日期和时间。

<xs:date> data type

The <xs:date> data category is used to representdate in YYYY-MM-DD form.

    - 代表年

    - 每月

    - 代表日

<xs:date> Example

XSD——

<xs:element name = "birthdate" type = "xs:date"/>

XML的主要用途——

<birthdate>1980-03-23</birthdate>

<xs:time> data type

The <xs:time> data category is used to represent time in hh:mm:s格式。

    h

    - 代表

    - 代表第二位

<xs:time> Example

XSD——

<xs:element name = "startTime" type = "xs:time"/>

XML的主要用途——

<startTime>10:20:15</startTime>

<xs:datetime> data type

The <xs:datetime> data category is used to representdate and time in YYYYY-MM-DD-Thh:mm:s Format.

    - 代表年

    - 每月

    - 代表日

    - 代表时间段的开始

    h

    - 代表

    - 代表第二位

<xs:datetime> Example

XSD——

<xs:element name = "startTime" type = "xs:datetime"/>

XML的主要用途——

<startTime>1980-03-23T10:20:15</startTime>

<xs:duration> data type

The <xs:duration> data category is used to represent time interval in PnYnMnDTnHnMnS Format. 除P外,每个构成部分都是任择的。

    - 代表起职科

    页: 1

    - 每月

    - 代表日

    - 代表时间段的开始

    - 代表时间

    - 代表

    - 代表第二位

<xs:duration> Example

XSD——

<xs:element name = "period" type = "xs:duration"/>

×ml的元素使用时间为6年、3个月、10天和15小时。

<period>P6Y3M10DT15H</period>

Date Data Types

以下是通用数据类型清单。

S.No. Name & Description
1.

日值

2.

代表日期和时间价值

3.

代表间隔时间

4.

部分时间为当天(DD)

5.

代表一个月(MM)的部分日期

6.

a 部分时间为月和日(MM-DD)

7.

代表年薪部分

8.

代表年月部分

9.

代表时间价值

Restrictions

随类型限制可使用数据类型——

    enumeration

    maxExclusive

    maxInclusive

    minExclusive

    minInclusive

    pattern

    whiteSpace

Advertisements