XML Tutorial/XML Schema/date

Материал из Web эксперт
Версия от 11:26, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

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

   <source lang="xml">

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></source>


The date data mtype represents a calendar date

   <source lang="xml">

<xsd:element name="anniversary" type="xsd:date"/>

<anniversary>1960-07-15</anniversary></source>