XML.orgXML.org
FOCUS AREAS |XML-DEV |XML.org DAILY NEWSLINK |REGISTRY |RESOURCES |ABOUT
OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]
Re: [xml-dev] XML Schema - How to define any element of type Foe

Hi Christophe,
   Here's some idea based on XSD 1.1 assertions.

XSD document:

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  
   <xs:complexType name="parent">
     <xs:sequence>
        <xs:any processContents="skip"/>
     </xs:sequence>
     <xs:assert test="*/not(node())"/>
     <xs:assert test="count(*/@*) eq 2"/>
     <xs:assert test="*/xs:positiveInteger(@end) ge */xs:positiveInteger(@start)"/>
   </xs:complexType>
  
   <xs:element name="X" type="parent"/>
 
</xs:schema>

You won't need an explicit complex type definition named "Foe".

Valid XML document:
<?xml version="1.0" encoding="UTF-8"?>
<X>
  <A end="2" start="1"/>
</X>

On 9 March 2017 at 14:37, <cmarchand@oxiane.com> wrote:
Hello,

I have a complexType definition, Foe.

In another complexType, I want to allow any child element, but require that each child element is valid against Foe definition.

Something like :

<xs:complexType name="Foe">
  <xs:attribute name="start" type="xs:positiveInteger" use="required"/>
  <xs:attribute name="end" type="xs:positiveInteger" use="required"/>
  <xs:assert test="@end ge @start">
</xs:complexType>

<xs:complexType name="parent">
  <xs:sequence>
    <xs:any type="Foe"/>
  </xs:sequence>
</xs:complexType>

How can I do this ?

Thanks,
Christophe

_______________________________________________________________________

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@lists.xml.org
subscribe: xml-dev-subscribe@lists.xml.org
List archive: http://lists.xml.org/archives/xml-dev/
List Guidelines: http://www.oasis-open.org/maillists/guidelines.php



--
Regards,
Mukul Gandhi


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 1993-2007 XML.org. This site is hosted by OASIS