[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
XSD Schema considerations
- To: ietf-ltans@xxxxxxx
- Subject: XSD Schema considerations
- From: "Jesus Maria Mendez Perez" <jesusmmp@xxxxxxxxx>
- Date: Tue, 18 Nov 2008 09:34:19 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type; bh=eaJDE4otgg/ZDY7n9EMg1VFNhTiB6jpKxHgPQnninHs=; b=cCCbT142CDRUFO5eHRl1LTVTiOoWldMagT2xndq8PL2vt1yHZOrCfi9pgDh7zteQfh VmC5gbL1SEdo8MYOwMQxgacotD1WrCqMSFG7SQgWBiu4zE8adQ3W9IiBjmV7s2Sq1iEF diSaOQM6THw8vhn89R1mP7vH7moKd2LNte2zY=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=RTz1+9BXay/GMyw16jyDHKvxU/VhUc0pgbGPDSuWcGYIDoqYJRStk8Wk8P5VxiMBhL 6i4of1trXWrdZ7b+bAqNMLjlrWleTkif4PbfDoNwhEsi5RysNSIYtvAblhbyWwL/U8l4 hsRahX/6NqR7gUc/p7i2QSl50ZYLd14RpFe7w=
- List-archive: <http://www.imc.org/ietf-ltans/mail-archive/>
- List-id: <ietf-ltans.imc.org>
- List-unsubscribe: <mailto:ietf-ltans-request@imc.org?body=unsubscribe>
- Sender: owner-ietf-ltans@xxxxxxxxxxxx
Hello,
I have checked lastest versions of LTANS drafts, and i have some questions about xsd´s schemas.
In xmlers.xsd, inside EvidenceRecord element we can add this new elements to save up certificates and information of revocation.
<xsd:element name="KeyInfo" type="ds:KeyInfoType"/> ----- defined in xmldisg-core-schema.xsd
<xsd:element name="CompleteRevocationRefs" type="xa:CompleteRevocationRefsType"/> ----- defined in XAdES.xsd
and change the complextype TimeStamp
<xsd:complexType name="TimeStamp">
<xsd:sequence>
<xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
by this which is defined in oasis-dss-core-schema-v1.0-os.xsd:
<xsd:complexType name="TimeStampType">
<xsd:choice>
<xsd:element ref="ds:Signature"/>
<xsd:element name="RFC3161TimeStampToken" type="xsd:base64Binary"/>
<xsd:element name="Other" type="tn:AnyType"/>
</xsd:choice>
</xsd:complexType>
<xsd:complexType name="AnyType">
<xsd:sequence>
<xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
I want to know your opinion about these changes.
Thanks.