-
Notifications
You must be signed in to change notification settings - Fork 1
/
entities3.xml
58 lines (58 loc) · 2.9 KB
/
entities3.xml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" standalone="yes"?>
<EntitiesSample>
<xs:schema id="EntitiesSample" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xs:element name="EntitiesSample" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="Entity">
<xs:complexType>
<xs:sequence>
<xs:element name="EntityID" type="xs:string"/>
<xs:element name="Name" type="xs:string" minOccurs="0" />
<xs:element name="Description" type="xs:string" minOccurs="0" />
<xs:element name="Address" type="xs:string" minOccurs="0" />
<xs:element name="Phone" type="xs:string" minOccurs="0" />
<xs:element name="Image" type="xs:string" minOccurs="0" />
<xs:element name="Review" type="xs:string" minOccurs="0" />
<xs:element name="Url" type="xs:string" minOccurs="0" />
<xs:element name="Category" type="xs:string" minOccurs="0" />
<xs:element name="Latitude" type="xs:double" minOccurs="0" />
<xs:element name="Longitude" type="xs:double" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
<xs:unique name="Constraint1" msdata:PrimaryKey="true">
<xs:selector xpath=".//Entity" />
<xs:field xpath="EntityID" />
</xs:unique>
</xs:element>
</xs:schema>
<Entity>
<EntityID>1000</EntityID>
<Name>Space Needle</Name>
<Description>The Space Needle is an observation tower in Seattle, Washington, a landmark of the Pacific Northwest, and a symbol of Seattle. It was built in the Seattle Center for the 1962 World's Fair, which drew over 2.3 million visitors, when nearly 20,000 people a day used its elevators.</Description>
<Address>400 Broad St, Seattle, 98109</Address>
<Phone>(800) 937-9582</Phone>
<Image>http://upload.wikimedia.org/wikipedia/commons/2/23/Space_Needle_2011-07-04.jpg</Image>
<Review>5</Review>
<Url>http://www.spaceneedle.com</Url>
<Category>Monument</Category>
<Latitude>47.448037</Latitude>
<Longitude>-121.696120</Longitude>
</Entity>
<Entity>
<EntityID>1001</EntityID>
<Name>Hiram M. Chittenden (Ballard) Locks</Name>
<Description>The Hiram M. Chittenden Locks is a complex of locks that sits at the west end of Salmon Bay, part of Seattle, Washington's Lake Washington Ship Canal</Description>
<Address>Salmon Bay, Seattle, WA</Address>
<Phone>(206) 783-7059</Phone>
<Image>303-555-0188</Image>
<Review>5</Review>
<Url>http://upload.wikimedia.org/wikipedia/commons/5/57/1091-51.Jpg</Url>
<Category>Attraction</Category>
<Latitude>47.419723</Latitude>
<Longitude>-121.588346</Longitude>
</Entity>
</EntitiesSample>