GIATA FACTS

GIATA mbH

Andreas Fünderich

$Id: GIATA-Facts-en.xml 4340 2010-12-02 14:20:23Z afue $


Table of Contents

1. Clearance
2. Retrieval of fact sheets in real time
3. Retrieval of fact sheets for a local mirror
4. XML data format of a fact sheet
5. XML data format of the description of facts and values
A. Description of facts and values
1. Facts and groups of facts
2. Attributes
3. Units

GIATA FACTS

GIATA FACTS is a service that provides structured information on travel offers in the form of fact sheets in an XML format. The request is specified by a catalogue hotel ID, which is an internal ID used by GIATA to identify a given offer (hotel).

A fact sheet is divided into several groups of facts. These groups can be seen as a structuring suggestion.

In each group there are one or more facts, e.g. beach. Each fact can have 0, 1 or more attributes, e.g. sandy (beach). An attribute can have a value and a unit (of measurement), eg. (beach) in 200 metres distance.

Detailed information can be found here: Appendix A, Description of facts and values

1. Clearance

In order to use GIATA FACTS you need special clearance. Please refer to .

2. Retrieval of fact sheets in real time

Fact sheets are retrieved via an http request; the specific URL for such a request can be obtained from the GIATA XML web service. Thus the first step is determining the URL of the fact sheet; the second step is retrieving the fact sheet itself.

Just append a further parameter "fact" to the GET parameter "show" of your request. This is the only relevant addition to the GIATA XML web service. Please refer to the documentation for general usage.

You must append your credentials to the URL retrieved.

Example for the retrieval of a fact sheet URL for an offer identified by provider and booking code. We use "NEC" as the provider and "11006A" as the booking code. For "uid=" and "pwd=" you must add your credentials:

http://www.giata-xml.de/?uid=YourUid&pwd=YourPassword&sc=hotel&vc=NEC&oc=11006A&show=fact,hn,vn

The XML response will look like this:

<result found="1">
<data id="0">
<Factsheet>http://www.giata-xml.de/?sc=fact&khid=3200166</Factsheet>
<Hotelname>Hotel Don Antonio</Hotelname>
<Veranstaltername>Neckermann</Veranstaltername>
</data>
</result>

Now you can extract the fact sheet URL and append your credentials. With this link you can retrieve the fact sheet. In this example the link will look like this:

http://www.giata-xml.de/?sc=fact&khid=3200166&uid=YourUid&pwd=YourPassword

3. Retrieval of fact sheets for a local mirror

In order to create and maintain a local mirror of the fact sheets, initially you need to retrieve a full dump. Afterwards you can retrieve and process lists of incremental updates.

3.1. Initial retrieval of a full dump

Use this URL (please add your credentials for "uid" and "pwd"):

http://www.giata-xml.de/?uid=XX&pwd=XX&sc=list&list=fact&mode=dump

The response is a compressed *.tar.gz file with a file name following this pattern:

factsheets.modifiedEnd=X.uid=X.ts=X.tar.gz

The parameters in the file name are:

ParameterDescription
modifiedEndA numerical value which is required for running updates.
uidThe XML-UID that identifies your account.
tsTimestamp of the creation of the dump.

Once you decompress the *.tar.gz file you will find directories representing tour operators in the root directory. The names of the subdirectories in the next level represent the IDs of catalogues. Finally there are subdirectories with ranges of IDs of travel offers and XML files identifying a fact sheet and its respective travel offer by its ID.

e.g.: TUI/9532/2612000_2613000/2612689.xml

3.2. Retrieval of updates for a local mirror

In order to retrieve incremental updates you can make a request to this URL (please add your credentials for "uid" and "pwd"):

http://www.giata-xml.de/?uid=XX&pwd=XX&sc=list&list=fact&mode=update&modified=X

As "modified" parameter you enter the value of your last update. This value is either the "modifiedEnd" parameter from the file name of your initial dump or the value of the "modifiedEnd" attribute in the root node of the response delivered for your previous update.

The response will look like this:

<FactUpdateList found="169" modifiedStart="1287011826001" modifiedEnd="1287357085000">
<data id="1">                    <!-- Factsheet update -->
<KataloghotelID>3200090</KataloghotelID>
<Factsheet>http://www.giata-xml.de/?sc=fact&khid=3200090</Factsheet>
</data>
<data id="2" status="deleted">   <!-- Factsheet löschen -->
<KataloghotelID>2611207</KataloghotelID>
</data>
...
</FactUpdateList>

