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

  • Home
  • SEARCH
  • 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 767061
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T17:08:58+00:00 2026-05-14T17:08:58+00:00

I am reading the tutorials on w3cschools ( http://www.w3schools.com/schema/schema_complex.asp ) but they don’t seem

  • 0

I am reading the tutorials on w3cschools ( http://www.w3schools.com/schema/schema_complex.asp ) but they don’t seem to mention how you could add restrictions on complex types.

Like for instance I have this schema.

<xs:element name="employee">
  <xs:complexType>
    <xs:sequence>
      <xs:element name="firstname" type="xs:string"/>
      <xs:element name="lastname" type="xs:string"/>
    </xs:sequence>
  </xs:complexType>
</xs:element>

now I want to make sure the firstname is no more then 10 characters long. How do I do this?

I tried to put in the simple type for the firstname but it says I can’t do that since I am using a complex type.

So how do I put restrictions like that on the file so the people who I give the schema to don’t try to make the firstname 100 characters.

  • 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. Editorial Team
    Editorial Team
    2026-05-14T17:08:59+00:00Added an answer on May 14, 2026 at 5:08 pm

    There are some restrictions you can have with XSD:

    Let’s say you want firstName no more than 10 characters long. You will use something like:

    <xs:element name="employee">
      <xs:complexType>
        <xs:sequence>
          <xs:element name="firstname">
            <xs:simpleType>
              <xs:restriction base="xs:string">
                <xs:minLength value="1"/>
                <xs:maxLength value="10"/>
              </xs:restriction>
            </xs:simpleType>
          </xs:element>
          <xs:element name="lastname" type="xs:string"/>
        </xs:sequence>
      </xs:complexType>
    </xs:element>
    

    For more complex constraints, you will have to do some code-based checking I guess.

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

Sidebar

Related Questions

I've started with ASP.NET MVC recently, reading blogs, tutorials, trying some routes, etc. Now,
I was gearing up for Javascript, reading the tutorials at W3Schools and came across
This feels like im missing something obvious, but i've been reading tutorials for 3
I've been reading some tutorials on how to get started using Rails 2.0. (Time
I just have started to learn Haskell and combine reading books and tutorials with
I've been reading through a few tutorials about css, and I saw two different
I've been reading tutorials about Curses programming in Python, and many refer to an
I am starting to learn AspectJ. From reading tutorials, I know that I can
I have been at this for quite some time now, reading tutorials and so
I am reading a tutorial that uses the following example (that I'll generalize somewhat):

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.