XML Tutorial/XML Schema/date

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

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>