Now you can iterate through the list. Please append your credentials "&uid=X&pwd=X" to each URL.

If you encounter an attribute 'status="deleted"' within a "data" node, you must remove the fact sheet identified by the <KataloghotelID> (travel offer ID) from your local mirror.

4. XML data format of a fact sheet

Example:

<?xml version="1.0" encoding="UTF-8"?>
<factsheet created="2010-08-09T14:28:00+02:00" itemId="3200166" itemName="Hotel Don Antonio" 
  catId="8182" catName="Preisknüller - Spanien &amp; Portugal Sommer 2010" 
  provId="186" provCode="NEC" provName="Neckermann" 
  giataId="11632">
  <factset>
    <factgroup name="buildinginformation" code="14">
      <fact name="buildinginformation:numfloorsmain" code="312" sources="generic">
        <attributes>
          <attribute name="number" code="49" value="4"/>
        </attributes>
      </fact>
      <fact name="buildinginformation:numroomsdouble" code="314" sources="generic">
        <attributes>
          <attribute name="number" code="49" value="151"/>
        </attributes>
      </fact>
      <fact name="buildinginformation:numroomstotal" code="316" sources="generic">
        <attributes>
          <attribute name="number" code="49" value="310"/>
        </attributes>
      </fact>
      <fact name="buildinginformation:yearconstruction" code="320" sources="generic">
        <attributes>
          <attribute name="year" code="50" value="2000"/>
        </attributes>
      </fact>
    </factgroup>
    <factgroup name="category" code="15">
      <fact name="category:official" code="325" sources="generic">
        <attributes>
          <attribute name="rating" code="56" value="4"/>
        </attributes>
      </fact>
      <fact name="category:recommended" code="326" sources="provider">
        <attributes>
          <attribute name="rating" code="56" value="4"/>
        </attributes>
      </fact>
    </factgroup>
    <factgroup name="distance" code="13">
      <fact name="distance:golfcourse" code="294" sources="generic">
        <attributes>
          <attribute name="distance" code="15" value="7000" unit="meter"/>
        </attributes>
      </fact>
      <fact name="distance:publictransport" code="298" sources="generic">
        <attributes>
          <attribute name="distance" code="15" value="500" unit="meter"/>
        </attributes>
      </fact>
    </factgroup>
    <factgroup name="entertainment" code="2">
      <fact name="entertainment:entertainment" code="2" sources="generic"/>
      <fact name="entertainment:miniclub" code="7" sources="generic"/>
    </factgroup>
    <factgroup name="facilities" code="3">
      <fact name="facilities:aircon" code="8" sources="generic"/>
      <fact name="facilities:bar" code="14" sources="provider generic"/>
      <fact name="facilities:bicyclestorageroom" code="16" sources="provider generic"/>
      <fact name="facilities:carpark" code="22" sources="generic"/>
      <fact name="facilities:childrenspool" code="26" sources="provider generic"/>
      <fact name="facilities:conferencerooms" code="28" sources="generic"/>
      <fact name="facilities:deckchairs" code="30" sources="provider generic"/>
      <fact name="facilities:elevators" code="33" sources="provider"/>
      <fact name="facilities:foyer" code="322" sources="provider"/>
      <fact name="facilities:garden" code="40" sources="provider"/>
      <fact name="facilities:indoorpool" code="43" sources="provider generic"/>
      <fact name="facilities:internetaccess" code="44" sources="generic"/>
      <fact name="facilities:outdoorpool" code="50" sources="provider"/>
      <fact name="facilities:parasols" code="52" sources="provider generic"/>
      <fact name="facilities:playground" code="56" sources="provider generic"/>
      <fact name="facilities:pool" code="58" sources="generic">
        <attributes>
          <attribute name="freshwater" code="51"/>
        </attributes>
      </fact>
      <fact name="facilities:poolbar" code="59" sources="generic"/>
      <fact name="facilities:reception" code="62" sources="provider"/>
      <fact name="facilities:receptionarea" code="63" sources="provider generic"/>
      <fact name="facilities:restaurant" code="65" sources="provider"/>
      <fact name="facilities:roomservice" code="66" sources="generic"/>
      <fact name="facilities:sunterrace" code="76" sources="provider generic"/>
      <fact name="facilities:towels" code="80" sources="provider"/>
      <fact name="facilities:tvroom" code="83" sources="provider generic"/>
    </factgroup>
    <factgroup name="location" code="5">
      <fact name="location:beach" code="89" sources="provider">
        <attributes>
          <attribute name="distance" code="15" value="1200" unit="meter"/>
        </attributes>
      </fact>
      <fact name="location:centrallysituated" code="90" sources="provider">
        <attributes>
          <attribute name="distance" code="15" value="800" unit="meter"/>
        </attributes>
      </fact>
    </factgroup>
    <factgroup name="meals" code="6">
      <fact name="meals:breakfast" code="96" sources="generic">
        <attributes>
          <attribute name="buffet" code="7"/>
        </attributes>
      </fact>
      <fact name="meals:dinner" code="100" sources="generic">
        <attributes>
          <attribute name="buffet" code="7"/>
        </attributes>
      </fact>
      <fact name="meals:halfboard" code="103" sources="provider generic"/>
      <fact name="meals:specialoffers" code="113" sources="generic"/>
    </factgroup>
    <factgroup name="objectinformation" code="16">
      <fact name="objectinformation:address" code="328" sources="generic">
        <attributes>
          <attribute name="street" code="58" value="C./ Bonavida"/>
          <attribute name="streetnumber" code="59" value="8"/>
          <attribute name="cityname" code="60" value="Peguera"/>
          <attribute name="postalcode" code="61" value="07181"/>
          <attribute name="country" code="62" value="ES"/>
          <attribute name="addresslines" code="63" value="C./ Bonavida 8  07181 Peguera"/>
        </attributes>
      </fact>
      <fact name="objectinformation:email" code="331" sources="generic">
        <attributes>
          <attribute name="value" code="64" value="hotel@hoteldonantonio.com"/>
        </attributes>
      </fact>
      <fact name="objectinformation:fax" code="330" sources="generic">
        <attributes>
          <attribute name="value" code="64" value="+34971033000"/>
        </attributes>
      </fact>
      <fact name="objectinformation:phone" code="329" sources="generic">
        <attributes>
          <attribute name="value" code="64" value="+34971033033"/>
        </attributes>
      </fact>
    </factgroup>
    <factgroup name="payment" code="8">
      <fact name="payment:payment" code="117" sources="generic">
        <attributes>
          <attribute name="visa" code="41"/>
          <attribute name="mastercard" code="24"/>
        </attributes>
      </fact>
    </factgroup>
    <factgroup name="rooms" code="9">
      <fact name="rooms:aircon" code="120" sources="provider"/>
      <fact name="rooms:balcony" code="123" sources="provider generic"/>
      <fact name="rooms:bathroom" code="125" sources="provider generic"/>
      <fact name="rooms:fridge" code="143" sources="generic"/>
      <fact name="rooms:hairdryer" code="145" sources="provider generic"/>
      <fact name="rooms:heating" code="146" sources="generic">
        <attributes>
          <attribute name="central" code="48"/>
        </attributes>
      </fact>
      <fact name="rooms:internetaccess" code="148" sources="generic"/>
      <fact name="rooms:minibar" code="156" sources="provider generic"/>
      <fact name="rooms:phone" code="159" sources="provider"/>
      <fact name="rooms:radio" code="162" sources="generic"/>
      <fact name="rooms:safe" code="163" sources="provider generic"/>
      <fact name="rooms:shower" code="166" sources="provider"/>
      <fact name="rooms:terrace" code="173" sources="provider"/>
      <fact name="rooms:tv" code="176" sources="provider">
        <attributes>
          <attribute name="sat" code="34"/>
        </attributes>
      </fact>
    </factgroup>
    <factgroup name="spa" code="10">
      <fact name="spa:massage" code="195" sources="provider">
        <attributes>
          <attribute name="forafee" code="20"/>
        </attributes>
      </fact>
      <fact name="spa:sauna" code="196" sources="provider">
        <attributes>
          <attribute name="freeofcharge" code="21"/>
        </attributes>
      </fact>
      <fact name="spa:steambath" code="198" sources="generic"/>
      <fact name="spa:whirlpool" code="201" sources="provider">
        <attributes>
          <attribute name="freeofcharge" code="21"/>
        </attributes>
      </fact>
    </factgroup>
    <factgroup name="sports" code="11">
      <fact name="sports:aerobics" code="202" sources="generic"/>
      <fact name="sports:beachvolleyball" code="209" sources="generic"/>
      <fact name="sports:biking" code="210" sources="provider">
        <attributes>
          <attribute name="forafee" code="20"/>
        </attributes>
      </fact>
      <fact name="sports:billiard" code="211" sources="provider">
        <attributes>
          <attribute name="forafee" code="20"/>
        </attributes>
      </fact>
      <fact name="sports:boccia" code="212" sources="provider">
        <attributes>
          <attribute name="freeofcharge" code="21"/>
        </attributes>
      </fact>
      <fact name="sports:golf" code="219" sources="provider"/>
      <fact name="sports:gym" code="220" sources="provider">
        <attributes>
          <attribute name="freeofcharge" code="21"/>
        </attributes>
      </fact>
      <fact name="sports:tabletennis" code="244" sources="provider">
        <attributes>
          <attribute name="freeofcharge" code="21"/>
        </attributes>
      </fact>
      <fact name="sports:tennis" code="245" sources="generic"/>
    </factgroup>
  </factset>
