Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 152225
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T09:35:06+00:00 2026-05-11T09:35:06+00:00

Is there some sensible way to have elements with strongly-typed simple-types and also attributes?

  • 0

Is there some sensible way to have elements with strongly-typed simple-types and also attributes?

Okay, I have an XSD schema which has a million (er, hundred) elements that might look like this:

<xsd:element name='DocumentDescription' type='xsd:string' /> <xsd:element name='DocumentDateTime' type='xsd:dateTime' /> <xsd:element name='DocumentSize' type='xsd:int' /> 

That’s dandy. However, I really want all of these elements to also have some common attributes on them like, let’s say, ‘format’ and ‘isVisible’. i.e. have a schema like:

<DocumentDescription isVisible='true'>doc description</DocumentDescription> <DocumentDateTime format='dd/mm/yyyy' isVisible='true'>1/1/2008</DocumentDescription> <DocumentSize format='0.00 KB' isVisible='false'>5403</DocumentSize> 

I could do it manually, and horribly, by adding all such attributes to the XSD when I generate it, something like this:

<xsd:element name='DocumentDescription' />   <xsd:complexType>     <xsd:simpleContent>       <xsd:extension base='xsd:string'>         <xsd:attribute name='format' type='xsd:string' />         <xsd:attribute name='isVisible' type='xsd:boolean' />       </xsd:extension>     </xsd:simpleContent>   </xsd:complexType> <xsd:element name='DocumentDateTime' />    ... etc 

…but in an ideal world I’d rather define it as a complexType:

<xsd:complexType name='customType'>   <xsd:complexContent>     <xsd:extension base='???'>       <xsd:attribute name='format' type='xsd:string' />       <xsd:attribute name='isVisible' type='xsd:boolean' /> 

…which means I could just do:

<xsd:element name='DocumentDescription' type='customType' baseType='xsd:string' /> <xsd:element name='DocumentDateTime' type='customType' baseType='xsd:dateTime' /> <xsd:element name='DocumentSize' type='customType' baseType='xsd:int' /> 

The problem with my ‘ideal world’ code is that:

a) I’ve no valid <xsd:extension base-'???'>, since really I don’t care what I’m extending; I want to extend all types. Seems like the ‘xsd:anyType’ is appropriate, yet then the element becomes a weakly typed container does it not?

b) I can no longer specify the simple type on the <xsd:element>, since now the type is the complex ‘customType’ I defined. Hence the imaginary ‘baseType’ attribute I put there…

So can I add attributes to simple types in a non-clunky way? Or do I need to define a dozen complexTypes that are all identical except for the simple type that they extend?

Strongly-typed elements not only describe the data more sensibly, but when I use them for XML mapping in Excel (and this is the whole purpose behind these things), the strong-typing means that Excel sets the cell formatting correctly based on the type.

I’m probably looking at it all the wrong way! Any advice appreciated.

  • 1 1 Answer
  • 3 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T09:35:07+00:00Added an answer on May 11, 2026 at 9:35 am

    [quote]could do it manually, and horribly, by adding all such attributes to the XSD when I generate it, something like this:[/quote]

    I’m afraid this is your only ‘proper’, XSD-schema compatible way to do it.

    XSD can be convoluted to author at times – but it helps keeping things safe 🙂

    Marc

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there some way to define an abstract type as a parameter in an
Is there some way to use Tuning Advisor for SQL Express? Is there some
Are there some good resources tutorials or anyone has tried to implement a Capcha
Is there some kind of software that I can feed uploaded images to and
Is there some crucial difference in writing the registry class in MVC with magic
Is there some event I can use to tell when the SelectedIndices property changes
Is there some regex that can be passed to re-seq such that it will
Is there some kind of tool for creating user interfaces using ATL for C/C++?
Is there some free and easy to use 3D library for iOS (and Android)
Is there some alternative IDE for developing for Adruino I tried to use Eclipe

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.