- From: Lassi Nirhamo <lasnir@tkukoulu.fi>
- Date: Tue, 17 Oct 2000 10:11:31 +0200
- To: xmlschema-dev@w3.org
At 12:04 16.10.2000 +0100,ht@cogsci.ed.ac.uk (Henry S. Thompson) wrote: >You appear to want mixed content, if I read your examples correctly, >so try this: > ><complexType name="commentType" content="mixed"> > <element name="comment" type="doc:commentType" minOccurs="0" maxOccurs="unbounded"/> > <attribute name="id" type="doc:commentId"/> > <attribute name="type" type="doc:commentDefId"/> ></complexType> Thank you, it does the job. I have to pratice my english and learn to read;-) : http://www.w3.org/TR/xmlschema-0/#mixedContent: <xsd:element name="letterBody"> <xsd:complexType mixed="true"> <xsd:sequence> <xsd:element name="salutation"> <xsd:complexType mixed="true"> <xsd:sequence> <xsd:element name="name" type="xsd:string"/> </xsd:sequence> </xsd:complexType> </xsd:element> <xsd:element name="quantity" type="xsd:positiveInteger"/> <xsd:element name="productName" type="xsd:string"/> <xsd:element name="shipDate" type="xsd:date" minOccurs="0"/> <!-- etc --> </xsd:sequence> </xsd:complexType> </xsd:element> Lassi Nirhamo
Received on Tuesday, 17 October 2000 03:07:53 UTC