</factsheet>

The root node <factsheet> can have these attributes:

AttributeDescription
createdTime of creation formatted according to ISO 8601.
itemIdThe catalogue hotel ID, an internal ID used by GIATA to identify a given offer (hotel).
itemNameThe name of the offer that this fact sheet refers to.
catIdThe ID of the catalogue.
catNameThe name of the catalogue.
provIdThe ID of the tour operator.
provCodeThe code of the tour operator.
provNameThe name of the tour operator.
giataIdThe GIATA ID identifying the hotel referred to in this offer. Different offers that refer to the same hotel share the same GIATA ID.

The root node <factsheet> contains one or more nodes <factset>.

Each node <factset> has one or more nodes <factgroup>

A <factgroup> node can have these attributes:

AttributeDescription
nameThe (XML) name of this group of facts.
codeThe numeric code of this group of facts.

Each node <factgroup> contains one or more nodes <fact>.

A <fact> node can have these attributes:

AttributeDescription
nameThe (XML) name of this fact.
codeThe numeric code of this fact.
sourcesThe sources for this fact (provider = information provided by the tour operator of this given offer; generic = general information for this GIATA ID).

Each node <fact> can have a node <attributes> which contains one or more child nodes <attribute>.

An <attribute> node can have these attributes:

AttributeDescription
nameThe (XML) name of this attribute.
codeThe numeric code of this attribute.
valueThe value of this attribute.
unitThe unit of measurement of the value.

