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
  • 0 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

Ask A Question

Stats

  • Questions 68k
  • Answers 68k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Your best bet would be to create a Timer object… May 11, 2026 at 12:18 pm
  • added an answer No. :) That being said, imagine what would happen if… May 11, 2026 at 12:18 pm
  • added an answer If you're writing a bash script, call it by name:… May 11, 2026 at 12:18 pm

Related Questions

Is there some means of querying the system tables to establish which tables are
Is there some way I can use URLs like: http://www.blog.com/team-spirit/ instead of http://www.blog.com/?p=122 in
Is there some built-in way to share files between Xen guests? I don't currently
I would like to create a rectangular 'flat 3D' look for one of my
I have a C# method which accepts a Predicate<Foo> and returns a list of
I'm using two different libraries in my project, and both of them supply a

Related Questions

Is there some means of querying the system tables to establish which tables are
Is there some way I can use URLs like: http://www.blog.com/team-spirit/ instead of http://www.blog.com/?p=122 in
Is there some built-in way to share files between Xen guests? I don't currently
I would like to create a rectangular 'flat 3D' look for one of my
I have a C# method which accepts a Predicate<Foo> and returns a list of
I'm using two different libraries in my project, and both of them supply a

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.