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'm using TinyXML to parse/build XML files. Now, according to the documentation this library
This XML file contained archived news stories for all of last year. I was
Given this XML, what XPath returns all elements whose prop attribute contains Foo (the
For this xml (in a SQL 2005 XML column): <doc> <a>1</a> <b ba="1" bb="2"
Given this XML ... <ListBucketResult xmlns=http://s3.amazonaws.com/doc/2006-03-01/> <Name>public.rpmware.com</Name> <Prefix></Prefix> <Marker></Marker> <MaxKeys>1000</MaxKeys> <IsTruncated>false</IsTruncated> <Contents> <Key>0.dir</Key> <LastModified>2008-06-25T16:09:49.000Z</LastModified>
Lets assume we have this xml: <?xml version=1.0 encoding=UTF-8?> <tns:RegistryResponse status=urn:oasis:names:tc:ebxml-regrep:ResponseStatusType:Failure xmlns:tns=urn:oasis:names:tc:ebxml-regrep:xsd:rs:3.0 xmlns:rim=urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0> <tns:RegistryErrorList
I have this XML in a column in my table: <keywords> <keyword name=First Name
Which would be the correct format for this XML data, are they equivalent or
I have to replace the content of this xml string through java <My:tag>value_1 22&#xA;value_2
I'm trying a very basic XPath on this xml (same as below), and it

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.