5. XML data format of the description of facts and values

The description of can be retrieved here:

http://www.giata-xml.de/dokumentation/GIATA-Facts/definitions.xml

Excerpt:

<?xml version="1.0" encoding="UTF-8"?>
<factdefintions>
  <factgroups>
    <!-- ... -->
    <factgroup code="3" name="facilities">
      <label lang="de">Ausstattung</label>
      <label lang="en">Facilities</label>
      <facts>
        <fact code="8" name="facilities:aircon">
          <label lang="de">Klimaanlage</label>
          <label lang="en">Air conditioning</label>
        </fact>
        <fact code="9" name="facilities:auditorium">
          <label lang="de">Theatersaal</label>
          <label lang="en">Auditorium</label>
        </fact>
        <fact code="10" name="facilities:babysitter">
          <label lang="de">Babysitter</label>
          <label lang="en">Babysitter</label>
        </fact>
        <!-- ... -->
      </facts>
    </factgroup>
    <!-- ... -->
    <factgroup code="9" name="rooms">
      <label lang="de">Zimmer</label>
      <label lang="en">Rooms</label>
      <facts>
        <fact code="118" name="rooms:adapterplug">
          <label lang="de">Steckdosenadapter</label>
          <label lang="en">Electrical outlet adapter</label>
        </fact>
        <fact code="119" name="rooms:additionalbed">
          <label lang="de">Zustellbett</label>
          <label lang="en">Extra bed</label>
        </fact>
        <fact code="120" name="rooms:aircon">
          <label lang="de">Klimaanlage</label>
          <label lang="en">Air conditioning</label>
        </fact>
        <!-- ... -->
      </facts>
    </factgroup>
    <!-- ... -->
  </factgroups>
  <attributes>
    <!-- ... -->
    <attribute code="2" name="alacarte">
      <label lang="de">à la carte</label>
      <label lang="en">à la carte</label>
    </attribute>
    <attribute code="3" name="allowed">
      <label lang="de">erlaubt</label>
      <label lang="en">allowed</label>
    </attribute>
    <!-- ... -->
  </attributes>
  <units>
    <unit name="hour">
      <label lang="de">Stunden</label>
      <label lang="en">hours</label>
    </unit>
    <unit name="meter">
      <label lang="de">Meter</label>
      <label lang="en">metres</label>
    </unit>
    <unit name="sqm">
      <label lang="de">Quadratmeter</label>
      <label lang="en">square metres</label>
    </unit>
  </units>
