25 lines
978 B
XML
25 lines
978 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<xsd:schema xmlns="http://schemas.openxmlformats.org/package/2006/digital-signature"
|
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
targetNamespace="http://schemas.openxmlformats.org/package/2006/digital-signature"
|
|
elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all">
|
|
|
|
<xsd:element name="SignatureTime" type="CT_SignatureTime"/>
|
|
|
|
<xsd:complexType name="CT_SignatureTime">
|
|
<xsd:sequence>
|
|
<xsd:element name="Format" type="ST_Format"/>
|
|
<xsd:element name="Value" type="ST_Value"/>
|
|
</xsd:sequence>
|
|
</xsd:complexType>
|
|
|
|
<xsd:simpleType name="ST_Format">
|
|
<xsd:restriction base="xsd:string">
|
|
<xsd:pattern value="(YYYY)|(YYYY-MM)|(YYYY-MM-DD)|(YYYY-MM-DDThh:mmTZD)|(YYYY-MM-DDThh:mm:ssTZD)|(YYYY-MM-DDThh:mm:ss.sTZD)"/>
|
|
</xsd:restriction>
|
|
</xsd:simpleType>
|
|
|
|
<xsd:simpleType name="ST_Value">
|
|
<xsd:restriction base="xsd:string"/>
|
|
</xsd:simpleType>
|
|
</xsd:schema> |