XML Reference: Siebel eBusiness Application Integration Volume V > XML Representation of Integration Object Instances >

XML Schema Definitions (XSDs)


The XML Schema Definition (XSD) language describes the content of an XML document. The definition can describe which elements are allowed and how many times the element can be seen. The schema can be used to generate an integration object through Siebel Tools. The feature is accessed through the Integration Object Builder.

Here is an example of an XSD for the Sample Account integration object as generated by Siebel Tools:

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://siebel.com/xsd/SampleAccount.xsd" xmlns:xsdLocal="http://siebel.com/xsd/SampleAccount.xsd" >

<xsd:element name = "elem1" type ="xsd:string" minOccurs ="0" maxOccurs = "1"/>

<xsd:element name = "elem2" type ="xsd:string" minOccurs ="0" maxOccurs="unbounded"/>

</xsd:schema>

XML Reference: Siebel eBusiness Application Integration Volume V