Raw schema
{
"type": "object",
"properties": {
"adults": {
"default": 2,
"description": "Antall voksne 12-99 år, default 2",
"maximum": 9,
"minimum": 1,
"type": "integer"
},
"bbox": {
"description": "Geografisk søk avgrenset med et rektangel. Format: minLat,minLon,maxLat,maxLon.",
"example": "28.0,-15.5,28.2,-15.3",
"type": "string"
},
"board_type": {
"description": "Måltider inkludert på hotellet, f.eks frokost, halvpensjon, helpensjon, all inclusive",
"enum": [
"breakfast",
"half_board",
"full_board",
"all_inclusive"
],
"type": "string"
},
"category": {
"description": "Kategori for ferien SUNBATH=Syden,Sol&bad, CITY=storbyferie, SKI=skiferie, EXOTIC=fjerne strender",
"enum": [
"SUNBATH",
"CITY",
"SKI",
"EXOTIC"
],
"type": "string"
},
"children": {
"default": 0,
"description": "Antall barn 2-11 år, default 0",
"maximum": 6,
"minimum": 0,
"type": "integer"
},
"country_iso": {
"description": "ISO kode for land, for eksempel ES, GR, PL, TR",
"type": "string"
},
"days_max": {
"description": "Maksimum antall dager for ferien, for eksempel 3, 7, 14",
"type": "integer"
},
"days_min": {
"description": "Minimum antall dager for ferien, for eksempel 3, 7, 14",
"type": "integer"
},
"depart_date_exact": {
"description": "Ferien skal starte denne dagen (ISO 8601 format YYYY-MM-DDTHH:MM:SSZ)",
"format": "date-time",
"type": "string"
},
"depart_date_max": {
"description": "Seneste mulige start på ferien (ISO 8601 format YYYY-MM-DDTHH:MM:SSZ)",
"format": "date-time",
"type": "string"
},
"depart_date_min": {
"description": "Tidligste mulige start på ferien (ISO 8601 format YYYY-MM-DDTHH:MM:SSZ)",
"format": "date-time",
"type": "string"
},
"destination_airport_code": {
"description": "IATA kode for destinasjonsflyplass, for eksempel ALC, AGP, TFS",
"type": "string"
},
"destination_name": {
"description": "Destinasjonsnavn, for eksempel Malta, Magaluf, Gran Canaria",
"type": "string"
},
"direct_flight": {
"description": "Sett til true for å finne hoteller med direktefly",
"type": "boolean"
},
"distance_airport": {
"description": "Maksimal avstand melom hotell og flyplass i km, for eksempel 20, 40, 80",
"type": "integer"
},
"distance_beach": {
"description": "Maksimal avstand til stranden i meter, for eksempel 0, 100, 500",
"type": "integer"
},
"distance_centre": {
"description": "Maksimal avstand til sentrum i meter, for eksempel 0, 100, 500",
"type": "integer"
},
"features": {
"description": "Fasiliteter på hotellet: ac=aircondition, adultsonly=Kun for voksne, apartment=leilighet, bar=bar, childspool=barnepool, gym=treningssenter, heatedpool=oppvarmet basseng, kidsclub=barnklubb, pool=basseng, seaview=havutsikt, restaurant=restaurant, spa=spa",
"items": {
"enum": [
"ac",
"adultsonly",
"apartment",
"bar",
"childspool",
"gym",
"heatedpool",
"kidsclub",
"pool",
"seaview",
"restaurant",
"spa"
],
"type": "string"
},
"type": "array"
},
"fields": {
"default": [
"total_price",
"guest_rating",
"currency",
"supplier_logo",
"lat",
"features",
"departure_date",
"supplier_name",
"room_type",
"destination_airport_code",
"country_name",
"origin_airport_name",
"distance_beach",
"hotel_image",
"features_text",
"destination_airport_name",
"number_of_nights",
"temp_air_day",
"lon",
"url",
"distance_centre",
"return_date",
"hotel_name",
"origin_airport_code",
"temp_water",
"hotel_description",
"distance_airport",
"categories",
"country_code",
"price_per_pers",
"destination_name"
],
"description": "Felt som skal inkluderes i søkeresultatet",
"example": [
"origin_airport_name",
"destination_airport_name",
"destination_name",
"hotel_name",
"departure_date",
"return_date",
"url",
"total_price"
],
"items": {
"enum": [
"total_price",
"guest_rating",
"currency",
"supplier_logo",
"lat",
"features",
"departure_date",
"supplier_name",
"room_type",
"destination_airport_code",
"country_name",
"origin_airport_name",
"distance_beach",
"hotel_image",
"features_text",
"destination_airport_name",
"number_of_nights",
"temp_air_day",
"lon",
"url",
"distance_centre",
"return_date",
"hotel_name",
"origin_airport_code",
"temp_water",
"hotel_description",
"distance_airport",
"categories",
"country_code",
"price_per_pers",
"destination_name"
],
"type": "string"
},
"type": "array"
},
"guest_rating": {
"description": "Minimum gjestevurdering, for eksempel 8.2, 9.0. Median: 8.4",
"example": 8.4,
"format": "float",
"maximum": 10,
"minimum": 1,
"type": "number"
},
"hotel_name": {
"description": "Hotellnavn, for eksempel Riu Palace, Iberostar, Sol",
"type": "string"
},
"infants": {
"default": 0,
"description": "Antall spedbarn 0-1 år, default 0",
"maximum": 6,
"minimum": 0,
"type": "integer"
},
"lat": {
"description": "Breddegrad i desimalgrader, brukes med lon og radius",
"example": 27.5797,
"format": "float",
"maximum": 90,
"minimum": -90,
"type": "number"
},
"limit": {
"default": 1,
"description": "Antall tilbud som skal returneres, for eksempel 5, 10. Default 1",
"maximum": 25,
"minimum": 1,
"type": "integer"
},
"lon": {
"description": "Lengdegrad i desimalgrader, brukes med lat og radius",
"example": -15.5803,
"format": "float",
"maximum": 180,
"minimum": -180,
"type": "number"
},
"max_price": {
"description": "Maksimum totalpris for hele reisen, for eksempel 5000, 10000, 15000",
"type": "integer"
},
"number_of_nights": {
"description": "Eksakt antall netter for ferien, for eksempel 3, 7, 14",
"type": "integer"
},
"origin_airport_code": {
"description": "IATA kode for avreiseflyplass, for eksempel OSL, SVG, TRD",
"type": "string"
},
"radius": {
"description": "Radius i kilometer fra lat, lon",
"example": 1.8,
"format": "float",
"maximum": 200,
"minimum": 0,
"type": "number"
},
"rating": {
"description": "Minimum antall stjerner, for eksempel 3, 4, 5",
"maximum": 5,
"minimum": 1,
"type": "integer"
},
"return_date_exact": {
"description": "Hjemreisen skal begynner denne dagen(ISO 8601 format YYYY-MM-DDTHH:MM:SSZ)",
"format": "date-time",
"type": "string"
},
"return_date_max": {
"description": "Seneste mulige hjemreise (ISO 8601 format YYYY-MM-DDTHH:MM:SSZ)",
"format": "date-time",
"type": "string"
},
"return_date_min": {
"description": "Tidligste mulige hjemreise (ISO 8601 format YYYY-MM-DDTHH:MM:SSZ)",
"format": "date-time",
"type": "string"
},
"sort": {
"description": "Sorteringsrekkefølge for tilbudene. Default er price_asc",
"enum": [
"price_asc",
"price_desc",
"rating_asc",
"rating_desc",
"distance_beach_asc",
"distance_airport_asc",
"guest_rating_desc"
],
"type": "string"
},
"temp_air_day_max": {
"description": "Maksimum forventet dagtemperatur i Celsius, for eksempel 25, 30",
"type": "integer"
},
"temp_air_day_min": {
"description": "Minimum forventet dagtemperatur i Celsius, for eksempel 20, 25",
"type": "integer"
},
"temp_water": {
"description": "Minimum forventet vanntemperatur i Celsius, for eksempel 20, 25",
"type": "integer"
}
}
}