XSD – String

  • Post author:
  • Post category:XSD
  • Post comments:1 Comment

String data types are used to represent characters in the XML documents. <xs:string> data type The <xs:string> data type can take characters, line feeds, carriage returns, and tab characters. The…

Continue ReadingXSD – String

XSD – any

  • Post author:
  • Post category:XSD
  • Post comments:0 Comments

<any> element is used to extend the XSD functionality. It is used to extend a complexType element defined in one XSD by an element which is not defined in the…

Continue ReadingXSD – any

XSD – Complex Element Only

  • Post author:
  • Post category:XSD
  • Post comments:1 Comment

Complex Elements Only can only have other elements. See the following example − <student> <firstname>Vaneet</firstname> <lastname>Gupta</lastname> <nickname>Vinni</nickname> <marks>95</marks> </student> We can declare Complex element-only element using the following methods −…

Continue ReadingXSD – Complex Element Only