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 1868104
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T06:38:36+00:00 2026-05-17T06:38:36+00:00

This XML documentation seems to say that the ID derived type supports a pattern,

  • 0

This XML documentation seems to say that the ID derived type supports a pattern, but when I try to define one with this code:

      <complexType name="CourseType">
          <attribute name="courseNumber" type="ID">
              <pattern value="[A-Z]{2}(\d{3}).(\d{3})" />
          </attribute>
          <attribute name="numOfCredits" type="university:CourseCredits" />
          <element name="course_name" type="university:MixedName" />
          <element name="course_professor" type="string" />
      </complexType>>

…I get an error in the oXygen XML editor that says The content of 'courseNumber' must match (annotation?, (simpleType?)). A problem was found starting at: pattern.

Am I defining my schema correctly for that ID attribute?

  • 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-17T06:38:37+00:00Added an answer on May 17, 2026 at 6:38 am

    If you need to restrict built-in simple data type you should create your own simpleType. Use Derivation by Restriction. Try something like this:

    <simpleType name='better-ID'>
      <restriction base='ID'>
        <pattern value='(\d{3}).(\d{3})'/>
      </restriction>
    </simpleType>
    
    <complexType name="CourseType">
          ...
          <attribute name="courseNumber" type="better-ID"/>
          <attribute name="numOfCredits" type="university:CourseCredits" />
    </complexType>
    

    Or you can just embed simpleType:

       <complexType name="CourseType">
              ...
              <attribute name="courseNumber">
                  <simpleType>
                      <restriction base='ID'>
                         <pattern value='(\d{3}).(\d{3})'/>
                      </restriction>
                  </simpleType>
              </attribute>
              <attribute name="numOfCredits" type="university:CourseCredits" />
        </complexType>
    

    See also @jasso comments below to fix some other errors in your XSD.

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

Sidebar

Related Questions

i have this xml schema <?xml version=1.0 encoding=UTF-8?> <xs:schema xmlns=http://hidden/abc xmlns:xs=http://www.w3.org/2001/XMLSchema targetNamespace=http://hidden/abc elementFormDefault=qualified attributeFormDefault=unqualified
So something I've been doing recently is adding an additional project to my code
Does anyone know if I can inject value from pages.xml into a Seam component?
I am trying to control which files make into the WAR package that is
I am trying to register a generic type in a config file for Unity
I'm new to using Visual Studio 2008 IDE. Switching from vim. Is there a
I'm trying to speed up my builds some and was looking for some thoughts
Started playing around with jQuery and the jsTree plugin yesterday, and have it successfully
I am trying to improve the performance of a Silverlight 4 WCF RIA application.

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.