File: dateTime-with-microseconds.xsd

package info (click to toggle)
qtxmlpatterns-opensource-src 5.11.3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 19,760 kB
  • sloc: cpp: 90,153; xml: 1,672; ansic: 388; sh: 91; sed: 31; makefile: 24
file content (12 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">

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

    <xsd:simpleType name="microsecondsType">
        <xsd:restriction base="xsd:dateTime">
            <xsd:pattern value="\d\d\d\d-\d\d-\d\dT\d\d:\d\d:\d\d\.\d\d\d\d\d\dZ"/>
        </xsd:restriction>
    </xsd:simpleType>

</xsd:schema>