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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T14:58:22+00:00 2026-06-04T14:58:22+00:00

I would like to ask about .XSD document. I cannot find anything about creating

  • 0

I would like to ask about .XSD document. I cannot find anything about creating my own type, for example:

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

    <xs:complexType name="Client">
        <xs:sequence>
            <xs:element name="FirstName" type="string"/>
            <xs:element name="SecondName" type="string"/>
    </xs:sequence>
    </xs:complexType>

    <xs:complexType name="Contact">
        <xs:sequence>
            <xs:element name="contacts" type="Client"  minOccurs="1"/>
        </xs:sequence>
    </xs:complexType>   
</xsd:schema>

And I would like to know is that right way to define my own type contact?

  • 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-06-04T14:58:23+00:00Added an answer on June 4, 2026 at 2:58 pm

    A few points that were not quite right.

    • The xsd: namespace alias on the closing schema tag should be just xs:

    • The primitive string types need there types qualifying, ie xs:string.

    • From a style point of view ComplexTypes should end Type.

    • If you want to use the schema (presumably via the Contact) then you need to declare a root element.

    Graphical representation of an XML Schema

    <?xml version="1.0" encoding="utf-8" ?>
    <!--Created with Liquid XML Studio 2012 Developer Edition (Trial) 10.0.1.3941 (http://www.liquid-technologies.com)-->
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
        <xs:complexType name="ClientType">
            <xs:sequence>
                <xs:element name="FirstName" type="xs:string" />
                <xs:element name="SecondName" type="xs:string" />
            </xs:sequence>
        </xs:complexType>
        <xs:complexType name="ContactType">
            <xs:sequence>
                <xs:element name="contacts" type="ClientType" minOccurs="1" />
            </xs:sequence>
        </xs:complexType>
        <xs:element name="Client" type="ClientType" />
    </xs:schema>
    

    Basically XML Schemas are complex things to write without a tool. I’d seriously look into getting a good schema designer, I’d recommend Liquid XML Studio.

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

Sidebar

Related Questions

i would like to ask about some Notepad++ feature that i couldn't find in
I would like to ask about the available (free or not) Static and Dynamic
I would like to ask you about some advices about this code. It works,
I have been reading about unsafePerformIO lately, and I would like to ask you
What I would like ask is best illustrated by an example, so bear with
I would like to ask about php's preg_match_all. suppose we have the sample string
I would like to ask about Memory Overhead in java, I have a large
I would like to ask about the design of table based on it's editability
I would like to ask about the button and the url post method in
I would like to ask about the memory management problems in objective C. I

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.