Difference between revisions of "WS-Resource XSD"

From Gcube Wiki
Jump to: navigation, search
(Created page with 'The related file can be downloaded by following this link. <source lang="xml"> <?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSche…')
 
m
 
Line 1: Line 1:
 +
[[Category: Developer's Guide]]
 
The related file can be downloaded by following [[Media:Ws-resource.xsd|this]] link.
 
The related file can be downloaded by following [[Media:Ws-resource.xsd|this]] link.
 
<source lang="xml">
 
<source lang="xml">

Latest revision as of 10:24, 25 July 2013

The related file can be downloaded by following this link.

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" >
	<xs:element name="Document">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="ID" type="xs:string" />
				<xs:element name="Source" type="xs:string" />
				<xs:element name="SourceKey" type="xs:string" />
				<xs:element name="CompleteSourceKey">
					<xs:complexType>
						<xs:sequence>
							<xs:any namespace="##any" processContents="skip" />
						</xs:sequence>
					</xs:complexType>
				</xs:element>
				<xs:element name="EntryKey" />
				<xs:element name="GroupKey" />
				<xs:element name="TerminationTime" type="xs:integer" />
				<xs:element name="TerminationTimeHuman" type="xs:string" />
				<xs:element name="LastUpdateMs" type="xs:integer" />
				<xs:element name="LastUpdateHuman" type="xs:string" />
				<xs:element name="PublicationMode" type="xs:string" />
				<xs:element name="Data">
					<xs:complexType>
						<xs:sequence>
							<xs:any namespace="##any" processContents="skip" maxOccurs="unbounded"/>
						</xs:sequence>
					</xs:complexType>
				</xs:element>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
</xs:schema>