</factdefintions>

The root node <factdefintions> contains these child nodes: <factgroups>, <attributes> and <units>.

The <factgroups> node contains several nodes <factgroup> with these attributes:

AttributeDescription
nameThe (XML) name of this group of facts.
codeThe numeric code of this group of facts.

<factgroup> contains one or more child nodes <label>. <label> has an attribute lang identifying the language. The text content of <label> is a term for the respective group of facts in the given language.

Furthermore a <factgroup> node contains one or more nodes <fact>. <fact> has the attributes code and name as well as one or more child nodes <label> (as <factgroup>).

The <attributes> node contains several <attribute> nodes with the attributes code and name as well as one or more child nodes <label>.

The <units> node contains several <unit> nodes with an attribute name as well as one or more child nodes <label>.

A. Description of facts and values

1. Facts and groups of facts

CodeNameTermComment
    
14 buildinginformation Building information Group of facts / Context
308buildinginformation:annexebuildingsAnnexe 
309buildinginformation:numapartmentsNumber of apartments 
310buildinginformation:numbungalowsNumber of bungalows 
311buildinginformation:numfloorsannexeNumber of floors - annexe 
312buildinginformation:numfloorsmainNumber of floors - main building 
313buildinginformation:numjuniorsuitesNumber of junior suites 
314buildinginformation:numroomsdoubleNumber of double rooms 
315buildinginformation:numroomssingleNumber of single rooms 
316buildinginformation:numroomstotalNumber of rooms (total) 
317buildinginformation:numstudiosNumber of studios 
318buildinginformation:numsuitesNumber of suites 
319buildinginformation:numvillasNumber of villas / houses 
320buildinginformation:yearconstructionYear of construction 
321buildinginformation:yearrenovationYear of renovation 
    
15 category Category Group of facts / Context
325category:officialCategory (official) 
326category:recommendedCategory (recommended) 
    
13 distance Distances Group of facts / Context
288distance:barspubsBars / pubs 
289distance:beachBeach 
290distance:busstationBus station 
291distance:citycentreCity centre 
292distance:crosscountryskiingCross-country skiing 
293distance:forestForest 
294distance:golfcourseGolf course 
295distance:lakeLake 
296distance:nightclubsDisco / club 
297distance:parkPark 
298distance:publictransportPublic transport 
299distance:restaurantsRestaurants 
300distance:riverRiver 
301distance:seaSea 
302distance:shoppingShopping 
303distance:skiareaSki area 
304distance:skiliftSki lift 
305distance:stationMetro / city rail station 
306distance:touristcentreTourist centre 
307distance:trainstationTrain station 
    
2 entertainment Entertainment Group of facts / Context
1entertainment:childcareChild care 
2entertainment:entertainmentEntertainment programme 
3entertainment:entertainmentadultsEntertainment programme (adults)  
4entertainment:entertainmentchildrenEntertainment programme (children)  
5entertainment:livemusicLive music 
7entertainment:miniclubMini club 
6entertainment:minidiscoMini disco 
    
