Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: [xml-dev] complexTypes and attributes

From: "Fraser Goffin" <goffinf@----------.--->
To: "Umut Emin" <j.s.bach@--------.-->
Date: 5/13/2007 9:45:00 AM
Umut,
 
something like this should do it :-
 
 <xs:element name="door">
  <xs:complexType>
   <xs:sequence>
    <xs:element name="start">
     <xs:complexType>
      <xs:attribute name="x" type="xs:integer"/>

      <xs:attribute name="y" type="xs:integer"/>
      <xs:attribute name="z" type="xs:integer"/>
     </xs:complexType>
    </xs:element>
    <xs:element name="end">

     <xs:complexType>
      <xs:attribute name="x" type="xs:integer"/>
      <xs:attribute name="y" type="xs:integer"/>
      <xs:attribute name="z" type="xs:integer"/>

     </xs:complexType>
    </xs:element>
   </xs:sequence>
   <xs:attribute name="width" type="xs:integer"/>
   <xs:attribute name="height" type="xs:integer"/>
  </xs:complexType>
 </xs:element>
 
Fraser.
 
On 13/05/07, Umut Emin <j.s.bach@o...> wrote:
Hei *,

I started reading about xml after having found out that it could
work as a db.

Now i am writing a scheme to understand the tree structure. I got stuck

with complexTypes and attributes. My xml file would look like this:

<door width="150" height="300">
<start x="50" y="50" z="0" />
<end x="50" y="-50" z="100" />

</door>

which would be like below as a scheme (except width & height
attributes):

<xs:element name="door">
                   <xs:complexType>
                       <xs:sequence>

                           <xs element name="start">
                           <xs:attribute name="x" type="xs:integer"/>
                           <xs:attribute name="y" type="xs:integer"/>

                           <xs:attribute name="z" type="xs:integer"/>
                       </xs:element>

                           <xs:element name="end">

                           <xs:attribute name="x" type="xs:integer"/>
                           <xs:attribute name="y" type="xs:integer"/>
                           <xs:attribute name="z" type="xs:integer"/>

                       </xs:element>

                       </xs:sequence>
                   </xs:complexType>
</xs:element>

As I have the attributes width and height- in a complexType element

"door", i'd like to  know how i should put them in the element block at
scheme? I couldn't see any examples in web related to this point. Is it
a common design way not to put attributes in the complex elements?


Greetz,
Umut



_______________________________________________________________________

XML-DEV is a publicly archived, unmoderated list hosted by OASIS
to support XML implementation and development. To minimize

spam in the archives, you must subscribe before posting.

[Un]Subscribe/change address: http://www.oasis-open.org/mlmanage/
Or unsubscribe: 
xml-dev-unsubscribe@l...
subscribe: xml-dev-subscribe@l...
List archive: http://lists.xml.org/archives/xml-dev/

List Guidelines: http://www.oasis-open.org/maillists/guidelines.php


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent