Difference between revisions of "Generic-Resource-schema"

From Gcube Wiki
Jump to: navigation, search
(New page: <pre> <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> <xs:annotation> <xs:documentation xm...)
 
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
 
<xs:annotation>
 
<xs:annotation>
 
<xs:documentation xml:lang="en">
 
<xs:documentation xml:lang="en">
    XML Schema for GCUBE Generic Resource Version 1.2 Last modified: 13/02/2008 Contact: http://www.gcube-system.org
+
XML Schema for GCUBE Generic Resource Version 1.4 Last modified: 29/05/2008 Contact: http://www.gcube-system.org
 
</xs:documentation>
 
</xs:documentation>
 
</xs:annotation>
 
</xs:annotation>

Latest revision as of 18:33, 1 June 2009

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
	<xs:annotation>
		<xs:documentation xml:lang="en">
		XML Schema for GCUBE Generic Resource Version 1.4 Last modified: 29/05/2008 Contact: http://www.gcube-system.org
		</xs:documentation>
	</xs:annotation>

	<xs:redefine schemaLocation="CommonTypeDefinitions.xsd">
		<xs:complexType name="ProfileType">
			<xs:complexContent>
				<xs:restriction base="ProfileType">
					<xs:sequence>
						<xs:element name="SecondaryType" type="xs:string" minOccurs="0"/>
						<xs:element name="Name" type="xs:string"/>
						<xs:element name="Description" type="xs:string" minOccurs="0"/>				
						<xs:element name="Body" type="FreeTextType"/>
					</xs:sequence>
				</xs:restriction>
			</xs:complexContent>
		</xs:complexType>
	</xs:redefine>
		
</xs:schema>