3 facilities Facilities Group of facts / Context
8facilities:airconAir conditioning 
9facilities:auditoriumAuditorium 
10facilities:babysitterBabysitter 
11facilities:baggageroomBaggage room 
12facilities:balconyBalcony 
13facilities:banquethallBanquet hall 
14facilities:barBar 
15facilities:bicyclerentalBicycle hire 
16facilities:bicyclestorageroomBicycle storage room 
17facilities:bilingualstaffMulti-lingual staff 
18facilities:breakfastroomBreakfast room 
19facilities:businesscenterBusiness centre 
20facilities:cafeCafé 
22facilities:carparkCar park 
21facilities:carrentalCar hire 
23facilities:cashmachineCash machine 
24facilities:casinoCasino 
25facilities:checkinCheck-in/out 
26facilities:childrenspoolChildren's pool 
85facilities:cloakroomCloakroom 
27facilities:coinoperatedlaundryCoin-operated laundry 
28facilities:conferenceroomsConference room 
29facilities:congressfacilitiesCongress assistance 
30facilities:deckchairsSun loungers 
31facilities:discoDisco 
32facilities:dvdrentalDVD rental 
33facilities:elevatorsLift 
34facilities:exchangeofficeCurrency exchange 
35facilities:faxFax 
36facilities:fireplaceFireplace 
37facilities:flipchartFlip chart 
38facilities:footboyPorter 
322facilities:foyerFoyer 
39facilities:garageGarage 
40facilities:gardenGarden 
41facilities:golfdeskGolf desk 
42facilities:hairdresserHairdresser 
43facilities:indoorpoolIndoor swimming pool 
44facilities:internetaccessInternet access 
45facilities:laundryLaundry 
46facilities:libraryLibrary 
47facilities:medicalattendanceMedical assistance 
48facilities:newsstandNewspaper stand 
49facilities:nightclubNightclub 
50facilities:outdoorpoolOutdoor swimming pool 
51facilities:overheadprojectorOverhead projector 
52facilities:parasolsParasols 
53facilities:petsPets 
54facilities:photocopierPhotocopier 
55facilities:physicianHotel doctor 
56facilities:playgroundPlayground 
57facilities:playroomPlayroom 
58facilities:poolPool 
59facilities:poolbarPool bar 
60facilities:projectorProjector 
61facilities:pubPub 
62facilities:receptionReception 
63facilities:receptionareaLobby area 
64facilities:refectoryDining room 
65facilities:restaurantRestaurant 
66facilities:roomserviceRoom service 
67facilities:safeSafe 
68facilities:secretarialserviceSecretarial service 
69facilities:securityservice24-hour security 
70facilities:shopsShops 
71facilities:shuttleserviceHotel shuttle bus 
72facilities:smokedetectorSmoke detectors 
73facilities:snackbarSnack bar 
74facilities:solariumSolarium 
75facilities:souvenirshopSouvenir shop 
76facilities:sunterraceSun terrace 
77facilities:supermarketSupermarket 
78facilities:terraceTerrace 
79facilities:tourdeskTour desk 
80facilities:towelsBath towel 
81facilities:transferTransfer service 
82facilities:translatorTranslator 
83facilities:tvroomTV lounge 
84facilities:wakeupserviceWake-up service 
86facilities:waterslideWaterslide 
87facilities:wheelchairaccessibleDisability friendly 
88facilities:wifiWLAN 
    
5 location Location Group of facts / Context
89location:beachBeach 
90location:centrallysituatedCentral location 
323location:locatedonmainroadSituated on a main road 
91location:quietlysituatedQuiet location 
    
6 meals Meals Group of facts / Context
92meals:aiAll-inclusive 
93meals:alcoholicdrinksAlcoholic drinks 
94meals:allinclusivespecialAll-inclusive special 
95meals:bedandbreakfastBed and breakfast 
96meals:breakfastBreakfast 
97meals:brunchBrunch 
98meals:childrensmenuChildren's menus 
99meals:dietaryDietary cuisine 
100meals:dinnerDinner 
324meals:drinksincludedDrinks included 
101meals:fullboardFull board 
102meals:glutenfreeGluten-free meals 
103meals:halfboardHalf board 
104meals:internationalbrandsInternational brands 
105meals:lunchLunch 
106meals:minibarMinibar 
107meals:ownbrandHotel brands 
108meals:picnicPicnic 
109meals:roomserviceRoom service 
110meals:showcookingShow cooking 
111meals:snacksSnacks 
112meals:softdrinksNon-alcoholic drinks 
113meals:specialoffersSpecial offers 
114meals:vegetarianVegetarian dishes 
115meals:welcomedrinkWelcome drink 
    
7 misc Miscellaneous Group of facts / Context
116misc:carrentalCar hire 
    
16 objectinformation Property information Group of facts / Context
328objectinformation:addressAddress 
327objectinformation:chainHotel chain 
331objectinformation:emailEmail 
330objectinformation:faxFax 
329objectinformation:phoneTelephone 
332objectinformation:urlURL 
    
8 payment Payment methods Group of facts / Context
117payment:paymentPayment methods 
    
