Static Data v.1.5 1-1-1
Static Data v.1.5 1-1-1
Specifications
Page 1 of 67
Contents
1 Change History ..................................................................................................................... 4
2 Introduction.......................................................................................................................... 5
3 Data File Description............................................................................................................. 5
4 Acquiring Static Data (JSON and Txt format) ........................................................................ 6
5 Static Data ............................................................................................................................ 6
5.1 Static Data via Amazon S3 .......................................................................................... 6
5.2 Version 4 .................................................................................................................... 7
5.3 Static Data via API .................................................................................................... 10
5.4 Get Countries ........................................................................................................... 10
5.5 Get Provinces ........................................................................................................... 11
5.6 Get Locations in Province ......................................................................................... 13
5.7 GetEstablishments ................................................................................................... 14
5.8 GetEstablishment ..................................................................................................... 21
5.9 GetEstablishmentDiff ............................................................................................... 28
5.10 GetFacilities ........................................................................................................... 38
5.11 GetErrataCategories ............................................................................................... 41
5.12 GetSupplierBoardTypes ......................................................................................... 45
5.13 GetBoardTypeInclusions ........................................................................................ 48
6 Static Data Files Overview (Live) ......................................................................................... 52
6.1 Live Inventory Contents (Countries)............................................................................. 52
6.2 Live Inventory Contents (Provinces)............................................................................. 52
6.3 Live Inventory Contents (Locations) ............................................................................. 53
6.4 Live Inventory Contents (Establishments) .................................................................... 53
6.5 Live Inventory Contents (Establishment) ..................................................................... 54
6.6 Live Inventory Contents (Establishment Room Types) ................................................. 55
6.7 Live Inventory Contents (Establishment Images) ......................................................... 55
6.8 Live Inventory Contents (Establishment Facilities) ....................................................... 56
6.9 Live Inventory Contents (Facilities) .............................................................................. 57
6.10 Live Inventory Contents (Establishment Extras) ......................................................... 57
6.11 Live Inventory Contents (Establishment Extras Options) ........................................... 58
Page 2 of 67
6.12 Live Inventory Contents (Errata Categories)............................................................... 58
7 Static Data Files Overview (Test) ........................................................................................ 59
7.1 Test Inventory Contents (Countries) ............................................................................ 59
7.2 Test Inventory Contents (Provinces) ............................................................................ 60
7.3 Test Inventory Contents (Locations) ............................................................................ 60
7.4 Test Inventory Contents (Establishments) ................................................................... 61
7.5 Test Inventory Contents (Establishment) ..................................................................... 62
7.6 Test Inventory Contents (Establishment Room Types) ................................................. 63
7.7 Test Inventory Contents (Establishment Images) ......................................................... 63
7.8 Test Inventory Contents (Establishment Facilities) ...................................................... 64
7.9 Test Inventory Contents (Facilities) .............................................................................. 65
7.10 Test Inventory Contents (Establishment Extras) ........................................................ 65
7.11 Test Inventory Contents (Establishment Extras Options) ........................................... 66
7.12 Test Inventory Contents (Errata Categories) .............................................................. 66
Page 3 of 67
1 Change History
Page 4 of 67
2 Introduction
As Yalago’s Clients, you will be given access to Yalago’s Content Inventory containing all
establishments’ static data. You will be able to obtain the inventory through FTP (File Transfer
Protocol) and through the API (Application Programming Interface).
In order to acquire the content inventory through API, you need to get in touched with API
support team to acquire your credentials. You’ll be given unique set of credentials at the start of the
integration process to access the Test Environment, after the certification process same credentials
will be activated to access Live environment.
Obtaining the content inventory through FTP will require you to download the Data files
through the links that will be provided in this document.
The API content should be updated at least once a week to get more accurate responses
from our database. Our Static data are available in JSON and Txt format and can be loaded in Live
and Test environments.
Each file described in this document has a file properties section, where you can find a list of
Field Names, Maximum Sizes, Field Types, Descriptions and Linked Files.
Page 5 of 67
4 Acquiring Static Data (JSON and Txt format)
You can download the static data from the links below. The files are available in JSON and Text
format.
InventoryV4json.zip to download the complete product of our LIVE environment in JSON
format
InventoryV4txt.zip to download the complete product of our LIVE environment in csv
format
TestInventoryV4json.zip to download the complete product of our TEST environment in
JSON format
TestInventoryV4txt.zip to download the complete product of our TEST environment in csv
format
5 Static Data
The first step of the integration is to download the static data files. This static data download can be
done in two different ways, through Amazon S3 service or via API.
You will need to map the properties in these files to your own search areas, in order to search
against our, Province, Location, and Establishment identifiers:
Page 6 of 67
5.2 Version 4
Version 4 is in json and txt format.
Please note that extra properties may be added to the existing structure at any time without notice.
Root object
Property Type Comment
Countries Array of Country
Establishments Array of Establishment
Facilities Array of Facility
Country
Property Type Comment
CountryCode String Two letters internal Country code
CountryId Integer Internal Country ID code
Provinces Array of Province
Province
Property Type Comment
ProvinceId Integer Used for province-level availability searches
Title String The name of the province
Locations Array of Location
Location
Property Type Comment
LocationId Integer Used for location-level availability searches
Title String The name of the location
Facility
Property Type Comment
FacilityId Integer Used to identify a facility
Title LocalizableString The name of the facility
Page 7 of 67
Establishment
Property Type Comment
EstablishmentId Integer Yalago establishment code. Used for
detailed availability searches and
reservations
Title String Name of the establishment
AccommodationTypeId Integer See accommodation types table
Rating Integer Numeric rating of the hotel
RatingTypeId Integer See rating types table
Address String The hotel's address (excluding postal
code)
PostalCode String The hotel's postal code
PhoneNumer String The hotel's main contact phone
number
FaxNumber String The hotel’s fax number, if it has one
Email String The hotel’s email address
Longitude Decimal The hotel's geographic longitude in
degrees (°)
Latitude Decimal The hotel's geographic latitude in
degrees (°)
GeocodeAccuracy Integer Indicates the known accuracy of the
latitude and longitude
LocationId Integer The ID of the location within the
Province that the establishment is in
Description LocalizableString A longer description of the hotel
Summary LocalizableString A summary of the hotel in 1024
characters or less
Images Array of EstablishmentImage The images for the hotel
RoomTypes Array of RoomType The room types in this hotel
Facilities Array of EstablishmentFacility The facilities available in this hotel
EstablishmentImage
Property Type Comment
EstablishmentImageId String Internal ID code for the image
Url String URL where the image is located
Description String Image description
Page 8 of 67
RoomTypes
Property Type Comment
RoomCode String
Title LocalizableString
Description LocalizableString
ImageUrl String
EstablishmentFacility
Property Type Comment
FacilityId Integer
Description LocalizableString
LocalizableString
This is a dictionary of text using a language code as a key.
Page 9 of 67
5.3 Static Data via API
Service Address
Response Fields
Page 10 of 67
"CountryCode": "GB",
"Title": "United Kingdom"
}
]
}
Request Fields
Page 11 of 67
Example Request in XML
<GetProvincesRequest>
<CountryId>3557</CountryId>
</GetProvincesRequest>
Response Fields
Page 12 of 67
<Province>
<ProvinceId>167056</ProvinceId>
<Title>Cumbria</Title>
</Province>
</Provinces>
</GetProvincesResponse>
Request Fields
Example Requests
{
"CountryId": 3557,
"ProvinceId": 74304
}
<GetLocationsRequest>
<CountryId>3557</CountryId>
<ProvinceId>74304</ProvinceId>
</GetLocationsRequest>
Response Fields
Example Responses
{
"Locations": [
{
"LocationId": 249994,
"Title": "Battersea"
Copyright © 2015 – Yalago
No part of this document may be reproduced in any way without the prior agreement and written permission of Yalago
Page 13 of 67
},
{
"LocationId": 249995,
"Title": "Bayswater"
},
{
"LocationId": 1019197,
"Title": "Kingston upon Thames"
},
]
}
<GetLocationsResponse>
<Locations>
<Location>
<LocationId>249994</LocationId>
<Title>Battersea</Title>
</Location>
<Location>
<LocationId>249995</LocationId>
<Title>Bayswater</Title>
</Location>
<Location>
<LocationId>249998</LocationId>
<Title>Chelsea</Title>
</Location>
</Locations>
</GetLocationsResponse>
5.7 GetEstablishments
Path: /hotels/Inventory/GetEstablishments
Request Fields
Page 14 of 67
Example Requests
{
"CountryId": 3557,
"ProvinceId": 74304,
"LocationId": 1019197,
"Languages": ["en","es"]
}
<GetEstablishmentsRequest>
<CountryId>3557</CountryId>
<ProvinceId>74304</ProvinceId>
<LocationId>1019197</LocationId>
<Languages>
<Code>en</Code>
<Code>es</Code>
</Languages>
</GetEstablishmentsRequest>
Response Fields
Address String
PostalCode String
PhoneNumber String
FaxNumber String
Email String
Page 15 of 67
Longitude Decimal
Latitude Decimal
LocationId Integer
RoomTypes List of
ROOMTYPE
Page 16 of 67
Example Response in JSON
{
"Establishments": [
{
"EstablishmentId": 7414065,
"Title": "Dnata Plaza",
"AcommodationTypeId": 1,
"Rating": 3,
"RatingTypeId": 1,
"Address": "147 London Road, Kingston upon Thames, Surrey",
"PostalCode": "KT2 6NH",
"PhoneNumber": "02089747200",
"FaxNumber": "",
"Email": "[email protected]",
"Longitude": -0.29181,
"Latitude": 51.41101,
"GeocodeAccuracy": 9,
"LocationId": 1019197,
"Description": {
"en": "<p> This is a lovely hotel in the heart of
Kingston. Facilities include… Nearby sights are…</p>",
"es": "<p>Este es un hotel de prueba.</p>"
},
"Summary": {
"en": "This is a lovely hotel in the heart of Kingston",
"es": "Este es un hotel de prueba."
},
"Images": [
{
"EstablishmentImageId": "7414065-0",
"Url":
"https://pp.images.dnatatravel.com/ei/7/4/1/4/0/6/5/0.jpg",
"Description": null
}
],
"RoomTypes": [
{
"Title": {
"en": "Single",
"fr": "Unique"
},
"Description": {
"en": "A Single Room",
"fr": "Une chambre simple"
},
ImageUrl: "http://someurl.com/path"
},
{
"Title": {
"en": "Double",
"fr": "Double"
},
"Description": {
Copyright © 2015 – Yalago
No part of this document may be reproduced in any way without the prior agreement and written permission of Yalago
Page 17 of 67
"en": "A Single Room",
"fr": "Une chambre double"
},
ImageUrl: "http://someurl.com/path"
}
],
"Facilities": [
"FacilityId": 123,
"Description": {
"en" : "Late checkout 11am",
"fr" : "Départ tardif 11h00"
}
]
}
]
}
Page 18 of 67
villas; choices of restaurant, lounge and bars; and a
spa.</p></Text>
</Item>
</Description>
<Summary>
<Item>
<Code>en</Code>
<Text>An urban retreat in an estate with manicured
gardens, polo grounds, stables and a riding school. Approximately
20 minutes from Dubai downtown and Dubai International Airport.
Features 38 keys of rooms, suites and villas; choices of
restaurant, lounge and bars; and a spa.</Text>
</Item>
<Item>
<Code>es</Code>
<Text>An urban retreat in an estate with manicured
gardens, polo grounds, stables and a riding school. Approximately
20 minutes from Dubai downtown and Dubai International Airport.
Features 38 keys of rooms, suites and villas; choices of
restaurant, lounge and bars; and a spa.</Text>
</Item>
</Summary>
<Images>
<EstablishmentImage>
<EstablishmentImageId>1870407-0</EstablishmentImageId>
<Url>https://pp.images.dnatatravel.com/ei/1/8/7/0/4/0/7/0.jpg</Url
>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>1870407-1</EstablishmentImageId>
<Url>https://pp.images.dnatatravel.com/ei/1/8/7/0/4/0/7/1.jpg</Url
>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>1870407-2</EstablishmentImageId>
<Url>https://pp.images.dnatatravel.com/ei/1/8/7/0/4/0/7/2.jpg</Url
>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>1870407-4</EstablishmentImageId>
<Url>https://pp.images.dnatatravel.com/ei/1/8/7/0/4/0/7/4.jpg</Url
>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>1870407-5</EstablishmentImageId>
<Url>https://pp.images.dnatatravel.com/ei/1/8/7/0/4/0/7/5.jpg</Url
>
</EstablishmentImage>
<EstablishmentImage>
Copyright © 2015 – Yalago
No part of this document may be reproduced in any way without the prior agreement and written permission of Yalago
Page 19 of 67
<EstablishmentImageId>1870407-7</EstablishmentImageId>
<Url>https://pp.images.dnatatravel.com/ei/1/8/7/0/4/0/7/7.jpg</Url
>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>1870407-8</EstablishmentImageId>
<Url>https://pp.images.dnatatravel.com/ei/1/8/7/0/4/0/7/8.jpg</Url
>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>1870407-9</EstablishmentImageId>
<Url>https://pp.images.dnatatravel.com/ei/1/8/7/0/4/0/7/9.jpg</Url
>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>1870407-10</EstablishmentImageId>
<Url>https://pp.images.dnatatravel.com/ei/1/8/7/0/4/0/7/10.jpg</Ur
l>
</EstablishmentImage>
</Images>
<RoomTypes />
<Facilities>
<EstablishmentFacility>
<FacilityId>1</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>3</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>4</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>14</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>25</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>30</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>31</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>94</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>97</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
Copyright © 2015 – Yalago
No part of this document may be reproduced in any way without the prior agreement and written permission of Yalago
Page 20 of 67
<FacilityId>100</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>104</FacilityId>
</EstablishmentFacility>
</Facilities>
</Establishment>
</Establishments>
</GetEstablishmentsResponse>
5.8 GetEstablishment
Path: hotels/Inventory/GetEstablishment
Request Fields
Example Request
{
"EstablishmentId": 7414065,
"Languages": ["en","es"]
}
<GetEstablishmentRequest>
<EstablishmentId>1389585</EstablishmentId>
<Languages>
<Code>en</Code>
<Code>es</Code>
</Languages>
</GetEstablishmentRequest>
Page 21 of 67
Response Fields
Address String
PostalCode String
PhoneNumber String
FaxNumber String
Email String
Longitude Decimal
Latitude Decimal
LocationId Integer
RoomTypes List of
ROOMTYPE
Page 22 of 67
IMAGE EstablishmentImageId Integer
Page 23 of 67
"es": "Este es un hotel de prueba."
},
"Images": [
{
"EstablishmentImageId": "7414065-0",
"Url": "https://pp.images.dnatatravel.com/ei/7/4/1/4/0/6/5/0.jpg",
"Description": null
}
],
"RoomTypes": [
{
"Title": {
"en": "Single",
"fr": "Unique"
},
"Description": {
"en": "A Single Room",
"fr": "Une chambre simple"
},
ImageUrl: "http://someurl.com/path"
},
{
"Title": {
"en": "Double",
"fr": "Double"
},
"Description": {
"en": "A Single Room",
"fr": "Une chambre double"
},
ImageUrl: "http://someurl.com/path"
}
],
"Facilities": [
"FacilityId": 123,
"Description": {
"en" : "Late checkout 11am",
"fr" : "Départ tardif 11h00"
}
}
Page 24 of 67
Example Response in XML
<GetEstablishmentResponse>
<Establishment>
<EstablishmentId>1389585</EstablishmentId>
<Title>Mountview Hotel</Title>
<AcommodationTypeId>1</AcommodationTypeId>
<Rating>2</Rating>
<RatingTypeId>1</RatingTypeId>
<Address>St John's Road, St Helier, Jersey,
Mountview</Address>
<PostalCode>JE2 3LD</PostalCode>
<PhoneNumber>887666</PhoneNumber>
<FaxNumber />
<Email>[email protected]</Email>
<Longitude>-2.109900</Longitude>
<Latitude>49.202200</Latitude>
<GeocodeAccuracy>8</GeocodeAccuracy>
<LocationId>504956</LocationId>
<Description>
<Item>
<Code>en</Code>
<Text>Just a short walk from St Helier waterfront, The
Mountview Hotel offers en suite rooms with free limited private
parking, within walking distance of the ferry port. All rooms have
en suite facilities and free Wi-Fi access. Rooms also feature tea
and coffee making facilities, a TV, hairdryer and safe. A
traditional home-cooked breakfast is served. Guests of the
Mountview have free use of the indoor heated swimming pool at the
Hotel de Normandie. The Mountview Hotel is a short ferry ride to
Elizabeth Castle, and there are a number of restaurants and cafes
within walking distance. Jersey Airport is 15 minutes’ drive
away.<br/><br/></Text>
</Item>
<Item>
<Code>es</Code>
<Text>Just a short walk from St Helier waterfront, The
Mountview Hotel offers en suite rooms with free limited private
parking, within walking distance of the ferry port. All rooms have
en suite facilities and free Wi-Fi access. Rooms also feature tea
and coffee making facilities, a TV, hairdryer and safe. A
traditional home-cooked breakfast is served. Guests of the
Mountview have free use of the indoor heated swimming pool at the
Hotel de Normandie. The Mountview Hotel is a short ferry ride to
Elizabeth Castle, and there are a number of restaurants and cafes
within walking distance. Jersey Airport is 15 minutes’ drive
away.<br/><br/></Text>
</Item>
</Description>
<Summary>
<Item>
<Code>en</Code>
<Text>Just a short walk from St Helier waterfront, The
Mountview Hotel offers en suite rooms with free limited private
Copyright © 2015 – Yalago
No part of this document may be reproduced in any way without the prior agreement and written permission of Yalago
Page 25 of 67
parking, within walking distance of the ferry port. All rooms have
en suite facilities and free Wi-Fi access. Rooms also feature tea
and coffee making facilities, a TV, hairdryer and safe. A
traditional home-cooked breakfast is served. Guests of the
Mountview have free use of the indoor heated swimming pool at the
Hotel de Normandie. The Mountview Hotel is a short ferry ride to
Elizabeth Castle, and there are a number of restaurants and cafes
within walking distance. Jersey Airport is 15 minutes’ drive
away.</Text>
</Item>
<Item>
<Code>es</Code>
<Text>Just a short walk from St Helier waterfront, The
Mountview Hotel offers en suite rooms with free limited private
parking, within walking distance of the ferry port. All rooms have
en suite facilities and free Wi-Fi access. Rooms also feature tea
and coffee making facilities, a TV, hairdryer and safe. A
traditional home-cooked breakfast is served. Guests of the
Mountview have free use of the indoor heated swimming pool at the
Hotel de Normandie. The Mountview Hotel is a short ferry ride to
Elizabeth Castle, and there are a number of restaurants and cafes
within walking distance. Jersey Airport is 15 minutes’ drive
away.</Text>
</Item>
</Summary>
<Images>
<EstablishmentImage>
<EstablishmentImageId>1389585-0</EstablishmentImageId>
<Url>https://pp.images.dnatatravel.com/ei/1/3/8/9/5/8/5/0.jpg</Url
>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>1389585-1</EstablishmentImageId>
<Url>https://pp.images.dnatatravel.com/ei/1/3/8/9/5/8/5/1.jpg</Url
>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>1389585-9</EstablishmentImageId>
<Url>https://pp.images.dnatatravel.com/ei/1/3/8/9/5/8/5/9.jpg</Url
>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>1389585-10</EstablishmentImageId>
<Url>https://pp.images.dnatatravel.com/ei/1/3/8/9/5/8/5/10.jpg</Ur
l>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>1389585-11</EstablishmentImageId>
Page 26 of 67
<Url>https://pp.images.dnatatravel.com/ei/1/3/8/9/5/8/5/11.jpg</Ur
l>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>1389585-12</EstablishmentImageId>
<Url>https://pp.images.dnatatravel.com/ei/1/3/8/9/5/8/5/12.jpg</Ur
l>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>1389585-13</EstablishmentImageId>
<Url>https://pp.images.dnatatravel.com/ei/1/3/8/9/5/8/5/13.jpg</Ur
l>
</EstablishmentImage>
</Images>
<RoomTypes />
<Facilities>
<EstablishmentFacility>
<FacilityId>1</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>3</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>4</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>40</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>62</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>71</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>77</FacilityId>
</EstablishmentFacility>
</Facilities>
</Establishment>
</GetEstablishmentResponse>
Page 27 of 67
5.9 GetEstablishmentDiff
This method can be used to get a list of which hotels have changed / been removed since a
particular point in time.
Path: /hotels/Inventory/GetEstablishmentDiff
Request Fields
Example Requests
{
"UpdatesAfter": "2020-01-22T05:00:00Z",
"Languages": ["en"]
}
<GetEstablishmentDiffRequest>
<UpdatesAfter>2020-01-22T01:00:00Z</UpdatesAfter>
<Languages>
<Code>en</Code>
</Languages>
</GetEstablishmentDiffRequest>
Response Fields
Page 28 of 67
Example Response in JSON
{
"Deleted": [],
"Establishments": [
{
"EstablishmentId": 115343,
"Title": "Apartamentos Las Faluas",
"AcommodationTypeId": 2,
"Rating": 2,
"RatingTypeId": 2,
"Address": "Avenida Tenerife Nº 9, Playa del Inglés",
"PostalCode": "35100",
"PhoneNumber": "928777164",
"FaxNumber": "928765263",
"Email": "[email protected]",
"Longitude": -15.5679,
"Latitude": 27.7621,
"GeocodeAccuracy": 9,
"LocationId": 218810,
"Description": {
"en": "Situated a short distance from the seafront
promenade, within walking distance of Maspaloma's extensive
stretch of sand dunes, these well-equipped central apartments are
a great base for your holiday.<br/>The property comprises 4
independent buildings. Each unit has a twin bedroom, a small
living area with sofa bed, a kitchenette with fridge and 2
electric rings, an en suite bathroom and a terrace or
balcony<br/>The complex has a large central swimming pool, with a
separate pool for kids, a large sun terrace, a Paddle court, pool
tables, and a restaurant-cafeteria with terrace. Bed and breakfast
and half board are also an option.<br/>Playa del Ingles is the
largest tourist resort on the island and offers a wide range of
bars, clubs and restaurants and leisure
activities.<br/>Apartments: 198 <br/>Languages spoken: Spanish,
English, German, Italian<br/>Hotel does not accept complains that
have not been reported during the stay in written
form.<br/><br/>From 01/05/20 till 15/07/20 Meals will be served at
Restaurant in Maritim Playa.<br/>Dinner will be \"a la carta\""
},
"Summary": {
"en": "Situated a short distance from the seafront
promenade, within walking distance of Maspaloma's extensive
stretch of sand dunes, these well-equipped central apartments are
a great base for your holiday.\r\nThe property comprises 4
independent buildings. Each unit has a twin bedroom, a small
living area with sofa bed, a kitchenette with fridge and 2
electric rings, an en suite bathroom and a terrace or
balcony\r\nThe complex has a large central swimming pool, with a
separate pool for kids, a large sun terrace, a Paddle court, pool
tables, and a restaurant-cafeteria with terrace. Bed and breakfast
and half board are also an option.\r\nPlaya del Ingles is the
largest tourist resort on the island and offers a wide range of
bars, clubs and restaurants and leisure activities.\r\n\r\nHotel
Copyright © 2015 – Yalago
No part of this document may be reproduced in any way without the prior agreement and written permission of Yalago
Page 29 of 67
does not accept complains that have not been reported during the
stay in written form.\r\nFrom 01/05/20 till 15/07/20 Meals will be
served at Restaurant in Maritim Playa.\r\nDinner will be \"a la
carta\""
},
"Images": [
{
"EstablishmentImageId": "115343-0",
"Url":
"https://images.dnatatravel.com/ei/1/1/5/3/4/3/0.jpg",
"Description": null
},
{
"EstablishmentImageId": "115343-1",
"Url":
"https://images.dnatatravel.com/ei/1/1/5/3/4/3/1.jpg",
"Description": null
},
{
"EstablishmentImageId": "115343-2",
"Url":
"https://images.dnatatravel.com/ei/1/1/5/3/4/3/2.jpg",
"Description": null
}
],
"RoomTypes": [],
"Facilities": [
{
"FacilityId": 29,
"Description": null
}
]
},
{
"EstablishmentId": 1437082,
"Title": "Falkensteiner Bratislava Hotel",
"AcommodationTypeId": 1,
"Rating": 4,
"RatingTypeId": 1,
"Address": "PILARIKOVA STREET, 5 BRATISLAVA 811 03",
"PostalCode": "",
"PhoneNumber": "+421 2 59236100",
"FaxNumber": "",
"Email": "",
"Longitude": 17.1036,
"Latitude": 48.146,
"GeocodeAccuracy": 8,
"LocationId": 249766,
"Description": {
"en": "<p>This 4 star hotel is located in the city centre
of Bratislava and was established in 2009. It is close to the city
center and the nearest station is Bratislava hlavna stanica. The
Hotel has a restaurant, a bar, a conference room and a fitness
Page 30 of 67
centre/gym. All 162 rooms are equipped with minibar, hairdryer,
safe, ironing set and air conditioning.</p>"
},
"Summary": {
"en": "This 4 star hotel is located in the city centre of
Bratislava and was established in 2009. It is close to the city
center and the nearest station is Bratislava hlavna stanica. The
Hotel has a restaurant, a bar, a conference room and a fitness
centre/gym. All 162 rooms are equipped with minibar, hairdryer,
safe, ironing set and air conditioning."
},
"Images": [
{
"EstablishmentImageId": "1437082-0",
"Url":
"https://images.dnatatravel.com/ei/1/4/3/7/0/8/2/0.jpg",
"Description": null
},
{
"EstablishmentImageId": "1437082-1",
"Url":
"https://images.dnatatravel.com/ei/1/4/3/7/0/8/2/1.jpg",
"Description": null
},
{
"EstablishmentImageId": "1437082-2",
"Url":
"https://images.dnatatravel.com/ei/1/4/3/7/0/8/2/2.jpg",
"Description": null
}
],
"RoomTypes": [],
"Facilities": [
{
"FacilityId": 1,
"Description": null
},
{
"FacilityId": 3,
"Description": null
},
{
"FacilityId": 4,
"Description": null
},
{
"FacilityId": 30,
"Description": null
},
{
"FacilityId": 104,
"Description": null
}
]
Copyright © 2015 – Yalago
No part of this document may be reproduced in any way without the prior agreement and written permission of Yalago
Page 31 of 67
},
{
"EstablishmentId": 3088147,
"Title": "Apartamentos Surfing Colors",
"AcommodationTypeId": 2,
"Rating": 3,
"RatingTypeId": 1,
"Address": "Calle Pejin 2, Corralejo, La Oliva",
"PostalCode": "35660",
"PhoneNumber": "928535094",
"FaxNumber": "",
"Email": "[email protected]",
"Longitude": -13.8699,
"Latitude": 28.7421,
"GeocodeAccuracy": 9,
"LocationId": 218780,
"Description": {
"en": "<p>Apartamentos Surfing Colors is located near the
beach in La Oliva's Corralejo neighborhood and close to Corralejo
Dunes Natural Park. Additional area points of interest include
Corralejo Beach. Property Features. </p><p>Recreational amenities
include an outdoor pool and a children's pool. Additional property
amenities include an elevator (lift). Guestrooms. All guestrooms
at Apartamentos Surfing Colors feature windows that open.
Furnished lanais offer city, sea, or pool views. </p><p>At this 3-
star apartment, accommodations include kitchens with microwaves,
refrigerators, and cookware/dishes/utensils. Bathrooms feature
bathtubs or showers. Guestrooms offer desks. 19-inch flat-panel
televisions have satellite channels. Housekeeping is available
five days a week.</p> ."
},
"Summary": {
"en": "Apartamentos Surfing Colors is located near the
beach in La Oliva's Corralejo neighborhood and close to Corralejo
Dunes Natural Park. Additional area points of interest include
Corralejo Beach. Property Features. Recreational amenities include
an outdoor pool and a children's pool. Additional property
amenities include an elevator (lift). Guestrooms. All guestrooms
at Apartamentos Surfing Colors feature windows that open.
Furnished lanais offer city, sea, or pool views. At this 3-star
apartment, accommodations include kitchens with microwaves,
refrigerators, and cookware/dishes/utensils. Bathrooms feature
bathtubs or showers. Guestrooms offer desks. 19-inch flat-panel
televisions have satellite channels. Housekeeping is available
three days a week."
},
"Images": [
{
"EstablishmentImageId": "3088147-0",
"Url":
"https://images.dnatatravel.com/ei/3/0/8/8/1/4/7/0.jpg",
"Description": null
},
{
Copyright © 2015 – Yalago
No part of this document may be reproduced in any way without the prior agreement and written permission of Yalago
Page 32 of 67
"EstablishmentImageId": "3088147-1",
"Url":
"https://images.dnatatravel.com/ei/3/0/8/8/1/4/7/1.jpg",
"Description": null
},
{
"EstablishmentImageId": "3088147-2",
"Url":
"https://images.dnatatravel.com/ei/3/0/8/8/1/4/7/2.jpg",
"Description": null
}
],
"RoomTypes": [],
"Facilities": [
{
"FacilityId": 3,
"Description": null
},
{
"FacilityId": 4,
"Description": null
}
]
}
]
}
Page 33 of 67
a great base for your holiday.<br/>The property comprises 4
independent buildings. Each unit has a twin bedroom, a small
living area with sofa bed, a kitchenette with fridge and 2
electric rings, an en suite bathroom and a terrace or
balcony<br/>The complex has a large central swimming pool,
with a separate pool for kids, a large sun terrace, a Paddle
court, pool tables, and a restaurant-cafeteria with terrace. Bed
and breakfast and half board are also an option.<br/>Playa
del Ingles is the largest tourist resort on the island and offers
a wide range of bars, clubs and restaurants and leisure
activities.<br/>Apartments: 198 <br/>Languages spoken:
Spanish, English, German, Italian<br/>Hotel does not accept
complains that have not been reported during the stay in written
form.<br/><br/>From 01/05/20 till 15/07/20 Meals will
be served at Restaurant in Maritim Playa.<br/>Dinner will be
"a la carta"</Text>
</Item>
</Description>
<Summary>
<Item>
<Code>en</Code>
<Text>Situated a short distance from the seafront
promenade, within walking distance of Maspaloma's extensive
stretch of sand dunes, these well-equipped central apartments are
a great base for your holiday.
The property comprises 4 independent buildings. Each unit has a
twin bedroom, a small living area with sofa bed, a kitchenette
with fridge and 2 electric rings, an en suite bathroom and a
terrace or balcony
The complex has a large central swimming pool, with a separate
pool for kids, a large sun terrace, a Paddle court, pool tables,
and a restaurant-cafeteria with terrace. Bed and breakfast and
half board are also an option.
Playa del Ingles is the largest tourist resort on the island and
offers a wide range of bars, clubs and restaurants and leisure
activities.
Hotel does not accept complains that have not been reported during
the stay in written form.
From 01/05/20 till 15/07/20 Meals will be served at Restaurant in
Maritim Playa.
Dinner will be "a la carta"</Text>
</Item>
</Summary>
<Images>
<EstablishmentImage>
<EstablishmentImageId>115343-0</EstablishmentImageId>
<Url>https://images.dnatatravel.com/ei/1/1/5/3/4/3/0.jpg</Url>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>115343-1</EstablishmentImageId>
<Url>https://images.dnatatravel.com/ei/1/1/5/3/4/3/1.jpg</Url>
Copyright © 2015 – Yalago
No part of this document may be reproduced in any way without the prior agreement and written permission of Yalago
Page 34 of 67
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>115343-2</EstablishmentImageId>
<Url>https://images.dnatatravel.com/ei/1/1/5/3/4/3/2.jpg</Url>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>115343-3</EstablishmentImageId>
<Url>https://images.dnatatravel.com/ei/1/1/5/3/4/3/3.jpg</Url>
</EstablishmentImage>
</Images>
<RoomTypes />
<Facilities>
<EstablishmentFacility>
<FacilityId>29</FacilityId>
</EstablishmentFacility>
</Facilities>
</Establishment>
<Establishment>
<EstablishmentId>315615</EstablishmentId>
<Title>Bahia Calma Bungalows</Title>
<AcommodationTypeId>2</AcommodationTypeId>
<Rating>3</Rating>
<RatingTypeId>1</RatingTypeId>
<Address>Calle Angostura Nº3, 35627 Costa Calma,
Fuerteventura, Canarias</Address>
<PostalCode>35627</PostalCode>
<PhoneNumber>928584007</PhoneNumber>
<FaxNumber>34-928-</FaxNumber>
<Email>[email protected]</Email>
<Longitude>-14.228800</Longitude>
<Latitude>28.157000</Latitude>
<GeocodeAccuracy>8</GeocodeAccuracy>
<LocationId>218781</LocationId>
<Description>
<Item>
<Code>en</Code>
<Text>Surrounded by palm trees and Canary pines, this
charming residence boasts a prime location in the tourist resort
of Costa Calma, at only 200 metres from the beach and offering an
ideal place to enjoy a relaxing holiday. Guests can find various
restaurants, bars and a supermarket in the surrounding area. The
establishment offers cosy bungalows and apartments, decorated in a
Mediterranean style and equipped with functional furniture and
useful amenities such as a flat-screen television, a safety box
and a well-equipped kitchenette. The complex features a large
sparkling swimming pool as well as a sun terrace equipped with sun
loungers and parasols, where travellers can relax and enjoy the
good Mediterranean weather. The friendly staff will be happy to
help guests to organize excursions and tours around the beautiful
island and to assist in everything travellers may need to make
their stay as enjoyable as possible.<br/>Hotel does not
Page 35 of 67
accept complains that have not been reported during the stay in
written form.</Text>
</Item>
</Description>
<Summary>
<Item>
<Code>en</Code>
<Text>Surrounded by palm trees and Canary pines, this
charming residence boasts a prime location in the tourist resort
of Costa Calma, at only 200 metres from the beach and offering an
ideal place to enjoy a relaxing holiday. Guests can find various
restaurants, bars and a supermarket in the surrounding area. The
establishment offers cosy bungalows and apartments, decorated in a
Mediterranean style and equipped with functional furniture and
useful amenities such as a flat-screen television, a safety box
and a well-equipped kitchenette. The complex features a large
sparkling swimming pool as well as a sun terrace equipped with sun
loungers and parasols, where travellers can relax and enjoy the
good Mediterranean weather. The friendly staff will be happy to
help guests to organize excursions and tours around the beautiful
island and to assist in everything travellers may need to make
their stay as enjoyable as possible.
Hotel does not accept complains that have not been reported during
the stay in written form.</Text>
</Item>
</Summary>
<Images>
<EstablishmentImage>
<EstablishmentImageId>315615-0</EstablishmentImageId>
<Url>https://images.dnatatravel.com/ei/3/1/5/6/1/5/0.jpg</Url>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>315615-1</EstablishmentImageId>
<Url>https://images.dnatatravel.com/ei/3/1/5/6/1/5/1.jpg</Url>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>315615-2</EstablishmentImageId>
<Url>https://images.dnatatravel.com/ei/3/1/5/6/1/5/2.jpg</Url>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>315615-3</EstablishmentImageId>
<Url>https://images.dnatatravel.com/ei/3/1/5/6/1/5/3.jpg</Url>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>315615-4</EstablishmentImageId>
<Url>https://images.dnatatravel.com/ei/3/1/5/6/1/5/4.jpg</Url>
</EstablishmentImage>
</Images>
<RoomTypes />
Copyright © 2015 – Yalago
No part of this document may be reproduced in any way without the prior agreement and written permission of Yalago
Page 36 of 67
<Facilities />
</Establishment>
<Establishment>
<EstablishmentId>1437082</EstablishmentId>
<Title>Falkensteiner Bratislava Hotel</Title>
<AcommodationTypeId>1</AcommodationTypeId>
<Rating>4</Rating>
<RatingTypeId>1</RatingTypeId>
<Address>PILARIKOVA STREET, 5 BRATISLAVA 811 03</Address>
<PostalCode />
<PhoneNumber>+421 2 59236100</PhoneNumber>
<FaxNumber />
<Email />
<Longitude>17.103600</Longitude>
<Latitude>48.146000</Latitude>
<GeocodeAccuracy>8</GeocodeAccuracy>
<LocationId>249766</LocationId>
<Description>
<Item>
<Code>en</Code>
<Text><p>This 4 star hotel is located in the city
centre of Bratislava and was established in 2009. It is close to
the city center and the nearest station is Bratislava hlavna
stanica. The Hotel has a restaurant, a bar, a conference room and
a fitness centre/gym. All 162 rooms are equipped with minibar,
hairdryer, safe, ironing set and air
conditioning.</p></Text>
</Item>
</Description>
<Summary>
<Item>
<Code>en</Code>
<Text>This 4 star hotel is located in the city centre of
Bratislava and was established in 2009. It is close to the city
center and the nearest station is Bratislava hlavna stanica. The
Hotel has a restaurant, a bar, a conference room and a fitness
centre/gym. All 162 rooms are equipped with minibar, hairdryer,
safe, ironing set and air conditioning.</Text>
</Item>
</Summary>
<Images>
<EstablishmentImage>
<EstablishmentImageId>1437082-0</EstablishmentImageId>
<Url>https://images.dnatatravel.com/ei/1/4/3/7/0/8/2/0.jpg</Url>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>1437082-1</EstablishmentImageId>
<Url>https://images.dnatatravel.com/ei/1/4/3/7/0/8/2/1.jpg</Url>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>1437082-2</EstablishmentImageId>
Page 37 of 67
<Url>https://images.dnatatravel.com/ei/1/4/3/7/0/8/2/2.jpg</Url>
</EstablishmentImage>
<EstablishmentImage>
<EstablishmentImageId>1437082-3</EstablishmentImageId>
<Url>https://images.dnatatravel.com/ei/1/4/3/7/0/8/2/3.jpg</Url>
</EstablishmentImage>
</Images>
<RoomTypes />
<Facilities>
<EstablishmentFacility>
<FacilityId>1</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>3</FacilityId>
</EstablishmentFacility>
<EstablishmentFacility>
<FacilityId>4</FacilityId>
</EstablishmentFacility>
</Facilities>
</Establishment>
</Establishments>
</GetEstablishmentDiffResponse>
5.10 GetFacilities
Path: /hotels/Inventory/GetFacilities
Request Fields
Page 38 of 67
Example Requests
{
"Languages": ["en"]
}
<GetFacilitiesRequest>
<Languages>
<Code>en</Code>
</Languages>
</GetFacilitiesRequest>
Response Fields
FacilityType String
FacilityGroup String
Page 39 of 67
"FacilityId": 3,
"Title": {
"en": "Wi-Fi"
},
"FacilityType": "Establishment Facility",
"FacilityGroup": "Internet"
},
{
"FacilityId": 6,
"Title": {
"en": "Adults Only"
},
"FacilityType": "Establishment Facility",
"FacilityGroup": "Hotel Type"
}
]
}
Page 40 of 67
<FacilityGroup>Internet</FacilityGroup>
</Facility>
</Facilities>
</GetFacilitiesResponse>
5.11 GetErrataCategories
Path: /hotels/Inventory/GetErrataCategories
Request Fields
Page 41 of 67
Response Fields
ERRATACATEGORY
ERRATACATEGORY Id Integer
Page 42 of 67
"en": "Transport"
},
"Definition": {
"en": "Transport"
}
},
{
"Id": 7,
"Title": {
"en": "Events"
},
"Definition": {
"en": "Events"
}
},
{
"Id": 8,
"Title": {
"en": "Restrictions/Reductions"
},
"Definition": {
"en": "Restrictions/Reductions"
}
},
{
"Id": 19,
"Title": {
"en": "Deposit"
},
"Definition": {
"en": "Deposit"
}
}
]
}
Page 43 of 67
</Definition>
</ErrataCategory>
<ErrataCategory>
<Id>2</Id>
<Title>
<Item>
<Code>en</Code>
<Text>Property Closure</Text>
</Item>
</Title>
<Definition>
<Item>
<Code>en</Code>
<Text>Property Closure</Text>
</Item>
</Definition>
</ErrataCategory>
<ErrataCategory>
<Id>3</Id>
<Title>
<Item>
<Code>en</Code>
<Text>None</Text>
</Item>
</Title>
<Definition>
<Item>
<Code>en</Code>
<Text>None</Text>
</Item>
</Definition>
</ErrataCategory>
<ErrataCategory>
<Id>5</Id>
<Title>
<Item>
<Code>en</Code>
<Text>New Noise</Text>
</Item>
</Title>
<Definition>
<Item>
<Code>en</Code>
<Text>New Noise</Text>
</Item>
</Definition>
</ErrataCategory>
<ErrataCategory>
<Id>21</Id>
<Title>
<Item>
<Code>en</Code>
<Text>Test New</Text>
</Item>
Copyright © 2015 – Yalago
No part of this document may be reproduced in any way without the prior agreement and written permission of Yalago
Page 44 of 67
</Title>
<Definition>
<Item>
<Code>en</Code>
<Text>Test New</Text>
</Item>
</Definition>
</ErrataCategory>
</ErrataCategories>
</GetErrataCategoryResponse>
5.12 GetSupplierBoardTypes
Path: /hotels/inventory/GetSupplierBoardTypes
Request Fields
Example Request
{
"Languages": ["en","es"]
}
Page 45 of 67
Response Fields
SUPPLIERBOARDTYPE Id Integer
Page 46 of 67
{
"Id": 33,
"Title": {
"en": "Diamond All Inclusive"
}
},
{
"Id": 62,
"Title": {
"en": "Full Board (drinks with meals)"
}
},
{
"Id": 5,
"Title": {
"en": "All Inclusive"
}
},
{
"Id": 12,
"Title": {
"en": "Ultra All Inclusive"
}
}
]
}
Page 47 of 67
<Text>Media Pensión</Text>
</Item>
</Title>
</SupplierBoardType>
<SupplierBoardType>
<Id>12</Id>
<Title>
<Item>
<Code>en</Code>
<Text>Ultra All Inclusive</Text>
</Item>
<Item>
<Code>es-es</Code>
<Text>Ultra Todo incluido</Text>
</Item>
</Title>
</SupplierBoardType>
</SuppBoardTypes>
</GetSupplierBoardTypesResponse>
5.13 GetBoardTypeInclusions
This method can be used to get a list of Board Type Inclusions and Exclusions.
Request Fields
Example Request
{
"Languages": ["en","es"]
}
Page 48 of 67
Response Fields
BOARDTYPEINCLUSION Id Integer
Page 49 of 67
"en": "Branded alcoholic drinks"
}
},
{
"Id": 7,
"Title": {
"en": "Breakfast Restaurants Included: {0}"
}
},
{
"Id": 8,
"Title": {
"en": "Lunch Restaurants Included:"
}
}
]
}
Page 50 of 67
</Title>
</BoardTypeInclusion>
<BoardTypeInclusion>
<Id>5</Id>
<Title>
<Item>
<Code>en</Code>
<Text>Continental Breakfast {0}</Text>
</Item>
</Title>
</BoardTypeInclusion>
<BoardTypeInclusion>
<Id>6</Id>
<Title>
<Item>
<Code>en</Code>
<Text>Branded alcoholic drinks</Text>
</Item>
</Title>
</BoardTypeInclusion>
<BoardTypeInclusion>
<Id>7</Id>
<Title>
<Item>
<Code>en</Code>
<Text>Breakfast Restaurants Included: {0}</Text>
</Item>
</Title>
</BoardTypeInclusion>
<BoardTypeInclusion>
<Id>8</Id>
<Title>
<Item>
<Code>en</Code>
<Text>Lunch Restaurants Included:</Text>
</Item>
</Title>
</BoardTypeInclusion>
</Inclusions>
</GetBoardTypeInclusionsResponse>
Page 51 of 67
6 Static Data Files Overview (Live)
This File contains the list of countries stored in the system for the Live Environment in json
and txt file format.
6.1.2 File Overview
http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4json.zip Live
Folder Name: http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4txt.zip Environment
File Name: CountriesV4.json / CountriesV4.txt json / txt
http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4json.zip Live
Folder Name: http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4txt.zip Environment
File Name: ProvincesV4.json / ProvincesV4.txt json / txt
Page 52 of 67
6.3 Live Inventory Contents (Locations)
6.3.1 File Description
This File contains the list of Locations with their respective provinces they belong to, in json
and txt file format for the Live environment.
http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4json.zip Live
Folder Name: http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4txt.zip Environment
File Name: LocationsV4.json / LocationsV4.txt json / txt
http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4json.zip Live
Folder Name: http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4txt.zip Environment
File Name: EstablishmentsV4.json / EstablishmentsV4.txt json / txt
Field
Field name: Req Description Linked file Example
Type
Establishment ID that the
EstablishmentId Integer Yes 5006072
Location belongs to
Hyatt Regency
Title String Yes Establishment Name Dubai Creek
Heights
Location ID that the Locations
LocationId Integer Yes 320780
establishment belongs to V4.json
Address String Yes Establishment Address PO Box 5668
Copyright © 2015 – Yalago
No part of this document may be reproduced in any way without the prior agreement and written permission of Yalago
Page 53 of 67
PostalCode String Yes Postal Code 502353
Phone Number of the
PhoneNumber String Yes 6156897845
Establishment
Latitude Integer Yes N-S geo coordinate in grades 25.2342
W-E geo coordinate in
Longitude Integer Yes 55.3239
grades
GeocodeAccuracy Integer Yes Geo Code Accuracy 9
AccommodationT Accommodation Type the
Integer Yes 1
ypeId Establishment belongs to
Rating Type the
RatingTypeId Integer Yes 1
Establishment belongs to
Rating Integer Yes Rating of the Establishment 5
FaxNumber String Yes Facsimile Number +97 13740702
Email address of the revmgr@ramada
Email String Yes
Establishment dubai.com
http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4json.zip Live
Folder Name: http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4txt.zip Environment
EstablishmentText_arV4.json / EstablishmentText_arV4.txt
EstablishmentText_deV4.json / EstablishmentText_deV4.txt
EstablishmentText_enV4.json / EstablishmentText_enV4.txt json / txt
EstablishmentText_esV4.json / EstablishmentText_esV4.txt
EstablishmentText_frV4.json / EstablishmentText_frV4.txt
File Name: EstablishmentText_itV4.json / EstablishmentText_itV4.txt
Page 54 of 67
6.6 Live Inventory Contents (Establishment Room Types)
6.6.1 File Description
This File contains information about the rooms of the establishment in languages available.
It displays the Room code, a photo, the Room type and a brief description of the room. This will be
for Live environment in json and txt file format
Field
Field name: Req Description Linked file Example
Type
Establishment ID
Establishments
EstablishmentId Integer Yes that the Room 274458
V4.JSON
belongs to
a unique room code CE4SBjI3NDQ1OBoFMjI0OTE
RoomCode String Yes
for this room type =
a URL of an image http://i.t-
ImageUrl String Yes
for this room type rp.co.uk/ri/1/389977.jpg
The unique Id of an
ImageId Integer Yes image for the room 5795536
type
the title of this Double or Twin Room(
Title String Yes
room type garden view )
the description of
Description String Yes Room Only
this room type
http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4json.zip Live
Folder Name: http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4txt.zip Environment
File Name: establishmentImagesV4.json / establishmentImagesV4.txt json / txt
Copyright © 2015 – Yalago
No part of this document may be reproduced in any way without the prior agreement and written permission of Yalago
Page 55 of 67
6.7.3 File Properties
Field
Field name: Req Description Linked file Example
Type
Establishment ID that the Establishment
EstablishmentId Integer Yes 111652
image belongs to sV4.JSON
https://images.dnatatr
Url String Yes URL of the image avel.com/ei/1/1/1/6/5
/2/2.jpg
Constructed from the
EstablishmentIma
Integer Yes establishmentid + the image 1116522
geID
number
http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4json.zip Live
Folder Name: http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4txt.zip Environment
File Name: EstablishmentFacilities_enV4.json / EstablishmentFacilities_enV4.txt json / txt
Field
Field name: Req Description Linked file Example
Type
Establishment ID that the EstablishmentsV
EstablishmentId Integer Yes 112596
facility belongs to 4.JSON
Facility ID that the Facilities_enV4.js
FacilityId Integer Yes 3
establishment provides on
establishments' custom Free
Description String Yes
description of the facility Wifi
Page 56 of 67
6.9 Live Inventory Contents (Facilities)
6.9.1 File Description
This File contains the information of the facilities. It has the group each facility belongs to,
the unique ID, type of facility and title. This will be for Live environment in json and txt file format.
http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4json.zip Live
Folder Name: http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4txt.zip Environment
File Name: Facilities_enV4.json / Facilities_enV4.txt json / txt
http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4json.zip Live
Folder Name:
http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4txt.zip Environment
File Name: EstablishmentExtras_enV4.json / EstablishmentExtras_enV4.txt json / txt
Page 57 of 67
6.10.3 File Properties
http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4json.zip Live
Folder Name:
http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4txt.zip Environment
File Name: EstablishmentExtrasOptions_enV4.json /EstablishmentExtrasOptions_enV4.txt json / txt
Page 58 of 67
6.12.2 File Overview
http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4json.zip Live
Folder Name:
http://yalago.s3-eu-west-1.amazonaws.com/InventoryV4txt.zip Environment
File Name: ErrataCategories_enV4.json / ErrataCategories_enV4.txt json / txt
Field Linked
Field name: Req Description Example
Type file
Unique Identifier Errata
Errata Category ID Integer Yes 1
Category
Facility
Title String Yes Title of the Option
Relocation/Closure
Facility
Definition String Yes Title of the Option
Relocation/Closure
Page 59 of 67
7.2 Test Inventory Contents (Provinces)
7.2.1 File Description
This File contains the list of Provinces with their respective Countries they belong to in json
and txt file format for the Test environment.
Page 60 of 67
7.4 Test Inventory Contents (Establishments)
7.4.1 File Description
This File contains the list of establishments per location, it also displays the establishment
details such as Name, Address, geo coordinates, type, rating, and contact details.
Page 61 of 67
7.5 Test Inventory Contents (Establishment)
7.5.1 File Description
This File contains the descriptions of the rooms in languages available for the
establishments. It has the Establishment ID, Summary and full description of the establishment. This
will be for Test environment in json and txt format.
Page 62 of 67
7.6 Test Inventory Contents (Establishment Room Types)
7.6.1 File Description
This File contains information about the rooms of the establishment in languages available.
It displays the Room code, a photo, the Room type and a brief description of the room. This will be
for Test environment in json and txt file format
Field
Field name: Req Description Linked file Example
Type
Establishment ID
Establishments
EstablishmentId Integer Yes that the Room 274458
V4.JSON
belongs to
a unique room code CE4SBjI3NDQ1OBoFMjI0OTE
RoomCode String Yes
for this room type =
a URL of an image http://i.t-
ImageUrl String Yes
for this room type rp.co.uk/ri/1/389977.jpg
The unique Id of an
ImageId Integer Yes image for the room 5795536
type
the title of this Double or Twin Room(
Title String Yes
room type garden view )
the description of
Description String Yes Room Only
this room type
Page 63 of 67
Folder http://yalago.s3-eu-west-1.amazonaws.com/TestInventoryV4json.zip Test
Name: http://yalago.s3-eu-west-1.amazonaws.com/TestInventoryV4txt.zip Environment
File Name: EstablishmentImagesV4.json / EstablishmentImagesV4.txt json / txt
Page 64 of 67
7.9 Test Inventory Contents (Facilities)
7.9.1 File Description
This File contains the information of the facilities. It has the group each facility belongs to,
the unique ID, type of facility and title. This will be for Test environment in json and txt file format
Linked
Field name: Field Type Req Description Example
file
Group that the facility belongs
FacilityGroup String Yes Internet
to
FacilityId Integer Yes Unique identifier of the facility 1
Establishment/Room level Establishment
FacilityType String Yes
facility Facility
Title String Yes Facility’s Title Free Wi-Fi
http://yalago.s3-eu-west-1.amazonaws.com/TestInventoryV4json.zip Live
Folder Name:
http://yalago.s3-eu-west-1.amazonaws.com/TestInventoryV4txt.zip Environment
File Name: EstablishmentExtras_en.json / EstablishmentExtras_en.txt json / txt
Page 65 of 67
7.10.3 File Properties
http://yalago.s3-eu-west-1.amazonaws.com/TestInventoryV4json.zip Live
Folder Name:
http://yalago.s3-eu-west-1.amazonaws.com/TestInventoryV4txt.zip Environment
File Name: EstablishmentExtraOptions_en.json /EstablishmentExtraOptions_en.txt json / txt
Field
Field name: Req Description Linked file Example
Type
Master Extra ID Integer Yes Unique Identifier of the Extras 1
Master Extra Option Unique Identifier of the Extra's
Integer Yes 1
ID Options
Sort Order Integer Yes Sort Order number 2
Title String Yes Title of the Option Seaplane
Page 66 of 67
This file contains Errata Categories. It has the corresponding Errata Category ID, Title and
Definition of categories. This will be for the Test environment in json and txt file format.
http://yalago.s3-eu-west-1.amazonaws.com/TestInventoryV4json.zip Live
Folder Name:
http://yalago.s3-eu-west-1.amazonaws.com/TestInventoryV4txt.zip Environment
File Name: ErrataCategories_enV4.json / ErrataCategories_enV4.txt json / txt
Field Linked
Field name: Req Description Example
Type file
Unique Identifier Errata
Errata Category ID Integer Yes 1
Category
Facility
Title String Yes Title of the Option
Relocation/Closure
Facility
Definition String Yes Title of the Option
Relocation/Closure
Page 67 of 67