XML Tutorial/XML Schema/date

Материал из Web эксперт
Перейти к: навигация, поиск

An xsd:date type element has no the time data.

File: Schema.xsd
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
  targetNamespace="http://www.wbex.ru" xmlns="http://www.wbex.ru"
  elementFormDefault="qualified">
  <xs:element name="birthdate" type="xs:date" />
</xs:schema>

File: Data.xml
<?xml version="1.0"?>
<birthdate xmlns="http://www.wbex.ru">1999-03-14</birthdate>


The date data mtype represents a calendar date

<!-- schema -->
<xsd:element name="anniversary" type="xsd:date"/>
<!-- instance document -->
<anniversary>1960-07-15</anniversary>