Top "Xsd" questions

XSD generally refers to a document written in the W3C XML Schema format, containing a description of a particular type of XML document.

How can I tell jaxb / Maven to generate multiple schema packages?

Example: </plugin> <plugin> <groupId>org.jvnet.jaxb2.maven2</groupId> <artifactId>…

maven-2 jaxb schema xsd java
XSD - how to allow elements in any order any number of times?

I am trying to create an XSD, and trying to write the definition with the following requirement: Allow child element …

xml xsd
Validating with an XML schema in Python

I have an XML file and an XML schema in another file and I'd like to validate that my XML …

python xml validation xsd
XML Schema How to Restrict Attribute by Enumeration

I have the following XML Tag <price currency="euros">20000.00</price> How do I restrict the currency …

xml xsd
Remove 'standalone="yes"' from generated XML

Do you know of a JAXB setting to prevent standalone="yes" from being generated in the resulting XML? <?xml …

xml xsd jaxb xml-binding
What does elementFormDefault do in XSD?

What does elementFormDefault do, and when should it be used? So I found some definitions for elementFormDefault values: qualified - …

xml xsd xml-namespaces xsd-validation xml-validation
How to fix Eclipse validation error "No grammar constraints detected for the document"?

Eclipse 3.5.2 is throwing an XML schema warning message: No grammar constraints (DTD or XML schema) detected for the document. The …

java eclipse jakarta-ee xsd
XSD: how to restrict number of characters in string type attribute?

I have a question regarding adding restriction in my xml schema(xsd). I have a complex-type like: <xsd:complexType …

xml xsd
How can I get the "Eclipse >Generate>Jaxb classes" option back?

I recently had to migrate to a new machine and re-installed Eclipse. At the moment, I need to generate JAXB …

java eclipse jaxb xsd
XSD: What is the difference between xs:integer and xs:int?

I have started to create XSD and found in couple of examples for xs:integer and xs:int. What is …

xsd