My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns="http://gridshore.nl/schemas" elementFormDefault="qualified"
targetNamespace="http://gridshore.nl/schemas" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="SearchRequest">
<xs:complexType>
<xs:sequence>
<xs:element name="SearchText" type="SearchTextType"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="SearchResponse">
<xs:complexType>
<xs:all>
<xs:element name="Article" type="ArticleType"/>
</xs:all>
</xs:complexType>
</xs:element>
<xs:complexType name="ArticleType">
<xs:all>
<xs:element name="Title" type="TitleType"/>
<xs:element name="Introduction" type="IntroductionType"/>
<xs:element name="Body" type="BodyType"/>
</xs:all>
<xs:attribute name="uuid" type="xs:string"/>
</xs:complexType>

<xs:simpleType name="SearchTextType">
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="TitleType">
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="IntroductionType">
<xs:restriction base="xs:string"/>
</xs:simpleType>
<xs:simpleType name="BodyType">
<xs:restriction base="xs:string"/>
</xs:simpleType>
</xs:schema>

Change log

r166 by jettro.coenradie on Dec 3, 2008   Diff
refactored into standard hippo content as
obtained from the quickstart
Go to: 
Project members, sign in to write a code review

Older revisions

r164 by jettro.coenradie on Dec 1, 2008   Diff
added the project structure
All revisions of this file

File info

Size: 1426 bytes, 39 lines
Powered by Google Project Hosting