9 rooms Rooms Group of facts / Context
118rooms:adapterplugElectrical outlet adapter 
119rooms:additionalbedExtra bed 
120rooms:airconAir conditioning 
121rooms:alarmclockAlarm 
122rooms:backgroundmusicBackground music 
123rooms:balconyBalcony 
124rooms:bathrobeBathrobe 
125rooms:bathroomBathroom 
126rooms:bathtubBathtub 
127rooms:bedroomSeparate bedrooms 
128rooms:bidetBidet 
129rooms:carpetCarpeting 
130rooms:cdplayerCD player 
131rooms:childrensbedCot 
132rooms:choicepillowPillow selection 
133rooms:choicetowelTowel selection 
134rooms:cookerCooker 
135rooms:cosmeticsCosmetics 
136rooms:dishwasherDishwasher 
137rooms:doublebedDouble bed 
138rooms:dvdplayerDVD player 
139rooms:electricironIroning set 
140rooms:electricshaverElectric shaver 
141rooms:familyroomsFamily room 
142rooms:finalcleaningFinal cleaning 
143rooms:fridgeFridge 
144rooms:goodnightserviceGoodnight service 
145rooms:hairdryerHairdryer 
146rooms:heatingCentral heating 
147rooms:hifiHi-fi stereo 
148rooms:internetaccessInternet access 
149rooms:kingsizebedKing-size bed 
150rooms:kitchenKitchen 
151rooms:kitchenetteKitchenette 
152rooms:livingroomLiving room 
153rooms:loungeLounge 
154rooms:microwaveMicrowave 
156rooms:minibarMinibar 
155rooms:minifridgeMini fridge 
157rooms:newspaperDaily newspaper 
158rooms:nonsmokingNon-smoking room 
159rooms:phoneTelephone 
160rooms:phonebathroomTelephone in the bathroom 
161rooms:queensizebedQueen-size bed 
162rooms:radioRadio 
163rooms:safeSafe 
164rooms:seaviewSea view 
165rooms:shavingmirrorCosmetic mirror 
166rooms:showerShower 
167rooms:sizeApprox. size in m² 
168rooms:slippersSlippers 
169rooms:smokedetectorSmoke detectors 
170rooms:smokingSmoking rooms 
171rooms:sofabedSofa bed 
172rooms:teacoffeemakerTea/coffee maker 
173rooms:terraceTerrace 
174rooms:tiledTile flooring 
175rooms:trouserpressTrouser press 
176rooms:tvTV 
177rooms:ventilatorFan 
178rooms:videogamesVideo games 
179rooms:voltageVoltage 
180rooms:washingmachineWashing machine 
181rooms:welcomegiftWelcome gift 
182rooms:wheelchairaccessibleWheelchair accessible 
183rooms:wheelchairaccessiblebathroomWheelchair accessible bathroom 
184rooms:whirlpoolHot tub 
185rooms:wifiWLAN 
186rooms:writingdeskDesk 
    
10 spa Spa facilities Group of facts / Context
187spa:acupunctureAcupuncture 
188spa:antiagingAnti-aging 
189spa:ayurvedaAyurveda 
190spa:beautyfarmBeauty farm 
191spa:beautysalonBeauty salon 
192spa:hammamHammam 
193spa:healthresortHealth resort 
194spa:hydrotherapyHydro therapy 
195spa:massageMassage 
196spa:saunaSauna 
197spa:spaSpa 
198spa:steambathSteam room 
199spa:thalassoThalasso 
200spa:treatmentsTreatments 
201spa:whirlpoolHot tub 
    
11 sports Sport Group of facts / Context
202sports:aerobicsAerobics 
203sports:aquaaerobicsAqua aerobics 
204sports:aquafitnessAqua fitness 
205sports:archeryArchery 
206sports:badmintonBadminton 
207sports:bananaboatBanana boating 
208sports:basketballBasketball 
209sports:beachvolleyballBeach volleyball 
210sports:bikingBicycle / mountain bike 
211sports:billiardBilliards 
212sports:bocciaBocce 
213sports:bowlingBowling 
214sports:canoeCanoeing 
215sports:catamaranCatamaran boating 
216sports:curlingCurling 
217sports:dartsDarts 
218sports:fishingFishing 
219sports:golfGolf 
220sports:gymGym 
221sports:gymnasticsGymnastics 
222sports:handballHandball 
223sports:horsebackridingHorse riding 
224sports:jetskiJet skiing 
225sports:kayakKayaking 
226sports:kitesurfingKite surfing 
227sports:miniaturegolfMinigolf 
228sports:motorboatMotor boating 
229sports:nordicwalkingNordic walking 
230sports:paddletennisPaddle tennis 
231sports:paraglidingParagliding 
232sports:pedalboatPedal boating 
233sports:puttinggreenPutting green 
234sports:safariSafari 
235sports:sailingSailing 
236sports:scubadivingDiving 
238sports:skiingSkiing 
237sports:skipassSki pass 
239sports:sleighingIce skating 
240sports:snorkellingSnorkelling 
241sports:snowboardingSnowboarding 
242sports:squashSquash 
243sports:surfingSurfing 
244sports:tabletennisTable tennis 
245sports:tennisTennis 
246sports:volleyballVolleyball 
247sports:waterskiWaterskiing 
248sports:watersportsWater sports 
249sports:windsurfingWindsurfing 
250sports:yogaYoga 
    
12 type Hotel type Group of facts / Context
251type:adultsonlyAdults only 
252type:airporthotelAirport hotel 
253type:apartmenthotelApartment hotel 
254type:appartmentHoliday apartments 
255type:beachhotelBeach hotel 
256type:bedandbreakfastB & B 
257type:boutiquehotelBoutique hotel 
258type:bungalowcomplexBungalow complex 
259type:businesshotelBusiness hotel 
260type:campgroundCampsite 
261type:casinoresortCasino resort 
262type:charmhotelCharming hotel 
263type:cityhotelCity hotel 
264type:clubresortClub resort 
265type:conferencehotelConference hotel 
266type:cruiserCruise ship 
267type:cyclistshotelBike-friendly hotel 
268type:ecohotelEco hotel 
269type:familyfriendlyhotelFamily-friendly hotel 
270type:fincaFinca 
271type:floatinghotelFloating hotel 
272type:gayhotelGay hotel 
273type:golfhotelGolf hotel 
274type:guesthouseGuest house 
275type:hikershotelHiking hotel 
276type:historicalhotelHistorical hotel 
277type:hostelYouth hostel 
278type:lodgeLodge 
279type:mountainhotelMountain hotel 
280type:mountainlodgeMountain lodge 
281type:residenceResidence 
282type:ruralhouseCountry house 
283type:selfsupporterSelf-sufficient accommodation 
284type:skihotelSki hotel 
285type:spacomplexSpa complex 
286type:villaVillas 
287type:villageVillage 

2. Attributes

CodeNameTermComment
63addresslinesaddress lines 
1aiall-inclusive 
45airconair conditioning 
2alacarteà la carterestaurant, dinner
3allowedallowed 
4amexAmerican Expresspayment methods
5amexcoAmerican Expresspayment methods
6attendedattendedcar park
7buffetbuffet 
8cablecableTV
9cashcarddebit cardpayment methods
48centralcentral 
60citynameplace name 
10continentalcontinentalbreakfast
62countrycountry 
11deGermanmulti-lingual staff
12dinersDiners Clubpayment methods
13directdialdirect dialtelephone
14directlydirectbeach
15distancedistance 
16earlyriserearly birdbreakfast
17enEnglishmulti-lingual staff
18englishEnglishbreakfast
19flatscreenflat screenTV
20forafeefor a fee 
66frFrenchmulti-lingual staff
21freeofchargefree of charge 
51freshwaterfreshwater 
22gentlyslopinggentle slopebeach
53heatedheatedpool
46highchairhighchair 
47individualindividualheating
42jcbJCBpayment methods
23lateriserlate sleeperbreakfast
24mastercardMasterCardpayment methods
25menumenu 
26nearbynearbybeach
27nonsmokingnon-smoking 
49numbernumber 
28onrequeston request 
29operatinghoursopening hours 
30payperviewpay per viewTV
54pebblespebblybeach
65poboxpost box 
61postalcodepostcode 
31prevalentcreditcardsmajor credit cardspayment methods
56ratingrating 
32robinsoncardRobinson Cardpayment methods
55rockyrockybeach
52saltwatersaltwaterpool
33sandysandybeach
34satsatelliteTV
43satcablesatellite/cableTV
37separateseparatebedroom
35sepbypromenadeseparated by promenadebeach
36sepbystreetseparated by streetbeach
38sidewayssidesea view
44sizesize 
57smokingsmoking 
58streetstreet 
59streetnumberhouse number 
39thirdpartyoperatorthird party operator 
40tuicardTui Cardpayment methods
64valuevalue 
41visaVISApayment methods
67warmwarm 
50yearyear 

3. Units

NameTermComment
hourhours 
metermetres 
sqmsquare metres 

Gesellschaft zur Entwicklung und Vermarktung interaktiver Tourismusanwendungen mbH

www.giata.de