Olery Developer Portal logo Olery Developer Portal

Method Path
GET https://agora.olery.com/v3/companies/:id/review_widget

Returns aggregated data and content to fill the review widget.

Global coverage access

In case of subscriptions with global coverage permission enabled, calling this endpoint will assign the company id to the list of companies of the subscription. This will result in regular data collection of the company in case it wasn’t yet enabled. If the returned data looks empty or outdated, please wait from 24 to 48 hours to call this endpoint again after all data collection and processing finishes.

Output Format

The aggregated data is returned as an Array of JSON objects in the data field. Each object has the following fields:

Field Data Types Description
id Integer ID of the property
name String Name of the property
rating Float Average overall rating
review_count Integer Total number of reviews considered
updated_at String Datetime the cache was updated
tes Array Traveller Experience Score (TES) ratings
ratings Array Rating categories and their subratings
mentions Array Sentiment opinions
guests Hash Ratings grouped by the reviewer’s travel composition and country of origin
summaries Array Review summaries
nearby_accommodations Array Relevant nearby accommodations
nearby_attractions Array Relevant nearby attractions
nearby_restaurants Array Relevant nearby restaurants
recent_reviews Array Recent reviews with opinions and reviewer’s country of origin
reviews_over_time Hash Review count over month and week periods
events Hash Covid number of cases over time and per country
shifts Hash Per week or per month review count difference per reviewer’s travel composition or country of origin

TES

The Traveller Experience Score (TES) replaces the Guest Experience Index. The design and rating system of the Sentiment Analysis Technology V2 allows us to provide a Traveller Experience Score combining Sentiment and Numerical Ratings. This is a hospitality first in giving you the insights of both the written reviews and the ratings combined.

Field Data Types Description
score Float Calculated Traveller Experience Score
review_count Integer Total number of reviews the calculation was based
sentiment Hash Underlying Sentiment Rating data for the given topic
numerical Hash Underlying Numerical Rating data for the given topic

Ratings

The ratings field is an array with all rating categories.

Values for the ratings are integers with a scale of 0 to 100. Rating topics without values are not included in the object.

count Integer Count of ratings
review_count Integer Count of reviews the ratings came from
value Float Average rating
topic String Rating category

Thev1-backupre can be multiple ratings for the same topic. For this reason the count and rating_count can differ.

Guests

These ratings are structured as above with the exception that they are grouped by country and travel composition.

Mentions

A review can contain multiple mentions, even of the same topic. Also, we give an overall topic which is a compilation of the opinions per section.

The sentiment score is a float on a scale from -1.0 to 1.0. A value of -1.0 indicates a completely negative opinion while 1.0 indicates a completely positive opinion. The calculation is (positive count - negative count) / (positive count + negative count).

rating hash Topic of the rating (category of topics - When available)
rating[].key String key of the rating
rating[].label String label of the rating
positive_opinions Integer Count of positive opinions about the topic
negative_opinions Integer Count of negative opinions about the topic
sentiment_score Float Score taking all opinions into account
positive_percentage Float Simple percentage of positive opinions
opinions-count Integer Count of all opinions
review-count Integer Count of reviews the opinions were extracted from
topic String Sentiment subrating (see page “Sentiment Ratings”).

Summaries

The summaries consist of an array of statements. The text fields contains the content of the statement.

Nearby Attractions

It is an array of popular attractions and points of interest nearby the property.

id Integer ID of the attraction
name String English name
distance Float Direct distance in km
rating Float Average overall rating of the attraction
review_count Integer Count of reviews in the time period

Recent reviews

The aggregated data is returned as an Array of JSON objects in the data field. Each object has the following fields:

Field Data Types Description
review_date Date Date on which the review was published (as stated by the source)
ratings Array Array containing the review ratings
opinions Array Opinions analysed from the review title and comments
sentiment String Overall review sentiment
country_code String Country code of the reviewer
country_name String Country name of the reviewer
travel_composition String Travel composition (friends, family, etc)

Ratings

The ratings field is an array with objects for each subrating. The rating itself is an integer on a scale of 0 to 100. All ratings on different scales are normalized into this scale. The “overall” is the main rating almost all reviews should have. Ratings without values are not included in the array.

Each subrating is in 1 out of 9 categories. Understand these categories as a suggestion by Olery. You can aggregate the ratings for the categories to make the number of rating topics more manageable for the user.

Fields for each subrating:

Field Data Types Description
title String Human-friendly title of the rating
topic String Machine name of the rating
rating Integer Rating value
category String Suggested category of the rating

Sentiment

All reviews with written content in the following languages get analyzed for the reviewer’s sentiment:

For an updated list of supported languages, call the following endpoint:

Method Path
GET https://agora.olery.com/v3/lexicons/languages

This analysis happens after the review was captured. The review is immmediatley available in the Review Feed and then gets updated with the sentiment data. This can take a few minutes up to several hours.

Aggregated Sentiment

The sentiment field contains the overall detected sentiment of a review. This can be any of the following values:

This field is left empty if no sentiment could be detected.

The sentiment_score field contains a score indicating the sentiment value on a scale from -1 to 1. A score of -1 means a review is 100% negative, a score of 1 means a review is 100% positive. A review with a score between 0.0 and 0.5 is considered to be neutral.

sentiment_score is also considering sentiment for which an opinion topic could not be detected. For example, a review with only one sentence like “It was good!” might lead to a high sentiment_score, but an individual opinion (see below) will not be present.

Individual Opinions

An opinion is a semantic entity which contains the writer’s sentiment towards one or more subratings (topic key). A sentence can have multiple opinions. Understand that subratings are more like tags than categories. “The bed was cozy” might count as a positive opinion for both the “bed” and also the “sleeping comfort”. Certain words and expressions can increase the strength of an opinion.

Fields for each opinion:

Field Data Types Description
polarity Integer Polarity of the opinion
strength String A number equal or greater to 1 for the strength fo the polarity
ratings Object A tree of ratings and their related topics found in the sentiment sentence
topics Array [DEPRECATED] A list of topics the opinion is about
labels Array [DEPRECATED] The labels for each of the topics above

Example Output

{
  "data": {
    "id": 784087,
    "name": "Sea & Breeze Hotel",
    "rating": 74.29809358752166,
    "review_count": 577,
    "updated_at": "2023-04-21T16:24:31.970Z",
    "ratings": [
      {
        "count": 577,
        "title": "Overall",
        "topic": "overall",
        "value": 74.29809358752166,
        "review_count": 577
      },
      {
        "count": 164,
        "title": "Service",
        "topic": "service",
        "value": 83.90243902439025,
        "review_count": 164
      },
      {
        "count": 141,
        "title": "Room",
        "topic": "room",
        "value": 77.02127659574468,
        "review_count": 122
      },
      {
        "count": 106,
        "title": "Cleanliness",
        "topic": "cleanliness",
        "value": 75.09433962264151,
        "review_count": 106
      },
      {
        "count": 89,
        "title": "Facilities",
        "topic": "facilities",
        "value": 71.46067415730337,
        "review_count": 89
      },
      {
        "count": 73,
        "title": "Location",
        "topic": "location",
        "value": 93.42465753424658,
        "review_count": 73
      },
      {
        "count": 20,
        "title": "Value",
        "topic": "value",
        "value": 80.0,
        "review_count": 20
      }
    ],
    "mentions": [
      {
        "label": "Overall",
        "title": "Overall",
        "topic": "overall",
        "rating": {
          "key": "overall",
          "label": "Overall"
        },
        "review_count": 344,
        "opinions_count": 1977,
        "sentiment_score": 7.242063492063492,
        "neutral_opinions": 413,
        "negative_opinions": 556,
        "positive_opinions": 1008,
        "positive_percentage": 0.6445012787723785
      },
      {
        "label": "Room",
        "title": "Room",
        "topic": "room",
        "rating": {
          "key": "facilities",
          "label": "Facilities"
        },
        "review_count": 223,
        "opinions_count": 402,
        "sentiment_score": 5.555555555555555,
        "neutral_opinions": 45,
        "negative_opinions": 168,
        "positive_opinions": 189,
        "positive_percentage": 0.5294117647058824
      },
      {
        "label": "Surrounding Area",
        "title": "Surrounding Area",
        "topic": "surrounding_area",
        "rating": {
          "key": "location",
          "label": "Location"
        },
        "review_count": 204,
        "opinions_count": 245,
        "sentiment_score": 9.566473988439306,
        "neutral_opinions": 57,
        "negative_opinions": 15,
        "positive_opinions": 173,
        "positive_percentage": 0.9202127659574468
      },
      {
        "label": "Hygiene",
        "title": "Hygiene",
        "topic": "hygiene",
        "rating": {
          "key": "cleanliness",
          "label": "Cleanliness"
        },
        "review_count": 137,
        "opinions_count": 201,
        "sentiment_score": 6.116504854368932,
        "neutral_opinions": 18,
        "negative_opinions": 80,
        "positive_opinions": 103,
        "positive_percentage": 0.5628415300546448
      },
      {
        "label": "Housekeeping",
        "title": "Housekeeping",
        "topic": "housekeeping",
        "rating": {
          "key": "cleanliness",
          "label": "Cleanliness"
        },
        "review_count": 141,
        "opinions_count": 178,
        "sentiment_score": 6.919191919191919,
        "neutral_opinions": 18,
        "negative_opinions": 61,
        "positive_opinions": 99,
        "positive_percentage": 0.61875
      },
      {
        "label": "Personnel",
        "title": "Personnel",
        "topic": "personnel",
        "rating": {
          "key": "service",
          "label": "Service"
        },
        "review_count": 113,
        "opinions_count": 156,
        "sentiment_score": 9.421487603305785,
        "neutral_opinions": 21,
        "negative_opinions": 14,
        "positive_opinions": 121,
        "positive_percentage": 0.8962962962962963
      },
      {
        "label": "Transport",
        "title": "Transport",
        "topic": "transport",
        "rating": {
          "key": "location",
          "label": "Location"
        },
        "review_count": 104,
        "opinions_count": 132,
        "sentiment_score": 4.583333333333333,
        "neutral_opinions": 40,
        "negative_opinions": 48,
        "positive_opinions": 44,
        "positive_percentage": 0.4782608695652174
      },
      {
        "label": "Bathroom",
        "title": "Bathroom",
        "topic": "bathroom",
        "rating": {
          "key": "facilities",
          "label": "Facilities"
        },
        "review_count": 71,
        "opinions_count": 121,
        "sentiment_score": 3.305084745762712,
        "neutral_opinions": 23,
        "negative_opinions": 59,
        "positive_opinions": 39,
        "positive_percentage": 0.3979591836734694
      },
      {
        "label": "Restaurant",
        "title": "Restaurant",
        "topic": "restaurant",
        "rating": {
          "key": "facilities",
          "label": "Facilities"
        },
        "review_count": 89,
        "opinions_count": 108,
        "sentiment_score": 9.682539682539684,
        "neutral_opinions": 41,
        "negative_opinions": 4,
        "positive_opinions": 63,
        "positive_percentage": 0.9402985074626866
      },
      {
        "label": "Value for money",
        "title": "Value for money",
        "topic": "value_for_money",
        "rating": {
          "key": "value",
          "label": "Value"
        },
        "review_count": 71,
        "opinions_count": 83,
        "sentiment_score": 7.948717948717949,
        "neutral_opinions": 28,
        "negative_opinions": 16,
        "positive_opinions": 39,
        "positive_percentage": 0.7090909090909091
      },
      {
        "label": "Sports Facilities",
        "title": "Sports Facilities",
        "topic": "sports_facilties",
        "rating": {
          "key": "facilities",
          "label": "Facilities"
        },
        "review_count": 59,
        "opinions_count": 72,
        "sentiment_score": 8.58695652173913,
        "neutral_opinions": 13,
        "negative_opinions": 13,
        "positive_opinions": 46,
        "positive_percentage": 0.7796610169491526
      },
      {
        "label": "Sanitary Safety",
        "title": "Sanitary Safety",
        "topic": "sanitary_safety",
        "rating": null,
        "review_count": 40,
        "opinions_count": 46,
        "sentiment_score": 1.25,
        "neutral_opinions": 6,
        "negative_opinions": 32,
        "positive_opinions": 8,
        "positive_percentage": 0.2
      },
      {
        "label": "Drink",
        "title": "Drink",
        "topic": "drink",
        "rating": {
          "key": "fnb",
          "label": "Food & Beverages"
        },
        "review_count": 37,
        "opinions_count": 43,
        "sentiment_score": 9.375,
        "neutral_opinions": 25,
        "negative_opinions": 2,
        "positive_opinions": 16,
        "positive_percentage": 0.8888888888888888
      },
      {
        "label": "Breakfast",
        "title": "Breakfast",
        "topic": "breakfast",
        "rating": {
          "key": "fnb",
          "label": "Food & Beverages"
        },
        "review_count": 38,
        "opinions_count": 41,
        "sentiment_score": 9.166666666666668,
        "neutral_opinions": 27,
        "negative_opinions": 2,
        "positive_opinions": 12,
        "positive_percentage": 0.8571428571428571
      },
      {
        "label": "Sound",
        "title": "Sound",
        "topic": "sound",
        "rating": {
          "key": "ambience",
          "label": "Ambience"
        },
        "review_count": 27,
        "opinions_count": 32,
        "sentiment_score": 1.666666666666667,
        "neutral_opinions": 8,
        "negative_opinions": 18,
        "positive_opinions": 6,
        "positive_percentage": 0.25
      },
      {
        "label": "Food",
        "title": "Food",
        "topic": "food",
        "rating": {
          "key": "fnb",
          "label": "Food & Beverages"
        },
        "review_count": 23,
        "opinions_count": 32,
        "sentiment_score": 9.375,
        "neutral_opinions": 5,
        "negative_opinions": 3,
        "positive_opinions": 24,
        "positive_percentage": 0.8888888888888888
      },
      {
        "label": "Bar",
        "title": "Bar",
        "topic": "bar",
        "rating": {
          "key": "facilities",
          "label": "Facilities"
        },
        "review_count": 23,
        "opinions_count": 25,
        "sentiment_score": 7.777777777777778,
        "neutral_opinions": 12,
        "negative_opinions": 4,
        "positive_opinions": 9,
        "positive_percentage": 0.6923076923076923
      },
      {
        "label": "Light",
        "title": "Light",
        "topic": "light",
        "rating": {
          "key": "ambience",
          "label": "Ambience"
        },
        "review_count": 14,
        "opinions_count": 19,
        "sentiment_score": 5.0,
        "neutral_opinions": 9,
        "negative_opinions": 5,
        "positive_opinions": 5,
        "positive_percentage": 0.5
      },
      {
        "label": "Odor",
        "title": "Odor",
        "topic": "odor",
        "rating": {
          "key": "cleanliness",
          "label": "Cleanliness"
        },
        "review_count": 10,
        "opinions_count": 12,
        "sentiment_score": 0.7142857142857144,
        "neutral_opinions": 4,
        "negative_opinions": 7,
        "positive_opinions": 1,
        "positive_percentage": 0.125
      },
      {
        "label": "Decor",
        "title": "Decor",
        "topic": "decor",
        "rating": {
          "key": "ambience",
          "label": "Ambience"
        },
        "review_count": 7,
        "opinions_count": 8,
        "sentiment_score": 6.25,
        "neutral_opinions": 1,
        "negative_opinions": 3,
        "positive_opinions": 4,
        "positive_percentage": 0.5714285714285714
      },
      {
        "label": "Checkin",
        "title": "Checkin",
        "topic": "checkin",
        "rating": {
          "key": "service",
          "label": "Service"
        },
        "review_count": 6,
        "opinions_count": 6,
        "sentiment_score": 10.0,
        "neutral_opinions": 5,
        "negative_opinions": 0,
        "positive_opinions": 1,
        "positive_percentage": 1.0
      },
      {
        "label": "Sustainable Travel",
        "title": "Sustainable Travel",
        "topic": "sustainable_travel",
        "rating": null,
        "review_count": 4,
        "opinions_count": 5,
        "sentiment_score": 5.0,
        "neutral_opinions": 3,
        "negative_opinions": 1,
        "positive_opinions": 1,
        "positive_percentage": 0.5
      },
      {
        "label": "Checkout",
        "title": "Checkout",
        "topic": "checkout",
        "rating": {
          "key": "service",
          "label": "Service"
        },
        "review_count": 3,
        "opinions_count": 3,
        "sentiment_score": 5.0,
        "neutral_opinions": 3,
        "negative_opinions": 0,
        "positive_opinions": 0,
        "positive_percentage": 0
      },
      {
        "label": "Reception",
        "title": "Reception",
        "topic": "reception",
        "rating": {
          "key": "service",
          "label": "Service"
        },
        "review_count": 2,
        "opinions_count": 2,
        "sentiment_score": 10.0,
        "neutral_opinions": 0,
        "negative_opinions": 0,
        "positive_opinions": 2,
        "positive_percentage": 1.0
      },
      {
        "label": "Internet",
        "title": "Internet",
        "topic": "internet",
        "rating": {
          "key": "facilities",
          "label": "Facilities"
        },
        "review_count": 2,
        "opinions_count": 2,
        "sentiment_score": 5.0,
        "neutral_opinions": 0,
        "negative_opinions": 1,
        "positive_opinions": 1,
        "positive_percentage": 0.5
      },
      {
        "label": "Pandemic Precautions",
        "title": "Pandemic Precautions",
        "topic": "health_precautions",
        "rating": null,
        "review_count": 2,
        "opinions_count": 2,
        "sentiment_score": 10.0,
        "neutral_opinions": 0,
        "negative_opinions": 0,
        "positive_opinions": 2,
        "positive_percentage": 1.0
      },
      {
        "label": "Airconditioning",
        "title": "Airconditioning",
        "topic": "airconditioning",
        "rating": {
          "key": "facilities",
          "label": "Facilities"
        },
        "review_count": 1,
        "opinions_count": 1,
        "sentiment_score": 5.0,
        "neutral_opinions": 1,
        "negative_opinions": 0,
        "positive_opinions": 0,
        "positive_percentage": 0
      }
    ],
    "guests": {
      "countries": [
        {
          "label": null,
          "country": "US",
          "ratings": [
            {
              "count": 371,
              "title": "Overall",
              "topic": "overall",
              "value": 73.45013477088949,
              "review_count": 371
            },
            {
              "count": 5,
              "title": "Service",
              "topic": "service",
              "value": 68.0,
              "review_count": 5
            },
            {
              "count": 3,
              "title": "Cleanliness",
              "topic": "cleanliness",
              "value": 46.666666666666664,
              "review_count": 3
            },
            {
              "count": 3,
              "title": "Facilities",
              "topic": "facilities",
              "value": 53.333333333333336,
              "review_count": 3
            },
            {
              "count": 3,
              "title": "Room",
              "topic": "room",
              "value": 53.333333333333336,
              "review_count": 2
            },
            {
              "count": 2,
              "title": "Value",
              "topic": "value",
              "value": 40.0,
              "review_count": 2
            },
            {
              "count": 1,
              "title": "Location",
              "topic": "location",
              "value": 100.0,
              "review_count": 1
            }
          ]
        },
        {
          "label": null,
          "country": "DE",
          "ratings": [
            {
              "count": 5,
              "title": "Overall",
              "topic": "overall",
              "value": 60.0,
              "review_count": 5
            }
          ]
        },
        {
          "label": null,
          "country": "CA",
          "ratings": [
            {
              "count": 2,
              "title": "Overall",
              "topic": "overall",
              "value": 70.0,
              "review_count": 2
            }
          ]
        },
        {
          "label": null,
          "country": "GE",
          "ratings": [
            {
              "count": 2,
              "title": "Overall",
              "topic": "overall",
              "value": 75.0,
              "review_count": 2
            }
          ]
        },
        {
          "label": null,
          "country": "CH",
          "ratings": [
            {
              "count": 1,
              "title": "Overall",
              "topic": "overall",
              "value": 60.0,
              "review_count": 1
            }
          ]
        },
        {
          "label": null,
          "country": "FR",
          "ratings": [
            {
              "count": 1,
              "title": "Cleanliness",
              "topic": "cleanliness",
              "value": 80.0,
              "review_count": 1
            },
            {
              "count": 1,
              "title": "Facilities",
              "topic": "facilities",
              "value": 80.0,
              "review_count": 1
            },
            {
              "count": 1,
              "title": "Overall",
              "topic": "overall",
              "value": 100.0,
              "review_count": 1
            },
            {
              "count": 1,
              "title": "Service",
              "topic": "service",
              "value": 80.0,
              "review_count": 1
            }
          ]
        },
        {
          "label": null,
          "country": "GR",
          "ratings": [
            {
              "count": 1,
              "title": "Cleanliness",
              "topic": "cleanliness",
              "value": 80.0,
              "review_count": 1
            },
            {
              "count": 1,
              "title": "Facilities",
              "topic": "facilities",
              "value": 60.0,
              "review_count": 1
            },
            {
              "count": 1,
              "title": "Overall",
              "topic": "overall",
              "value": 60.0,
              "review_count": 1
            },
            {
              "count": 1,
              "title": "Service",
              "topic": "service",
              "value": 80.0,
              "review_count": 1
            }
          ]
        },
        {
          "label": null,
          "country": "KZ",
          "ratings": [
            {
              "count": 1,
              "title": "Overall",
              "topic": "overall",
              "value": 80.0,
              "review_count": 1
            }
          ]
        },
        {
          "label": null,
          "country": "PL",
          "ratings": [
            {
              "count": 1,
              "title": "Overall",
              "topic": "overall",
              "value": 100.0,
              "review_count": 1
            }
          ]
        }
      ],
      "compositions": [
        {
          "label": null,
          "ratings": [
            {
              "count": 237,
              "title": "Overall",
              "topic": "overall",
              "value": 74.34599156118144,
              "review_count": 237
            },
            {
              "count": 55,
              "title": "Service",
              "topic": "service",
              "value": 84.0,
              "review_count": 55
            },
            {
              "count": 41,
              "title": "Facilities",
              "topic": "facilities",
              "value": 68.78048780487805,
              "review_count": 41
            },
            {
              "count": 39,
              "title": "Cleanliness",
              "topic": "cleanliness",
              "value": 69.23076923076923,
              "review_count": 39
            },
            {
              "count": 32,
              "title": "Room",
              "topic": "room",
              "value": 79.375,
              "review_count": 32
            },
            {
              "count": 14,
              "title": "Location",
              "topic": "location",
              "value": 97.14285714285714,
              "review_count": 14
            }
          ],
          "travel_composition": "families"
        },
        {
          "label": null,
          "ratings": [
            {
              "count": 173,
              "title": "Overall",
              "topic": "overall",
              "value": 71.90751445086705,
              "review_count": 173
            },
            {
              "count": 20,
              "title": "Service",
              "topic": "service",
              "value": 87.0,
              "review_count": 20
            },
            {
              "count": 12,
              "title": "Location",
              "topic": "location",
              "value": 95.0,
              "review_count": 12
            },
            {
              "count": 12,
              "title": "Room",
              "topic": "room",
              "value": 70.0,
              "review_count": 12
            },
            {
              "count": 8,
              "title": "Facilities",
              "topic": "facilities",
              "value": 57.5,
              "review_count": 8
            },
            {
              "count": 7,
              "title": "Cleanliness",
              "topic": "cleanliness",
              "value": 68.57142857142857,
              "review_count": 7
            }
          ],
          "travel_composition": "couples"
        },
        {
          "label": null,
          "ratings": [
            {
              "count": 35,
              "title": "Overall",
              "topic": "overall",
              "value": 76.0,
              "review_count": 35
            }
          ],
          "travel_composition": "group"
        },
        {
          "label": null,
          "ratings": [
            {
              "count": 20,
              "title": "Overall",
              "topic": "overall",
              "value": 67.5,
              "review_count": 20
            },
            {
              "count": 6,
              "title": "Location",
              "topic": "location",
              "value": 96.66666666666667,
              "review_count": 6
            },
            {
              "count": 6,
              "title": "Room",
              "topic": "room",
              "value": 76.66666666666667,
              "review_count": 6
            },
            {
              "count": 6,
              "title": "Service",
              "topic": "service",
              "value": 83.33333333333333,
              "review_count": 6
            }
          ],
          "travel_composition": "solo"
        },
        {
          "label": null,
          "ratings": [
            {
              "count": 11,
              "title": "Overall",
              "topic": "overall",
              "value": 76.36363636363636,
              "review_count": 11
            },
            {
              "count": 10,
              "title": "Service",
              "topic": "service",
              "value": 80.0,
              "review_count": 10
            },
            {
              "count": 8,
              "title": "Room",
              "topic": "room",
              "value": 72.5,
              "review_count": 8
            },
            {
              "count": 7,
              "title": "Cleanliness",
              "topic": "cleanliness",
              "value": 85.71428571428571,
              "review_count": 7
            },
            {
              "count": 7,
              "title": "Facilities",
              "topic": "facilities",
              "value": 82.85714285714286,
              "review_count": 7
            },
            {
              "count": 3,
              "title": "Location",
              "topic": "location",
              "value": 73.33333333333333,
              "review_count": 3
            }
          ],
          "travel_composition": "friends"
        },
        {
          "label": null,
          "ratings": [
            {
              "count": 2,
              "title": "Cleanliness",
              "topic": "cleanliness",
              "value": 100.0,
              "review_count": 2
            },
            {
              "count": 2,
              "title": "Facilities",
              "topic": "facilities",
              "value": 100.0,
              "review_count": 2
            },
            {
              "count": 2,
              "title": "Overall",
              "topic": "overall",
              "value": 100.0,
              "review_count": 2
            },
            {
              "count": 2,
              "title": "Service",
              "topic": "service",
              "value": 100.0,
              "review_count": 2
            },
            {
              "count": 1,
              "title": "Room",
              "topic": "room",
              "value": 100.0,
              "review_count": 1
            }
          ],
          "travel_composition": "business"
        }
      ]
    },
    "summaries": [
      {
        "any topic 1": {
          "slug": "review_count_reviews_in_the_past_6_months",
          "text": "577 reviews in the past 6 months",
          "language": "en",
          "count_delta": 100.0,
          "review_count": 577
        }
      },
      {
        "any topic 2": {
          "slug": "very_good_hotel",
          "text": "very good hotel",
          "topic": [
            "overall"
          ],
          "rating": 74.29809358752166,
          "language": "en",
          "sentiment": "positive",
          "review_count": 577
        }
      },
      {
        "any topic 3": {
          "slug": "inferior_bathrooms",
          "text": "inferior bathrooms",
          "score": -0.1652892561983471,
          "topic": [
            "bathroom"
          ],
          "language": "en",
          "sentiment": "negative",
          "review_count": 71,
          "negative_opinions": 59,
          "positive_opinions": 39
        }
      },
      {
        "any topic 4": {
          "slug": "breakfast_is_only_okay",
          "text": "breakfast is only okay",
          "score": 0.24390243902439024,
          "topic": [
            "breakfast"
          ],
          "language": "en",
          "review_count": 38,
          "negative_opinions": 2,
          "positive_opinions": 12
        }
      },
      {
        "any topic 5": {
          "slug": "cleanliness_is_top_notch",
          "text": "cleanliness is top-notch",
          "topic": [
            "cleanliness"
          ],
          "rating": 75.09433962264151,
          "language": "en",
          "sentiment": "positive",
          "review_count": 106
        }
      },
      {
        "any topic 6": {
          "slug": "pretty_good_rooms",
          "text": "pretty good rooms",
          "topic": [
            "room"
          ],
          "rating": 77.02127659574468,
          "language": "en",
          "sentiment": "positive",
          "review_count": 141
        }
      },
      {
        "any topic 7": {
          "slug": "good_service",
          "text": "good service",
          "topic": [
            "service"
          ],
          "rating": 83.90243902439025,
          "language": "en",
          "sentiment": "positive",
          "review_count": 164
        }
      },
      {
        "any topic 8": {
          "slug": "very_fair_prices",
          "text": "very fair prices",
          "topic": [
            "value"
          ],
          "rating": 80.0,
          "language": "en",
          "sentiment": "positive",
          "review_count": 20
        }
      },
      {
        "any topic 9": {
          "slug": "satisfying_restaurant",
          "text": "satisfying restaurant",
          "score": 0.5462962962962963,
          "topic": [
            "restaurant"
          ],
          "language": "en",
          "sentiment": "positive",
          "review_count": 89,
          "negative_opinions": 4,
          "positive_opinions": 63
        }
      },
      {
        "any topic 10": [

        ]
      },
      {
        "any topic 11": [

        ]
      }
    ],
    "nearby_attractions": [
      {
        "id": 3871584,
        "name": "Tybee Island Museum - Battery Garland",
        "rating": 90,
        "distance": 1.6360672741788447,
        "review_count": 71
      },
      {
        "id": 4675605,
        "name": "Tybee Island Marine Science Center",
        "rating": 80,
        "distance": 2.0336614887552207,
        "review_count": 526
      },
      {
        "id": 3853037,
        "name": "Tybee Island Light Station And Museum",
        "rating": 90,
        "distance": 2.070382439637364,
        "review_count": 2657
      },
      {
        "id": 3901354,
        "name": "Tybee Pier",
        "rating": 90,
        "distance": 2.436721726065766,
        "review_count": 298
      },
      {
        "id": 4294159,
        "name": "Cockspur lighthouse",
        "rating": 90,
        "distance": 2.775259841042259,
        "review_count": 218
      },
      {
        "id": 3900314,
        "name": "Bloody Point Lighthouse",
        "rating": 80,
        "distance": 7.375660282032254,
        "review_count": 56
      }
    ],
    "recent_reviews": [
      {
        "source": "booking_com",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 70.0,
            "category": "overall"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Surrounding Area"
            ],
            "topics": [
              "surrounding_area"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Personnel"
            ],
            "topics": [
              "personnel"
            ],
            "ratings": [
              {
                "key": "service",
                "label": "Service",
                "topics": [
                  {
                    "key": "personnel",
                    "label": "Personnel"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 2
          },
          {
            "labels": [
              "Room"
            ],
            "topics": [
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          }
        ],
        "sentiment": "positive",
        "review_date": "2023-04-19",
        "country_code": "US",
        "country_name": "United States",
        "sentiment_score": 1.0,
        "travel_composition": "couples"
      },
      {
        "source": "hotels_com",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 40.0,
            "category": "overall"
          },
          {
            "title": "Cleanliness - General",
            "topic": "cleanliness_general",
            "rating": 40.0,
            "category": "cleanliness"
          },
          {
            "title": "Room - Comfort",
            "topic": "comfort",
            "rating": 20.0,
            "category": "room"
          },
          {
            "title": "Facilities - Condition",
            "topic": "condition",
            "rating": 40.0,
            "category": "facilities"
          },
          {
            "title": "Service - General",
            "topic": "service_general",
            "rating": 80.0,
            "category": "service"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Surrounding Area"
            ],
            "topics": [
              "surrounding_area"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Surrounding Area"
            ],
            "topics": [
              "surrounding_area"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Room"
            ],
            "topics": [
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 2
          },
          {
            "labels": [
              "Bathroom"
            ],
            "topics": [
              "bathroom"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "bathroom",
                    "label": "Bathroom"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Room"
            ],
            "topics": [
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Sound"
            ],
            "topics": [
              "sound"
            ],
            "ratings": [
              {
                "key": "ambience",
                "label": "Ambience",
                "topics": [
                  {
                    "key": "sound",
                    "label": "Sound"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          },
          {
            "labels": [
              "Sports Facilities"
            ],
            "topics": [
              "sports_facilties"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "sports_facilties",
                    "label": "Sports Facilities"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          }
        ],
        "sentiment": "negative",
        "review_date": "2023-04-18",
        "country_code": null,
        "country_name": null,
        "sentiment_score": -0.3333333333333333,
        "travel_composition": "families"
      },
      {
        "source": "booking_com",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 70.0,
            "category": "overall"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Transport"
            ],
            "topics": [
              "transport"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "transport",
                    "label": "Transport"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Surrounding Area"
            ],
            "topics": [
              "surrounding_area"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          }
        ],
        "sentiment": "negative",
        "review_date": "2023-04-17",
        "country_code": "US",
        "country_name": "United States",
        "sentiment_score": -1.0,
        "travel_composition": "couples"
      },
      {
        "source": "booking_com",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 80.0,
            "category": "overall"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Value for money"
            ],
            "topics": [
              "value_for_money"
            ],
            "ratings": [
              {
                "key": "value",
                "label": "Value",
                "topics": [
                  {
                    "key": "value_for_money",
                    "label": "Value for money"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Surrounding Area"
            ],
            "topics": [
              "surrounding_area"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          }
        ],
        "sentiment": "positive",
        "review_date": "2023-04-17",
        "country_code": "US",
        "country_name": "United States",
        "sentiment_score": 1.0,
        "travel_composition": "families"
      },
      {
        "source": "hotels_com",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 80.0,
            "category": "overall"
          },
          {
            "title": "Cleanliness - General",
            "topic": "cleanliness_general",
            "rating": 40.0,
            "category": "cleanliness"
          },
          {
            "title": "Room - Comfort",
            "topic": "comfort",
            "rating": 80.0,
            "category": "room"
          },
          {
            "title": "Facilities - Condition",
            "topic": "condition",
            "rating": 80.0,
            "category": "facilities"
          },
          {
            "title": "Service - General",
            "topic": "service_general",
            "rating": 80.0,
            "category": "service"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Room"
            ],
            "topics": [
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Housekeeping",
              "Room"
            ],
            "topics": [
              "housekeeping",
              "room"
            ],
            "ratings": [
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "housekeeping",
                    "label": "Housekeeping"
                  }
                ]
              },
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Surrounding Area"
            ],
            "topics": [
              "surrounding_area"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Personnel"
            ],
            "topics": [
              "personnel"
            ],
            "ratings": [
              {
                "key": "service",
                "label": "Service",
                "topics": [
                  {
                    "key": "personnel",
                    "label": "Personnel"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Transport"
            ],
            "topics": [
              "transport"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "transport",
                    "label": "Transport"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          }
        ],
        "sentiment": "neutral",
        "review_date": "2023-04-17",
        "country_code": null,
        "country_name": null,
        "sentiment_score": 0.0,
        "travel_composition": "families"
      },
      {
        "source": "booking_com",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 100.0,
            "category": "overall"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Surrounding Area"
            ],
            "topics": [
              "surrounding_area"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Surrounding Area"
            ],
            "topics": [
              "surrounding_area"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Surrounding Area",
              "Restaurant"
            ],
            "topics": [
              "surrounding_area",
              "restaurant"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              },
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "restaurant",
                    "label": "Restaurant"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Restaurant"
            ],
            "topics": [
              "restaurant"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "restaurant",
                    "label": "Restaurant"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Sports Facilities"
            ],
            "topics": [
              "sports_facilties"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "sports_facilties",
                    "label": "Sports Facilities"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Sports Facilities"
            ],
            "topics": [
              "sports_facilties"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "sports_facilties",
                    "label": "Sports Facilities"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          }
        ],
        "sentiment": "positive",
        "review_date": "2023-04-15",
        "country_code": "US",
        "country_name": "United States",
        "sentiment_score": 0.6666666666666666,
        "travel_composition": "families"
      },
      {
        "source": "booking_com",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 10.0,
            "category": "overall"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Room"
            ],
            "topics": [
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Room"
            ],
            "topics": [
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Room",
              "Hygiene"
            ],
            "topics": [
              "room",
              "hygiene"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              },
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "hygiene",
                    "label": "Hygiene"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Room"
            ],
            "topics": [
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 2
          },
          {
            "labels": [
              "Room",
              "Housekeeping",
              "Hygiene",
              "Bathroom"
            ],
            "topics": [
              "room",
              "housekeeping",
              "hygiene",
              "bathroom"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  },
                  {
                    "key": "bathroom",
                    "label": "Bathroom"
                  }
                ]
              },
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "housekeeping",
                    "label": "Housekeeping"
                  },
                  {
                    "key": "hygiene",
                    "label": "Hygiene"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Bathroom",
              "Housekeeping",
              "Hygiene"
            ],
            "topics": [
              "bathroom",
              "housekeeping",
              "hygiene"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "bathroom",
                    "label": "Bathroom"
                  }
                ]
              },
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "housekeeping",
                    "label": "Housekeeping"
                  },
                  {
                    "key": "hygiene",
                    "label": "Hygiene"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Surrounding Area"
            ],
            "topics": [
              "surrounding_area"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Surrounding Area"
            ],
            "topics": [
              "surrounding_area"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          }
        ],
        "sentiment": "positive",
        "review_date": "2023-04-14",
        "country_code": "US",
        "country_name": "United States",
        "sentiment_score": 0.5555555555555556,
        "travel_composition": "group"
      },
      {
        "source": "booking_com",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 70.0,
            "category": "overall"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Value for money"
            ],
            "topics": [
              "value_for_money"
            ],
            "ratings": [
              {
                "key": "value",
                "label": "Value",
                "topics": [
                  {
                    "key": "value_for_money",
                    "label": "Value for money"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Transport"
            ],
            "topics": [
              "transport"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "transport",
                    "label": "Transport"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Transport"
            ],
            "topics": [
              "transport"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "transport",
                    "label": "Transport"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Transport"
            ],
            "topics": [
              "transport"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "transport",
                    "label": "Transport"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Transport"
            ],
            "topics": [
              "transport"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "transport",
                    "label": "Transport"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Personnel"
            ],
            "topics": [
              "personnel"
            ],
            "ratings": [
              {
                "key": "service",
                "label": "Service",
                "topics": [
                  {
                    "key": "personnel",
                    "label": "Personnel"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Checkin"
            ],
            "topics": [
              "checkin"
            ],
            "ratings": [
              {
                "key": "service",
                "label": "Service",
                "topics": [
                  {
                    "key": "checkin",
                    "label": "Checkin"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          }
        ],
        "sentiment": "neutral",
        "review_date": "2023-04-12",
        "country_code": "US",
        "country_name": "United States",
        "sentiment_score": 0.3333333333333333,
        "travel_composition": "families"
      },
      {
        "source": "booking_com",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 100.0,
            "category": "overall"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Personnel"
            ],
            "topics": [
              "personnel"
            ],
            "ratings": [
              {
                "key": "service",
                "label": "Service",
                "topics": [
                  {
                    "key": "personnel",
                    "label": "Personnel"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 3
          },
          {
            "labels": [
              "Housekeeping",
              "Hygiene"
            ],
            "topics": [
              "housekeeping",
              "hygiene"
            ],
            "ratings": [
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "housekeeping",
                    "label": "Housekeeping"
                  },
                  {
                    "key": "hygiene",
                    "label": "Hygiene"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 2
          }
        ],
        "sentiment": "positive",
        "review_date": "2023-04-12",
        "country_code": "US",
        "country_name": "United States",
        "sentiment_score": 1.0,
        "travel_composition": "couples"
      },
      {
        "source": "google",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 100.0,
            "category": "overall"
          },
          {
            "title": "Room - General",
            "topic": "room_general",
            "rating": 100.0,
            "category": "room"
          },
          {
            "title": "Service - General",
            "topic": "service_general",
            "rating": 100.0,
            "category": "service"
          },
          {
            "title": "Location - General",
            "topic": "location_general",
            "rating": 100.0,
            "category": "location"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Room"
            ],
            "topics": [
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 2
          },
          {
            "labels": [
              "Surrounding Area"
            ],
            "topics": [
              "surrounding_area"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Restaurant"
            ],
            "topics": [
              "restaurant"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "restaurant",
                    "label": "Restaurant"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          },
          {
            "labels": [
              "Value for money"
            ],
            "topics": [
              "value_for_money"
            ],
            "ratings": [
              {
                "key": "value",
                "label": "Value",
                "topics": [
                  {
                    "key": "value_for_money",
                    "label": "Value for money"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          }
        ],
        "sentiment": "positive",
        "review_date": "2023-04-11",
        "country_code": null,
        "country_name": null,
        "sentiment_score": 1.0,
        "travel_composition": "families"
      },
      {
        "source": "booking_com",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 80.0,
            "category": "overall"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Transport"
            ],
            "topics": [
              "transport"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "transport",
                    "label": "Transport"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 2
          },
          {
            "labels": [
              "Transport"
            ],
            "topics": [
              "transport"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "transport",
                    "label": "Transport"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Transport",
              "Room"
            ],
            "topics": [
              "transport",
              "room"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "transport",
                    "label": "Transport"
                  }
                ]
              },
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Transport"
            ],
            "topics": [
              "transport"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "transport",
                    "label": "Transport"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Surrounding Area",
              "Value for money"
            ],
            "topics": [
              "surrounding_area",
              "value_for_money"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              },
              {
                "key": "value",
                "label": "Value",
                "topics": [
                  {
                    "key": "value_for_money",
                    "label": "Value for money"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Value for money"
            ],
            "topics": [
              "value_for_money"
            ],
            "ratings": [
              {
                "key": "value",
                "label": "Value",
                "topics": [
                  {
                    "key": "value_for_money",
                    "label": "Value for money"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          }
        ],
        "sentiment": "negative",
        "review_date": "2023-04-10",
        "country_code": "US",
        "country_name": "United States",
        "sentiment_score": -0.42857142857142855,
        "travel_composition": "families"
      },
      {
        "source": "booking_com",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 50.0,
            "category": "overall"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Sanitary Safety"
            ],
            "topics": [
              "sanitary_safety"
            ],
            "ratings": [
              {
                "key": null,
                "label": null,
                "topics": [
                  {
                    "key": "sanitary_safety",
                    "label": "Sanitary Safety"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 2
          },
          {
            "labels": [
              "Bathroom"
            ],
            "topics": [
              "bathroom"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "bathroom",
                    "label": "Bathroom"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          },
          {
            "labels": [
              "Housekeeping",
              "Hygiene"
            ],
            "topics": [
              "housekeeping",
              "hygiene"
            ],
            "ratings": [
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "housekeeping",
                    "label": "Housekeeping"
                  },
                  {
                    "key": "hygiene",
                    "label": "Hygiene"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          },
          {
            "labels": [
              "Personnel"
            ],
            "topics": [
              "personnel"
            ],
            "ratings": [
              {
                "key": "service",
                "label": "Service",
                "topics": [
                  {
                    "key": "personnel",
                    "label": "Personnel"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          },
          {
            "labels": [
              "Room"
            ],
            "topics": [
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          },
          {
            "labels": [
              "Surrounding Area"
            ],
            "topics": [
              "surrounding_area"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          }
        ],
        "sentiment": "negative",
        "review_date": "2023-04-08",
        "country_code": "US",
        "country_name": "United States",
        "sentiment_score": -1.0,
        "travel_composition": "families"
      },
      {
        "source": "booking_com",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 80.0,
            "category": "overall"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Housekeeping",
              "Room"
            ],
            "topics": [
              "housekeeping",
              "room"
            ],
            "ratings": [
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "housekeeping",
                    "label": "Housekeeping"
                  }
                ]
              },
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Room"
            ],
            "topics": [
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Bathroom"
            ],
            "topics": [
              "bathroom"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "bathroom",
                    "label": "Bathroom"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          },
          {
            "labels": [
              "Surrounding Area"
            ],
            "topics": [
              "surrounding_area"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          }
        ],
        "sentiment": "neutral",
        "review_date": "2023-04-08",
        "country_code": "US",
        "country_name": "United States",
        "sentiment_score": 0.0,
        "travel_composition": "group"
      },
      {
        "source": "hotels_com",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 80.0,
            "category": "overall"
          },
          {
            "title": "Cleanliness - General",
            "topic": "cleanliness_general",
            "rating": 80.0,
            "category": "cleanliness"
          },
          {
            "title": "Room - Comfort",
            "topic": "comfort",
            "rating": 80.0,
            "category": "room"
          },
          {
            "title": "Facilities - Condition",
            "topic": "condition",
            "rating": 80.0,
            "category": "facilities"
          },
          {
            "title": "Service - General",
            "topic": "service_general",
            "rating": 80.0,
            "category": "service"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Housekeeping",
              "Hygiene",
              "Room"
            ],
            "topics": [
              "housekeeping",
              "hygiene",
              "room"
            ],
            "ratings": [
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "housekeeping",
                    "label": "Housekeeping"
                  },
                  {
                    "key": "hygiene",
                    "label": "Hygiene"
                  }
                ]
              },
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 2
          },
          {
            "labels": [
              "Bathroom",
              "Sustainable Travel"
            ],
            "topics": [
              "bathroom",
              "sustainable_travel"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "bathroom",
                    "label": "Bathroom"
                  }
                ]
              },
              {
                "key": null,
                "label": null,
                "topics": [
                  {
                    "key": "sustainable_travel",
                    "label": "Sustainable Travel"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Bathroom",
              "Sustainable Travel"
            ],
            "topics": [
              "bathroom",
              "sustainable_travel"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "bathroom",
                    "label": "Bathroom"
                  }
                ]
              },
              {
                "key": null,
                "label": null,
                "topics": [
                  {
                    "key": "sustainable_travel",
                    "label": "Sustainable Travel"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Restaurant"
            ],
            "topics": [
              "restaurant"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "restaurant",
                    "label": "Restaurant"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          }
        ],
        "sentiment": "neutral",
        "review_date": "2023-04-07",
        "country_code": null,
        "country_name": null,
        "sentiment_score": 0.5,
        "travel_composition": "families"
      },
      {
        "source": "expedia",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 40.0,
            "category": "overall"
          },
          {
            "title": "Cleanliness - General",
            "topic": "cleanliness_general",
            "rating": 60.0,
            "category": "cleanliness"
          },
          {
            "title": "Facilities - Condition",
            "topic": "condition",
            "rating": 40.0,
            "category": "facilities"
          },
          {
            "title": "Service - Staff",
            "topic": "staff",
            "rating": 80.0,
            "category": "service"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Housekeeping"
            ],
            "topics": [
              "housekeeping"
            ],
            "ratings": [
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "housekeeping",
                    "label": "Housekeeping"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Bathroom"
            ],
            "topics": [
              "bathroom"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "bathroom",
                    "label": "Bathroom"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Sound",
              "Room"
            ],
            "topics": [
              "sound",
              "room"
            ],
            "ratings": [
              {
                "key": "ambience",
                "label": "Ambience",
                "topics": [
                  {
                    "key": "sound",
                    "label": "Sound"
                  }
                ]
              },
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 2
          },
          {
            "labels": [
              "Room"
            ],
            "topics": [
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 2
          },
          {
            "labels": [
              "Sustainable Travel"
            ],
            "topics": [
              "sustainable_travel"
            ],
            "ratings": [
              {
                "key": null,
                "label": null,
                "topics": [
                  {
                    "key": "sustainable_travel",
                    "label": "Sustainable Travel"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          }
        ],
        "sentiment": "negative",
        "review_date": "2023-04-07",
        "country_code": null,
        "country_name": null,
        "sentiment_score": -1.0,
        "travel_composition": "families"
      },
      {
        "source": "google",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 80.0,
            "category": "overall"
          },
          {
            "title": "Room - General",
            "topic": "room_general",
            "rating": 80.0,
            "category": "room"
          },
          {
            "title": "Service - General",
            "topic": "service_general",
            "rating": 80.0,
            "category": "service"
          },
          {
            "title": "Location - General",
            "topic": "location_general",
            "rating": 100.0,
            "category": "location"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Surrounding Area"
            ],
            "topics": [
              "surrounding_area"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Value for money"
            ],
            "topics": [
              "value_for_money"
            ],
            "ratings": [
              {
                "key": "value",
                "label": "Value",
                "topics": [
                  {
                    "key": "value_for_money",
                    "label": "Value for money"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 2
          },
          {
            "labels": [
              "Transport"
            ],
            "topics": [
              "transport"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "transport",
                    "label": "Transport"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Transport"
            ],
            "topics": [
              "transport"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "transport",
                    "label": "Transport"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Food",
              "Restaurant",
              "Drink"
            ],
            "topics": [
              "food",
              "restaurant",
              "drink"
            ],
            "ratings": [
              {
                "key": "fnb",
                "label": "Food & Beverages",
                "topics": [
                  {
                    "key": "food",
                    "label": "Food"
                  },
                  {
                    "key": "drink",
                    "label": "Drink"
                  }
                ]
              },
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "restaurant",
                    "label": "Restaurant"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Drink",
              "Restaurant"
            ],
            "topics": [
              "drink",
              "restaurant"
            ],
            "ratings": [
              {
                "key": "fnb",
                "label": "Food & Beverages",
                "topics": [
                  {
                    "key": "drink",
                    "label": "Drink"
                  }
                ]
              },
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "restaurant",
                    "label": "Restaurant"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          }
        ],
        "sentiment": "neutral",
        "review_date": "2023-04-07",
        "country_code": null,
        "country_name": null,
        "sentiment_score": 0.14285714285714285,
        "travel_composition": "couples"
      },
      {
        "source": "booking_com",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 40.0,
            "category": "overall"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Room"
            ],
            "topics": [
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Room",
              "Bathroom",
              "Hygiene"
            ],
            "topics": [
              "room",
              "bathroom",
              "hygiene"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  },
                  {
                    "key": "bathroom",
                    "label": "Bathroom"
                  }
                ]
              },
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "hygiene",
                    "label": "Hygiene"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Room"
            ],
            "topics": [
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Bathroom",
              "Hygiene"
            ],
            "topics": [
              "bathroom",
              "hygiene"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "bathroom",
                    "label": "Bathroom"
                  }
                ]
              },
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "hygiene",
                    "label": "Hygiene"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Bathroom",
              "Odor",
              "Room"
            ],
            "topics": [
              "bathroom",
              "odor",
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "bathroom",
                    "label": "Bathroom"
                  },
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              },
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "odor",
                    "label": "Odor"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Room",
              "Hygiene",
              "Sanitary Safety",
              "Housekeeping"
            ],
            "topics": [
              "room",
              "hygiene",
              "sanitary_safety",
              "housekeeping"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              },
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "hygiene",
                    "label": "Hygiene"
                  },
                  {
                    "key": "housekeeping",
                    "label": "Housekeeping"
                  }
                ]
              },
              {
                "key": null,
                "label": null,
                "topics": [
                  {
                    "key": "sanitary_safety",
                    "label": "Sanitary Safety"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Restaurant"
            ],
            "topics": [
              "restaurant"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "restaurant",
                    "label": "Restaurant"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          }
        ],
        "sentiment": "negative",
        "review_date": "2023-04-07",
        "country_code": "US",
        "country_name": "United States",
        "sentiment_score": -0.14285714285714285,
        "travel_composition": "families"
      },
      {
        "source": "booking_com",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 50.0,
            "category": "overall"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Sanitary Safety"
            ],
            "topics": [
              "sanitary_safety"
            ],
            "ratings": [
              {
                "key": null,
                "label": null,
                "topics": [
                  {
                    "key": "sanitary_safety",
                    "label": "Sanitary Safety"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 2
          },
          {
            "labels": [
              "Bathroom"
            ],
            "topics": [
              "bathroom"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "bathroom",
                    "label": "Bathroom"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Sports Facilities"
            ],
            "topics": [
              "sports_facilties"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "sports_facilties",
                    "label": "Sports Facilities"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Sanitary Safety"
            ],
            "topics": [
              "sanitary_safety"
            ],
            "ratings": [
              {
                "key": null,
                "label": null,
                "topics": [
                  {
                    "key": "sanitary_safety",
                    "label": "Sanitary Safety"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Sanitary Safety"
            ],
            "topics": [
              "sanitary_safety"
            ],
            "ratings": [
              {
                "key": null,
                "label": null,
                "topics": [
                  {
                    "key": "sanitary_safety",
                    "label": "Sanitary Safety"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Room"
            ],
            "topics": [
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Room",
              "Housekeeping",
              "Hygiene"
            ],
            "topics": [
              "room",
              "housekeeping",
              "hygiene"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              },
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "housekeeping",
                    "label": "Housekeeping"
                  },
                  {
                    "key": "hygiene",
                    "label": "Hygiene"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Surrounding Area"
            ],
            "topics": [
              "surrounding_area"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 1
          },
          {
            "labels": [
              "Transport",
              "Value for money"
            ],
            "topics": [
              "transport",
              "value_for_money"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "transport",
                    "label": "Transport"
                  }
                ]
              },
              {
                "key": "value",
                "label": "Value",
                "topics": [
                  {
                    "key": "value_for_money",
                    "label": "Value for money"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Personnel"
            ],
            "topics": [
              "personnel"
            ],
            "ratings": [
              {
                "key": "service",
                "label": "Service",
                "topics": [
                  {
                    "key": "personnel",
                    "label": "Personnel"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Personnel"
            ],
            "topics": [
              "personnel"
            ],
            "ratings": [
              {
                "key": "service",
                "label": "Service",
                "topics": [
                  {
                    "key": "personnel",
                    "label": "Personnel"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          }
        ],
        "sentiment": "neutral",
        "review_date": "2023-04-07",
        "country_code": "US",
        "country_name": "United States",
        "sentiment_score": 0.16666666666666666,
        "travel_composition": "families"
      },
      {
        "source": "booking_com",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 60.0,
            "category": "overall"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Bathroom",
              "Hygiene"
            ],
            "topics": [
              "bathroom",
              "hygiene"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "bathroom",
                    "label": "Bathroom"
                  }
                ]
              },
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "hygiene",
                    "label": "Hygiene"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 3
          },
          {
            "labels": [
              "Bathroom",
              "Hygiene",
              "Housekeeping"
            ],
            "topics": [
              "bathroom",
              "hygiene",
              "housekeeping"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "bathroom",
                    "label": "Bathroom"
                  }
                ]
              },
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "hygiene",
                    "label": "Hygiene"
                  },
                  {
                    "key": "housekeeping",
                    "label": "Housekeeping"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Bathroom",
              "Hygiene"
            ],
            "topics": [
              "bathroom",
              "hygiene"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "bathroom",
                    "label": "Bathroom"
                  }
                ]
              },
              {
                "key": "cleanliness",
                "label": "Cleanliness",
                "topics": [
                  {
                    "key": "hygiene",
                    "label": "Hygiene"
                  }
                ]
              }
            ],
            "polarity": "negative",
            "strength": 2
          },
          {
            "labels": [
              "Transport"
            ],
            "topics": [
              "transport"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "transport",
                    "label": "Transport"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Transport"
            ],
            "topics": [
              "transport"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "transport",
                    "label": "Transport"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 2
          },
          {
            "labels": [
              "Transport"
            ],
            "topics": [
              "transport"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "transport",
                    "label": "Transport"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Surrounding Area"
            ],
            "topics": [
              "surrounding_area"
            ],
            "ratings": [
              {
                "key": "location",
                "label": "Location",
                "topics": [
                  {
                    "key": "surrounding_area",
                    "label": "Surrounding Area"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Sound"
            ],
            "topics": [
              "sound"
            ],
            "ratings": [
              {
                "key": "ambience",
                "label": "Ambience",
                "topics": [
                  {
                    "key": "sound",
                    "label": "Sound"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          }
        ],
        "sentiment": "neutral",
        "review_date": "2023-04-07",
        "country_code": "US",
        "country_name": "United States",
        "sentiment_score": 0.09090909090909091,
        "travel_composition": "families"
      },
      {
        "source": "trip_advisor",
        "ratings": [
          {
            "title": "Overall - General",
            "topic": "overall_general",
            "rating": 100.0,
            "category": "overall"
          },
          {
            "title": "Value - General",
            "topic": "value_general",
            "rating": 100.0,
            "category": "value"
          },
          {
            "title": "Room - General",
            "topic": "room_general",
            "rating": 100.0,
            "category": "room"
          },
          {
            "title": "Location - General",
            "topic": "location_general",
            "rating": 100.0,
            "category": "location"
          },
          {
            "title": "Cleanliness - General",
            "topic": "cleanliness_general",
            "rating": 100.0,
            "category": "cleanliness"
          },
          {
            "title": "Service - General",
            "topic": "service_general",
            "rating": 100.0,
            "category": "service"
          },
          {
            "title": "Room - Sleep Quality",
            "topic": "sleep_quality",
            "rating": 100.0,
            "category": "room"
          }
        ],
        "opinions": [
          {
            "labels": [
              "Room"
            ],
            "topics": [
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Room"
            ],
            "topics": [
              "room"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "room",
                    "label": "Room"
                  }
                ]
              }
            ],
            "polarity": "positive",
            "strength": 1
          },
          {
            "labels": [
              "Bar"
            ],
            "topics": [
              "bar"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "bar",
                    "label": "Bar"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          },
          {
            "labels": [
              "Sports Facilities"
            ],
            "topics": [
              "sports_facilties"
            ],
            "ratings": [
              {
                "key": "facilities",
                "label": "Facilities",
                "topics": [
                  {
                    "key": "sports_facilties",
                    "label": "Sports Facilities"
                  }
                ]
              }
            ],
            "polarity": "neutral",
            "strength": 1
          }
        ],
        "sentiment": "positive",
        "review_date": "2023-04-06",
        "country_code": null,
        "country_name": null,
        "sentiment_score": 1.0,
        "travel_composition": null
      }
    ],
    "nearby_restaurants": [
      {
        "id": 5772275,
        "name": "Raw Ingredients",
        "rating": 100,
        "distance": 0.020317417270065346,
        "review_count": 51
      },
      {
        "id": 6162934,
        "name": "Seaside Sweets",
        "rating": 90,
        "distance": 0.020544486860810122,
        "review_count": 156
      },
      {
        "id": 6735576,
        "name": "Wind Rose Cafe",
        "rating": 80,
        "distance": 0.023258122441885288,
        "review_count": 71
      },
      {
        "id": 5540378,
        "name": "Bernie's Oyster House",
        "rating": 80,
        "distance": 0.02496835126642679,
        "review_count": 430
      },
      {
        "id": 6177759,
        "name": "Rock House",
        "rating": 80,
        "distance": 0.0420947381554308,
        "review_count": 839
      },
      {
        "id": 6810615,
        "name": "Nickie's 1971",
        "rating": 80,
        "distance": 0.06597759903680454,
        "review_count": 52
      },
      {
        "id": 6766231,
        "name": "Sunrise Restaurant",
        "rating": 80,
        "distance": 0.07178963002298132,
        "review_count": 775
      },
      {
        "id": 6734709,
        "name": "Spanky's Beachside",
        "rating": 80,
        "distance": 0.08095086885629056,
        "review_count": 717
      },
      {
        "id": 9182082,
        "name": "Pier 16 Seafood",
        "rating": 80,
        "distance": 0.08154481544358243,
        "review_count": 113
      },
      {
        "id": 6734827,
        "name": "Breakfast Club",
        "rating": 80,
        "distance": 0.09618887324656936,
        "review_count": 1660
      },
      {
        "id": 7037573,
        "name": "Fannie's on the Beach",
        "rating": 70,
        "distance": 0.11856917558350441,
        "review_count": 1354
      },
      {
        "id": 6855126,
        "name": "Seaweed's Sno-Balls and Ice Cream",
        "rating": 90,
        "distance": 0.16738001457776036,
        "review_count": 118
      },
      {
        "id": 6735250,
        "name": "StingRay's on Tybee",
        "rating": 80,
        "distance": 0.19444067703326506,
        "review_count": 2326
      },
      {
        "id": 6297422,
        "name": "Chamacos Tacos & Surf",
        "rating": 90,
        "distance": 0.23179935595409343,
        "review_count": 74
      },
      {
        "id": 7838912,
        "name": "Tybee Market",
        "rating": 90,
        "distance": 0.4497492982041949,
        "review_count": 118
      },
      {
        "id": 6735571,
        "name": "A-J's Dockside Restaurant",
        "rating": 80,
        "distance": 0.5121120135540375,
        "review_count": 2105
      },
      {
        "id": 5399493,
        "name": "The Deck Beachbar and Kitchen",
        "rating": 80,
        "distance": 1.1891272865943845,
        "review_count": 168
      },
      {
        "id": 6734836,
        "name": "Pizza On Wheels",
        "rating": 80,
        "distance": 1.4327687609964777,
        "review_count": 177
      },
      {
        "id": 6023725,
        "name": "Salt Island Fish & Beer",
        "rating": 90,
        "distance": 1.4418243197724792,
        "review_count": 196
      },
      {
        "id": 7137690,
        "name": "Sundae Cafe",
        "rating": 90,
        "distance": 1.4440744828189391,
        "review_count": 2014
      }
    ],
    "reviews_over_time": {
      "company": {
        "current": {
          "year": [
            {
              "date": "2022-04-17",
              "count": 17,
              "percentage": 2.946273830155979
            },
            {
              "date": "2022-05-17",
              "count": 36,
              "percentage": 6.239168110918544
            },
            {
              "date": "2022-06-17",
              "count": 63,
              "percentage": 10.918544194107453
            },
            {
              "date": "2022-07-17",
              "count": 81,
              "percentage": 14.038128249566725
            },
            {
              "date": "2022-08-17",
              "count": 69,
              "percentage": 11.95840554592721
            },
            {
              "date": "2022-09-17",
              "count": 51,
              "percentage": 8.838821490467938
            },
            {
              "date": "2022-10-17",
              "count": 30,
              "percentage": 5.1993067590987865
            },
            {
              "date": "2022-11-17",
              "count": 28,
              "percentage": 4.852686308492201
            },
            {
              "date": "2022-12-17",
              "count": 22,
              "percentage": 3.8128249566724435
            },
            {
              "date": "2023-01-17",
              "count": 22,
              "percentage": 3.8128249566724435
            },
            {
              "date": "2023-02-17",
              "count": 46,
              "percentage": 7.972270363951473
            },
            {
              "date": "2023-03-17",
              "count": 59,
              "percentage": 10.225303292894282
            },
            {
              "date": "2023-04-17",
              "count": 53,
              "percentage": 9.185441941074524
            }
          ],
          "quarter": [
            {
              "date": "2023-01-23",
              "count": 3,
              "percentage": 1.829268292682927
            },
            {
              "date": "2023-01-30",
              "count": 6,
              "percentage": 3.658536585365854
            },
            {
              "date": "2023-02-06",
              "count": 8,
              "percentage": 4.878048780487805
            },
            {
              "date": "2023-02-13",
              "count": 10,
              "percentage": 6.097560975609756
            },
            {
              "date": "2023-02-20",
              "count": 16,
              "percentage": 9.75609756097561
            },
            {
              "date": "2023-02-27",
              "count": 17,
              "percentage": 10.365853658536585
            },
            {
              "date": "2023-03-06",
              "count": 12,
              "percentage": 7.317073170731708
            },
            {
              "date": "2023-03-13",
              "count": 14,
              "percentage": 8.536585365853659
            },
            {
              "date": "2023-03-20",
              "count": 13,
              "percentage": 7.926829268292683
            },
            {
              "date": "2023-03-27",
              "count": 16,
              "percentage": 9.75609756097561
            },
            {
              "date": "2023-04-03",
              "count": 26,
              "percentage": 15.853658536585366
            },
            {
              "date": "2023-04-10",
              "count": 19,
              "percentage": 11.585365853658537
            },
            {
              "date": "2023-04-17",
              "count": 4,
              "percentage": 2.4390243902439024
            }
          ]
        },
        "previous": {
          "year": [
            {
              "date": "2021-04-18",
              "count": 42,
              "percentage": 6.666666666666667
            },
            {
              "date": "2021-05-18",
              "count": 95,
              "percentage": 15.079365079365079
            },
            {
              "date": "2021-06-18",
              "count": 99,
              "percentage": 15.714285714285714
            },
            {
              "date": "2021-07-18",
              "count": 95,
              "percentage": 15.079365079365079
            },
            {
              "date": "2021-08-18",
              "count": 69,
              "percentage": 10.952380952380953
            },
            {
              "date": "2021-09-18",
              "count": 33,
              "percentage": 5.238095238095238
            },
            {
              "date": "2021-10-18",
              "count": 43,
              "percentage": 6.825396825396825
            },
            {
              "date": "2021-11-18",
              "count": 27,
              "percentage": 4.285714285714286
            },
            {
              "date": "2021-12-18",
              "count": 24,
              "percentage": 3.8095238095238093
            },
            {
              "date": "2022-01-18",
              "count": 27,
              "percentage": 4.285714285714286
            },
            {
              "date": "2022-02-18",
              "count": 20,
              "percentage": 3.1746031746031744
            },
            {
              "date": "2022-03-18",
              "count": 21,
              "percentage": 3.3333333333333335
            },
            {
              "date": "2022-04-18",
              "count": 35,
              "percentage": 5.555555555555555
            }
          ],
          "quarter": [
            {
              "date": "2022-01-24",
              "count": 4,
              "percentage": 4.878048780487805
            },
            {
              "date": "2022-01-31",
              "count": 5,
              "percentage": 6.097560975609756
            },
            {
              "date": "2022-02-07",
              "count": 0,
              "percentage": 0
            },
            {
              "date": "2022-02-14",
              "count": 3,
              "percentage": 3.658536585365854
            },
            {
              "date": "2022-02-21",
              "count": 11,
              "percentage": 13.414634146341463
            },
            {
              "date": "2022-02-28",
              "count": 5,
              "percentage": 6.097560975609756
            },
            {
              "date": "2022-03-07",
              "count": 6,
              "percentage": 7.317073170731708
            },
            {
              "date": "2022-03-14",
              "count": 3,
              "percentage": 3.658536585365854
            },
            {
              "date": "2022-03-21",
              "count": 6,
              "percentage": 7.317073170731708
            },
            {
              "date": "2022-03-28",
              "count": 5,
              "percentage": 6.097560975609756
            },
            {
              "date": "2022-04-04",
              "count": 10,
              "percentage": 12.195121951219512
            },
            {
              "date": "2022-04-11",
              "count": 22,
              "percentage": 26.829268292682926
            },
            {
              "date": "2022-04-18",
              "count": 2,
              "percentage": 2.4390243902439024
            }
          ]
        }
      },
      "country": {
        "current": {
          "year": [

          ],
          "quarter": [

          ]
        }
      },
      "continent": {
        "current": {
          "year": [

          ],
          "quarter": [

          ]
        }
      }
    },
    "events": {
      "country": {
        "quarter": [
          {
            "date": "2022-12-05",
            "count": null
          },
          {
            "date": "2022-12-12",
            "count": null
          },
          {
            "date": "2022-12-19",
            "count": null
          },
          {
            "date": "2022-12-26",
            "count": null
          },
          {
            "date": "2023-01-02",
            "count": null
          },
          {
            "date": "2023-01-09",
            "count": null
          },
          {
            "date": "2023-01-16",
            "count": null
          },
          {
            "date": "2023-01-23",
            "count": null
          },
          {
            "date": "2023-01-30",
            "count": null
          },
          {
            "date": "2023-02-06",
            "count": null
          },
          {
            "date": "2023-02-13",
            "count": null
          },
          {
            "date": "2023-02-20",
            "count": null
          },
          {
            "date": "2023-02-27",
            "count": null
          }
        ],
        "year": [
          {
            "date": "2022-02-28",
            "count": 7464
          },
          {
            "date": "2022-03-28",
            "count": 1118033
          },
          {
            "date": "2022-04-28",
            "count": 1268480
          },
          {
            "date": "2022-05-28",
            "count": 2686692
          },
          {
            "date": "2022-06-28",
            "count": 3475219
          },
          {
            "date": "2022-07-28",
            "count": 3821532
          },
          {
            "date": "2022-08-28",
            "count": 3070355
          },
          {
            "date": "2022-09-28",
            "count": 1968480
          },
          {
            "date": "2022-10-28",
            "count": 49891
          },
          {
            "date": "2022-11-28",
            "count": null
          },
          {
            "date": "2022-12-28",
            "count": null
          },
          {
            "date": "2023-01-28",
            "count": null
          },
          {
            "date": "2023-02-28",
            "count": null
          }
        ]
      },
      "continents": {
        "asia": {
          "quarter": [
            {
              "date": "2022-11-28",
              "count": null
            },
            {
              "date": "2022-12-05",
              "count": null
            },
            {
              "date": "2022-12-12",
              "count": null
            },
            {
              "date": "2022-12-19",
              "count": null
            },
            {
              "date": "2022-12-26",
              "count": null
            },
            {
              "date": "2023-01-02",
              "count": null
            },
            {
              "date": "2023-01-09",
              "count": null
            },
            {
              "date": "2023-01-16",
              "count": null
            },
            {
              "date": "2023-01-23",
              "count": null
            },
            {
              "date": "2023-01-30",
              "count": null
            },
            {
              "date": "2023-02-06",
              "count": null
            },
            {
              "date": "2023-02-13",
              "count": null
            },
            {
              "date": "2023-02-20",
              "count": null
            }
          ],
          "year": [
            {
              "date": "2022-02-25",
              "count": 2088101
            },
            {
              "date": "2022-03-25",
              "count": 22011159
            },
            {
              "date": "2022-04-25",
              "count": 8967074
            },
            {
              "date": "2022-05-25",
              "count": 4639371
            },
            {
              "date": "2022-06-25",
              "count": 3925861
            },
            {
              "date": "2022-07-25",
              "count": 7768704
            },
            {
              "date": "2022-08-25",
              "count": 12675133
            },
            {
              "date": "2022-09-25",
              "count": 6003352
            },
            {
              "date": "2022-10-25",
              "count": 193936
            },
            {
              "date": "2022-11-25",
              "count": null
            },
            {
              "date": "2022-12-25",
              "count": null
            },
            {
              "date": "2023-01-25",
              "count": null
            },
            {
              "date": "2023-02-25",
              "count": null
            }
          ]
        },
        "south-america": {
          "quarter": [
            {
              "date": "2022-11-28",
              "count": null
            },
            {
              "date": "2022-12-05",
              "count": null
            },
            {
              "date": "2022-12-12",
              "count": null
            },
            {
              "date": "2022-12-19",
              "count": null
            },
            {
              "date": "2022-12-26",
              "count": null
            },
            {
              "date": "2023-01-02",
              "count": null
            },
            {
              "date": "2023-01-09",
              "count": null
            },
            {
              "date": "2023-01-16",
              "count": null
            },
            {
              "date": "2023-01-23",
              "count": null
            },
            {
              "date": "2023-01-30",
              "count": null
            },
            {
              "date": "2023-02-06",
              "count": null
            },
            {
              "date": "2023-02-13",
              "count": null
            },
            {
              "date": "2023-02-20",
              "count": null
            }
          ],
          "year": [
            {
              "date": "2022-02-25",
              "count": 479994
            },
            {
              "date": "2022-03-25",
              "count": 1858554
            },
            {
              "date": "2022-04-25",
              "count": 693958
            },
            {
              "date": "2022-05-25",
              "count": 909121
            },
            {
              "date": "2022-06-25",
              "count": 1835870
            },
            {
              "date": "2022-07-25",
              "count": 2627449
            },
            {
              "date": "2022-08-25",
              "count": 1406715
            },
            {
              "date": "2022-09-25",
              "count": 461571
            },
            {
              "date": "2022-10-25",
              "count": 33326
            },
            {
              "date": "2022-11-25",
              "count": null
            },
            {
              "date": "2022-12-25",
              "count": null
            },
            {
              "date": "2023-01-25",
              "count": null
            },
            {
              "date": "2023-02-25",
              "count": null
            }
          ]
        },
        "north-america": {
          "quarter": [
            {
              "date": "2022-11-28",
              "count": null
            },
            {
              "date": "2022-12-05",
              "count": null
            },
            {
              "date": "2022-12-12",
              "count": null
            },
            {
              "date": "2022-12-19",
              "count": null
            },
            {
              "date": "2022-12-26",
              "count": null
            },
            {
              "date": "2023-01-02",
              "count": null
            },
            {
              "date": "2023-01-09",
              "count": null
            },
            {
              "date": "2023-01-16",
              "count": null
            },
            {
              "date": "2023-01-23",
              "count": null
            },
            {
              "date": "2023-01-30",
              "count": null
            },
            {
              "date": "2023-02-06",
              "count": null
            },
            {
              "date": "2023-02-13",
              "count": null
            },
            {
              "date": "2023-02-20",
              "count": null
            }
          ],
          "year": [
            {
              "date": "2022-02-25",
              "count": 305567
            },
            {
              "date": "2022-03-25",
              "count": 1624152
            },
            {
              "date": "2022-04-25",
              "count": 1730232
            },
            {
              "date": "2022-05-25",
              "count": 3025280
            },
            {
              "date": "2022-06-25",
              "count": 3940325
            },
            {
              "date": "2022-07-25",
              "count": 5059052
            },
            {
              "date": "2022-08-25",
              "count": 3693188
            },
            {
              "date": "2022-09-25",
              "count": 2209049
            },
            {
              "date": "2022-10-25",
              "count": 57717
            },
            {
              "date": "2022-11-25",
              "count": null
            },
            {
              "date": "2022-12-25",
              "count": null
            },
            {
              "date": "2023-01-25",
              "count": null
            },
            {
              "date": "2023-02-25",
              "count": null
            }
          ]
        },
        "oceania": {
          "quarter": [
            {
              "date": "2022-11-28",
              "count": null
            },
            {
              "date": "2022-12-05",
              "count": null
            },
            {
              "date": "2022-12-12",
              "count": null
            },
            {
              "date": "2022-12-19",
              "count": null
            },
            {
              "date": "2022-12-26",
              "count": null
            },
            {
              "date": "2023-01-02",
              "count": null
            },
            {
              "date": "2023-01-09",
              "count": null
            },
            {
              "date": "2023-01-16",
              "count": null
            },
            {
              "date": "2023-01-23",
              "count": null
            },
            {
              "date": "2023-01-30",
              "count": null
            },
            {
              "date": "2023-02-06",
              "count": null
            },
            {
              "date": "2023-02-13",
              "count": null
            },
            {
              "date": "2023-02-20",
              "count": null
            }
          ],
          "year": [
            {
              "date": "2022-02-25",
              "count": 127414
            },
            {
              "date": "2022-03-25",
              "count": 1891189
            },
            {
              "date": "2022-04-25",
              "count": 1715883
            },
            {
              "date": "2022-05-25",
              "count": 1593217
            },
            {
              "date": "2022-06-25",
              "count": 1039160
            },
            {
              "date": "2022-07-25",
              "count": 1559088
            },
            {
              "date": "2022-08-25",
              "count": 765866
            },
            {
              "date": "2022-09-25",
              "count": 253124
            },
            {
              "date": "2022-10-25",
              "count": 2225
            },
            {
              "date": "2022-11-25",
              "count": null
            },
            {
              "date": "2022-12-25",
              "count": null
            },
            {
              "date": "2023-01-25",
              "count": null
            },
            {
              "date": "2023-02-25",
              "count": null
            }
          ]
        },
        "antarctica": {
          "quarter": [
            {
              "date": "2022-11-28",
              "count": null
            },
            {
              "date": "2022-12-05",
              "count": null
            },
            {
              "date": "2022-12-12",
              "count": null
            },
            {
              "date": "2022-12-19",
              "count": null
            },
            {
              "date": "2022-12-26",
              "count": null
            },
            {
              "date": "2023-01-02",
              "count": null
            },
            {
              "date": "2023-01-09",
              "count": null
            },
            {
              "date": "2023-01-16",
              "count": null
            },
            {
              "date": "2023-01-23",
              "count": null
            },
            {
              "date": "2023-01-30",
              "count": null
            },
            {
              "date": "2023-02-06",
              "count": null
            },
            {
              "date": "2023-02-13",
              "count": null
            },
            {
              "date": "2023-02-20",
              "count": null
            }
          ],
          "year": [
            {
              "date": "2022-02-25",
              "count": 0
            },
            {
              "date": "2022-03-25",
              "count": 0
            },
            {
              "date": "2022-04-25",
              "count": 0
            },
            {
              "date": "2022-05-25",
              "count": 0
            },
            {
              "date": "2022-06-25",
              "count": 0
            },
            {
              "date": "2022-07-25",
              "count": 0
            },
            {
              "date": "2022-08-25",
              "count": 0
            },
            {
              "date": "2022-09-25",
              "count": 0
            },
            {
              "date": "2022-10-25",
              "count": 0
            },
            {
              "date": "2022-11-25",
              "count": null
            },
            {
              "date": "2022-12-25",
              "count": null
            },
            {
              "date": "2023-01-25",
              "count": null
            },
            {
              "date": "2023-02-25",
              "count": null
            }
          ]
        },
        "africa": {
          "quarter": [
            {
              "date": "2022-11-28",
              "count": null
            },
            {
              "date": "2022-12-05",
              "count": null
            },
            {
              "date": "2022-12-12",
              "count": null
            },
            {
              "date": "2022-12-19",
              "count": null
            },
            {
              "date": "2022-12-26",
              "count": null
            },
            {
              "date": "2023-01-02",
              "count": null
            },
            {
              "date": "2023-01-09",
              "count": null
            },
            {
              "date": "2023-01-16",
              "count": null
            },
            {
              "date": "2023-01-23",
              "count": null
            },
            {
              "date": "2023-01-30",
              "count": null
            },
            {
              "date": "2023-02-06",
              "count": null
            },
            {
              "date": "2023-02-13",
              "count": null
            },
            {
              "date": "2023-02-20",
              "count": null
            }
          ],
          "year": [
            {
              "date": "2022-02-25",
              "count": 32500
            },
            {
              "date": "2022-03-25",
              "count": 329489
            },
            {
              "date": "2022-04-25",
              "count": 110887
            },
            {
              "date": "2022-05-25",
              "count": 271939
            },
            {
              "date": "2022-06-25",
              "count": 174772
            },
            {
              "date": "2022-07-25",
              "count": 203759
            },
            {
              "date": "2022-08-25",
              "count": 67484
            },
            {
              "date": "2022-09-25",
              "count": 30849
            },
            {
              "date": "2022-10-25",
              "count": 1105
            },
            {
              "date": "2022-11-25",
              "count": null
            },
            {
              "date": "2022-12-25",
              "count": null
            },
            {
              "date": "2023-01-25",
              "count": null
            },
            {
              "date": "2023-02-25",
              "count": null
            }
          ]
        },
        "europe": {
          "quarter": [
            {
              "date": "2022-11-28",
              "count": null
            },
            {
              "date": "2022-12-05",
              "count": null
            },
            {
              "date": "2022-12-12",
              "count": null
            },
            {
              "date": "2022-12-19",
              "count": null
            },
            {
              "date": "2022-12-26",
              "count": null
            },
            {
              "date": "2023-01-02",
              "count": null
            },
            {
              "date": "2023-01-09",
              "count": null
            },
            {
              "date": "2023-01-16",
              "count": null
            },
            {
              "date": "2023-01-23",
              "count": null
            },
            {
              "date": "2023-01-30",
              "count": null
            },
            {
              "date": "2023-02-06",
              "count": null
            },
            {
              "date": "2023-02-13",
              "count": null
            },
            {
              "date": "2023-02-20",
              "count": null
            }
          ],
          "year": [
            {
              "date": "2022-02-25",
              "count": 2613534
            },
            {
              "date": "2022-03-25",
              "count": 23744980
            },
            {
              "date": "2022-04-25",
              "count": 13014937
            },
            {
              "date": "2022-05-25",
              "count": 9814020
            },
            {
              "date": "2022-06-25",
              "count": 6926569
            },
            {
              "date": "2022-07-25",
              "count": 13123717
            },
            {
              "date": "2022-08-25",
              "count": 6808169
            },
            {
              "date": "2022-09-25",
              "count": 6772266
            },
            {
              "date": "2022-10-25",
              "count": 355483
            },
            {
              "date": "2022-11-25",
              "count": null
            },
            {
              "date": "2022-12-25",
              "count": null
            },
            {
              "date": "2023-01-25",
              "count": null
            },
            {
              "date": "2023-02-25",
              "count": null
            }
          ]
        }
      }
    },
    "shifts": {
      "company": {
        "country": {
          "year": {
            "upwards": [

            ],
            "downwards": [
              {
                "current": {
                  "review_count": 0
                },
                "segment": "US",
                "previous": {
                  "review_count": 291
                },
                "over_time": [
                  {
                    "current": {
                      "date": "2022-06-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-06-18",
                      "count": 45,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 66.88888888888889,
                      "review_count": 45
                    }
                  },
                  {
                    "current": {
                      "date": "2022-07-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-07-18",
                      "count": 73,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 61.64383561643836,
                      "review_count": 73
                    }
                  },
                  {
                    "current": {
                      "date": "2022-08-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-08-18",
                      "count": 37,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 65.67567567567568,
                      "review_count": 37
                    }
                  },
                  {
                    "current": {
                      "date": "2022-09-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-09-18",
                      "count": 22,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 70.45454545454545,
                      "review_count": 22
                    }
                  },
                  {
                    "current": {
                      "date": "2022-10-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-10-18",
                      "count": 27,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 65.92592592592592,
                      "review_count": 27
                    }
                  },
                  {
                    "current": {
                      "date": "2022-11-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-11-18",
                      "count": 14,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 75.71428571428571,
                      "review_count": 14
                    }
                  },
                  {
                    "current": {
                      "date": "2022-12-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-12-18",
                      "count": 13,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 72.3076923076923,
                      "review_count": 13
                    }
                  },
                  {
                    "current": {
                      "date": "2023-01-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-01-18",
                      "count": 14,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 73.57142857142857,
                      "review_count": 14
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-18",
                      "count": 12,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 65.0,
                      "review_count": 12
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-18",
                      "count": 11,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 80.0,
                      "review_count": 11
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-18",
                      "count": 23,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 74.34782608695652,
                      "review_count": 23
                    }
                  }
                ],
                "difference": -291,
                "segment_title": "United States"
              },
              {
                "current": {
                  "review_count": 0
                },
                "segment": "GE",
                "previous": {
                  "review_count": 2
                },
                "over_time": [
                  {
                    "current": {
                      "date": "2022-06-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-06-18",
                      "count": 2,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 65.0,
                      "review_count": 2
                    }
                  },
                  {
                    "current": {
                      "date": "2022-07-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-07-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2022-08-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-08-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2022-09-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-09-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2022-10-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-10-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2022-11-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-11-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2022-12-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-12-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-01-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-01-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  }
                ],
                "difference": -2,
                "segment_title": "Georgia"
              },
              {
                "current": {
                  "review_count": 0
                },
                "segment": "GB",
                "previous": {
                  "review_count": 2
                },
                "over_time": [
                  {
                    "current": {
                      "date": "2022-06-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-06-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2022-07-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-07-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2022-08-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-08-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2022-09-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-09-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2022-10-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-10-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2022-11-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-11-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2022-12-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-12-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-01-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-01-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-18",
                      "count": 1,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 80.0,
                      "review_count": 1
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-18",
                      "count": 1,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 40.0,
                      "review_count": 1
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  }
                ],
                "difference": -2,
                "segment_title": "United Kingdom"
              }
            ]
          },
          "quarter": {
            "upwards": [

            ],
            "downwards": [
              {
                "current": {
                  "review_count": 0
                },
                "segment": "US",
                "previous": {
                  "review_count": 44
                },
                "over_time": [
                  {
                    "current": {
                      "date": "2023-02-06",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-07",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-13",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-14",
                      "count": 3,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 73.33333333333333,
                      "review_count": 3
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-20",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-21",
                      "count": 5,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 56.0,
                      "review_count": 5
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-27",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-28",
                      "count": 3,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 83.33333333333333,
                      "review_count": 3
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-06",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-07",
                      "count": 3,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 90.0,
                      "review_count": 3
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-13",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-14",
                      "count": 2,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 85.0,
                      "review_count": 2
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-20",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-21",
                      "count": 2,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 40.0,
                      "review_count": 2
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-27",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-28",
                      "count": 4,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 90.0,
                      "review_count": 4
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-03",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-04",
                      "count": 5,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 86.0,
                      "review_count": 5
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-10",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-11",
                      "count": 16,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 70.0,
                      "review_count": 16
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-18",
                      "count": 1,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 60.0,
                      "review_count": 1
                    }
                  }
                ],
                "difference": -44,
                "segment_title": "United States"
              },
              {
                "current": {
                  "review_count": 0
                },
                "segment": "GB",
                "previous": {
                  "review_count": 2
                },
                "over_time": [
                  {
                    "current": {
                      "date": "2023-02-06",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-07",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-13",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-14",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-20",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-21",
                      "count": 1,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 80.0,
                      "review_count": 1
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-27",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-28",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-06",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-07",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-13",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-14",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-20",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-21",
                      "count": 1,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 40.0,
                      "review_count": 1
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-27",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-28",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-03",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-04",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-10",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-11",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  }
                ],
                "difference": -2,
                "segment_title": "United Kingdom"
              }
            ]
          }
        },
        "composition": {
          "year": {
            "upwards": [

            ],
            "downwards": [
              {
                "current": {
                  "review_count": 0
                },
                "segment": "families",
                "previous": {
                  "review_count": 198
                },
                "over_time": [
                  {
                    "current": {
                      "date": "2022-06-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-06-18",
                      "count": 42,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 73.80952380952381,
                      "review_count": 42
                    }
                  },
                  {
                    "current": {
                      "date": "2022-07-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-07-18",
                      "count": 52,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 61.34615384615385,
                      "review_count": 52
                    }
                  },
                  {
                    "current": {
                      "date": "2022-08-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-08-18",
                      "count": 22,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 56.36363636363637,
                      "review_count": 22
                    }
                  },
                  {
                    "current": {
                      "date": "2022-09-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-09-18",
                      "count": 9,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 65.55555555555556,
                      "review_count": 9
                    }
                  },
                  {
                    "current": {
                      "date": "2022-10-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-10-18",
                      "count": 12,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 70.83333333333333,
                      "review_count": 12
                    }
                  },
                  {
                    "current": {
                      "date": "2022-11-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-11-18",
                      "count": 10,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 79.0,
                      "review_count": 10
                    }
                  },
                  {
                    "current": {
                      "date": "2022-12-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-12-18",
                      "count": 5,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 64.0,
                      "review_count": 5
                    }
                  },
                  {
                    "current": {
                      "date": "2023-01-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-01-18",
                      "count": 9,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 71.11111111111111,
                      "review_count": 9
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-18",
                      "count": 11,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 71.81818181818181,
                      "review_count": 11
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-18",
                      "count": 7,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 77.14285714285714,
                      "review_count": 7
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-18",
                      "count": 19,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 65.26315789473684,
                      "review_count": 19
                    }
                  }
                ],
                "difference": -198,
                "segment_title": "Families"
              },
              {
                "current": {
                  "review_count": 0
                },
                "segment": "couples",
                "previous": {
                  "review_count": 108
                },
                "over_time": [
                  {
                    "current": {
                      "date": "2022-06-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-06-18",
                      "count": 16,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 58.125,
                      "review_count": 16
                    }
                  },
                  {
                    "current": {
                      "date": "2022-07-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-07-18",
                      "count": 18,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 57.22222222222222,
                      "review_count": 18
                    }
                  },
                  {
                    "current": {
                      "date": "2022-08-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-08-18",
                      "count": 11,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 71.81818181818181,
                      "review_count": 11
                    }
                  },
                  {
                    "current": {
                      "date": "2022-09-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-09-18",
                      "count": 14,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 77.14285714285714,
                      "review_count": 14
                    }
                  },
                  {
                    "current": {
                      "date": "2022-10-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-10-18",
                      "count": 14,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 57.857142857142854,
                      "review_count": 14
                    }
                  },
                  {
                    "current": {
                      "date": "2022-11-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-11-18",
                      "count": 3,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 70.0,
                      "review_count": 3
                    }
                  },
                  {
                    "current": {
                      "date": "2022-12-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-12-18",
                      "count": 10,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 75.0,
                      "review_count": 10
                    }
                  },
                  {
                    "current": {
                      "date": "2023-01-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-01-18",
                      "count": 6,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 78.33333333333333,
                      "review_count": 6
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-18",
                      "count": 3,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 50.0,
                      "review_count": 3
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-18",
                      "count": 5,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 68.0,
                      "review_count": 5
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-18",
                      "count": 8,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 88.75,
                      "review_count": 8
                    }
                  }
                ],
                "difference": -108,
                "segment_title": "Couples"
              },
              {
                "current": {
                  "review_count": 0
                },
                "segment": "group",
                "previous": {
                  "review_count": 41
                },
                "over_time": [
                  {
                    "current": {
                      "date": "2022-06-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-06-18",
                      "count": 7,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 70.0,
                      "review_count": 7
                    }
                  },
                  {
                    "current": {
                      "date": "2022-07-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-07-18",
                      "count": 11,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 67.27272727272727,
                      "review_count": 11
                    }
                  },
                  {
                    "current": {
                      "date": "2022-08-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-08-18",
                      "count": 10,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 73.0,
                      "review_count": 10
                    }
                  },
                  {
                    "current": {
                      "date": "2022-09-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-09-18",
                      "count": 1,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 40.0,
                      "review_count": 1
                    }
                  },
                  {
                    "current": {
                      "date": "2022-10-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-10-18",
                      "count": 4,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 80.0,
                      "review_count": 4
                    }
                  },
                  {
                    "current": {
                      "date": "2022-11-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-11-18",
                      "count": 3,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 63.333333333333336,
                      "review_count": 3
                    }
                  },
                  {
                    "current": {
                      "date": "2022-12-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2021-12-18",
                      "count": 1,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 80.0,
                      "review_count": 1
                    }
                  },
                  {
                    "current": {
                      "date": "2023-01-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-01-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-18",
                      "count": 2,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 90.0,
                      "review_count": 2
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-18",
                      "count": 2,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 80.0,
                      "review_count": 2
                    }
                  }
                ],
                "difference": -41,
                "segment_title": "Group"
              }
            ]
          },
          "quarter": {
            "upwards": [

            ],
            "downwards": [
              {
                "current": {
                  "review_count": 0
                },
                "segment": "families",
                "previous": {
                  "review_count": 35
                },
                "over_time": [
                  {
                    "current": {
                      "date": "2023-02-06",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-07",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-13",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-14",
                      "count": 3,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 73.33333333333333,
                      "review_count": 3
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-20",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-21",
                      "count": 4,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 72.5,
                      "review_count": 4
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-27",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-28",
                      "count": 2,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 75.0,
                      "review_count": 2
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-06",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-07",
                      "count": 3,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 83.33333333333333,
                      "review_count": 3
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-13",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-14",
                      "count": 1,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 60.0,
                      "review_count": 1
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-20",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-21",
                      "count": 2,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 75.0,
                      "review_count": 2
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-27",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-28",
                      "count": 2,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 90.0,
                      "review_count": 2
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-03",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-04",
                      "count": 4,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 47.5,
                      "review_count": 4
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-10",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-11",
                      "count": 14,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 67.85714285714286,
                      "review_count": 14
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  }
                ],
                "difference": -35,
                "segment_title": "Families"
              },
              {
                "current": {
                  "review_count": 0
                },
                "segment": "couples",
                "previous": {
                  "review_count": 16
                },
                "over_time": [
                  {
                    "current": {
                      "date": "2023-02-06",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-07",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-13",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-14",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-20",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-21",
                      "count": 3,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 50.0,
                      "review_count": 3
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-27",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-28",
                      "count": 1,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 100.0,
                      "review_count": 1
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-06",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-07",
                      "count": 1,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 100.0,
                      "review_count": 1
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-13",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-14",
                      "count": 1,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 90.0,
                      "review_count": 1
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-20",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-21",
                      "count": 2,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 25.0,
                      "review_count": 2
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-27",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-28",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-03",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-04",
                      "count": 2,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 95.0,
                      "review_count": 2
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-10",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-11",
                      "count": 5,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 84.0,
                      "review_count": 5
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-18",
                      "count": 1,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 100.0,
                      "review_count": 1
                    }
                  }
                ],
                "difference": -16,
                "segment_title": "Couples"
              },
              {
                "current": {
                  "review_count": 0
                },
                "segment": "group",
                "previous": {
                  "review_count": 4
                },
                "over_time": [
                  {
                    "current": {
                      "date": "2023-02-06",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-07",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-13",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-14",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-20",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-21",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-02-27",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-02-28",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-06",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-07",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-13",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-14",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-20",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-21",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  },
                  {
                    "current": {
                      "date": "2023-03-27",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-03-28",
                      "count": 2,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 90.0,
                      "review_count": 2
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-03",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-04",
                      "count": 1,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 70.0,
                      "review_count": 1
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-10",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-11",
                      "count": 1,
                      "title": "Overall",
                      "topic": "overall",
                      "value": 90.0,
                      "review_count": 1
                    }
                  },
                  {
                    "current": {
                      "date": "2023-04-17",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    },
                    "previous": {
                      "date": "2022-04-18",
                      "count": 0,
                      "value": null,
                      "review_count": 0
                    }
                  }
                ],
                "difference": -4,
                "segment_title": "Group"
              }
            ]
          }
        }
      }
    },
    "tes": [
      {
        "label": "Overall",
        "score": 7.359684952518829,
        "topic": "overall",
        "numerical": {
          "count": 577,
          "value": 74.29809358752166,
          "review_count": 577
        },
        "sentiment": {
          "rating": null,
          "review_count": 344,
          "opinions_count": 1977,
          "sentiment_score": 7.242063492063492,
          "neutral_opinions": 413,
          "negative_opinions": 556,
          "positive_opinions": 1008,
          "positive_percentage": 0.6445012787723785
        },
        "review_count": 577
      },
      {
        "label": "Facilities",
        "score": 6.594061313446735,
        "topic": "facilities",
        "numerical": {
          "count": 89,
          "value": 71.46067415730337,
          "review_count": 89
        },
        "sentiment": {
          "rating": null,
          "review_count": 270,
          "opinions_count": 731,
          "sentiment_score": 6.412103746397695,
          "neutral_opinions": 135,
          "negative_opinions": 249,
          "positive_opinions": 347,
          "positive_percentage": 0.5822147651006712
        },
        "review_count": 270
      },
      {
        "label": "Location",
        "score": 8.732997739880831,
        "topic": "location",
        "numerical": {
          "count": 73,
          "value": 93.42465753424658,
          "review_count": 73
        },
        "sentiment": {
          "rating": null,
          "review_count": 241,
          "opinions_count": 377,
          "sentiment_score": 8.548387096774194,
          "neutral_opinions": 97,
          "negative_opinions": 63,
          "positive_opinions": 217,
          "positive_percentage": 0.775
        },
        "review_count": 241
      },
      {
        "label": "Service",
        "score": 8.825450579726782,
        "topic": "service",
        "numerical": {
          "count": 164,
          "value": 83.90243902439025,
          "review_count": 164
        },
        "sentiment": {
          "rating": null,
          "review_count": 117,
          "opinions_count": 167,
          "sentiment_score": 9.435483870967742,
          "neutral_opinions": 29,
          "negative_opinions": 14,
          "positive_opinions": 124,
          "positive_percentage": 0.8985507246376812
        },
        "review_count": 164
      },
      {
        "label": "Cleanliness",
        "score": 6.8097130404526895,
        "topic": "cleanliness",
        "numerical": {
          "count": 106,
          "value": 75.09433962264151,
          "review_count": 106
        },
        "sentiment": {
          "rating": null,
          "review_count": 163,
          "opinions_count": 391,
          "sentiment_score": 6.3546798029556655,
          "neutral_opinions": 40,
          "negative_opinions": 148,
          "positive_opinions": 203,
          "positive_percentage": 0.5783475783475783
        },
        "review_count": 163
      },
      {
        "label": "Value",
        "score": 7.959988729219498,
        "topic": "value",
        "numerical": {
          "count": 20,
          "value": 80,
          "review_count": 20
        },
        "sentiment": {
          "rating": null,
          "review_count": 71,
          "opinions_count": 83,
          "sentiment_score": 7.948717948717949,
          "neutral_opinions": 28,
          "negative_opinions": 16,
          "positive_opinions": 39,
          "positive_percentage": 0.7090909090909091
        },
        "review_count": 71
      },
      {
        "label": "Food & Beverages",
        "score": 9.326923076923077,
        "topic": "fnb",
        "ratings": null,
        "sentiment": {
          "rating": null,
          "review_count": 60,
          "opinions_count": 116,
          "sentiment_score": 9.326923076923077,
          "neutral_opinions": 57,
          "negative_opinions": 7,
          "positive_opinions": 52,
          "positive_percentage": 0.8813559322033898
        },
        "review_count": 60
      },
      {
        "label": "Ambience",
        "score": 2.8846153846153846,
        "topic": "ambience",
        "ratings": null,
        "sentiment": {
          "rating": null,
          "review_count": 43,
          "opinions_count": 59,
          "sentiment_score": 2.8846153846153846,
          "neutral_opinions": 18,
          "negative_opinions": 26,
          "positive_opinions": 15,
          "positive_percentage": 0.36585365853658536
        },
        "review_count": 43
      },
      {
        "label": "Sanitary Safety",
        "score": 1.25,
        "topic": "sanitary_safety",
        "ratings": null,
        "sentiment": {
          "rating": null,
          "review_count": 40,
          "opinions_count": 46,
          "sentiment_score": 1.25,
          "neutral_opinions": 6,
          "negative_opinions": 32,
          "positive_opinions": 8,
          "positive_percentage": 0.2
        },
        "review_count": 40
      },
      {
        "label": "Sustainable Travel",
        "score": 5,
        "topic": "sustainable_travel",
        "ratings": null,
        "sentiment": {
          "rating": null,
          "review_count": 4,
          "opinions_count": 5,
          "sentiment_score": 5,
          "neutral_opinions": 3,
          "negative_opinions": 1,
          "positive_opinions": 1,
          "positive_percentage": 0.5
        },
        "review_count": 4
      },
      {
        "label": "Pandemic Precautions",
        "score": 10,
        "topic": "health_precautions",
        "ratings": null,
        "sentiment": {
          "rating": null,
          "review_count": 2,
          "opinions_count": 2,
          "sentiment_score": 10,
          "neutral_opinions": 0,
          "negative_opinions": 0,
          "positive_opinions": 2,
          "positive_percentage": 1
        },
        "review_count": 2
      }
    ],
    "nearby_accommodations": [
      {
        "id": 3524573,
        "name": "Tybrisa at the Beach",
        "rating": 80,
        "distance": 0.07919729282880017,
        "review_count": 170
      },
      {
        "id": 744921,
        "name": "Atlantis Inn",
        "rating": 70,
        "distance": 0.08361915179605468,
        "review_count": 311
      },
      {
        "id": 766847,
        "name": "Admiral's Inn on Tybee Island",
        "rating": 80,
        "distance": 0.10898595929453259,
        "review_count": 155
      },
      {
        "id": 843362,
        "name": "Hotel Tybee",
        "rating": 80,
        "distance": 0.14258182266522443,
        "review_count": 1378
      },
      {
        "id": 3284684,
        "name": "Beachview Inn",
        "rating": 100,
        "distance": 0.14303386637392485,
        "review_count": 525
      },
      {
        "id": 895279,
        "name": "Sandcastle Inn",
        "rating": 50,
        "distance": 0.1513473110881651,
        "review_count": 174
      },
      {
        "id": 727271,
        "name": "Dunes Inn & Suites",
        "rating": 70,
        "distance": 0.15662833692306474,
        "review_count": 706
      },
      {
        "id": 3490933,
        "name": "The Georgianne Inn & Suites",
        "rating": 80,
        "distance": 0.2214650788333117,
        "review_count": 209
      },
      {
        "id": 3587259,
        "name": "Royal Palms Motel",
        "rating": 80,
        "distance": 0.6555944991093651,
        "review_count": 122
      },
      {
        "id": 934608,
        "name": "Sky Suites",
        "rating": 40,
        "distance": 0.67978242322329,
        "review_count": 126
      },
      {
        "id": 2770764,
        "name": "Beachside Colony Resort",
        "rating": 80,
        "distance": 1.168145173875939,
        "review_count": 168
      },
      {
        "id": 2783633,
        "name": "DeSoto Beach Hotel",
        "rating": 80,
        "distance": 1.2889557613928513,
        "review_count": 1761
      },
      {
        "id": 3485394,
        "name": "DeSoto Beach Bed & Breakfast",
        "rating": 90,
        "distance": 1.295363309477329,
        "review_count": 316
      },
      {
        "id": 729258,
        "name": "Tybee Island Inn",
        "rating": 90,
        "distance": 1.6705864590756823,
        "review_count": 468
      },
      {
        "id": 849626,
        "name": "Surf Song Bed & Breakfast",
        "rating": 100,
        "distance": 1.8314493558638612,
        "review_count": 467
      },
      {
        "id": 2809281,
        "name": "Lighthouse Inn",
        "rating": 90,
        "distance": 1.931774206587258,
        "review_count": 57
      },
      {
        "id": 3487473,
        "name": "Rivers End Campground and RV Park",
        "rating": 80,
        "distance": 2.1132793931233538,
        "review_count": 343
      },
      {
        "id": 2909220,
        "name": "Lighthouse Point Beach Club",
        "rating": 70,
        "distance": 2.2581717980171296,
        "review_count": 57
      }
    ]
  }
}

Parameters

Parameter Parameter Type Data Types Required Description
id path Integer true ID of the company

Time Period

By default the output will contain data from reviews published in the past 365 days.

Response Statuses

Status Code Reason
200 OK
404 The specified company was not found.
403 Client does not have access to the company.