# Feedback

## GET /partners/feedback

> Get a feedback by ID

```json
{"openapi":"3.0.0","info":{"title":"Partners","version":"1.0.0"},"servers":[{"url":"https://api.fullwhere.com"}],"paths":{"/partners/feedback":{"get":{"operationId":"PartnersFeedbackController_getFeedback","parameters":[{"name":"id","required":true,"in":"query","description":"The UUID of the feedback to retrieve","schema":{"type":"string"}},{"name":"X-API-KEY","in":"header","description":"Partner API Key","required":true,"schema":{"type":"string"}},{"name":"X-API-SECRET","in":"header","description":"Partner API Secret","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"The feedback has been successfully retrieved.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PartnerFeedback"}}}},"400":{"description":"Invalid input format."},"401":{"description":"Unauthorized"},"404":{"description":"Feedback not found."}},"summary":"Get a feedback by ID","tags":["Feedback"]}}},"components":{"schemas":{"PartnerFeedback":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier"},"createdAt":{"format":"date-time","type":"string","description":"Creation timestamp"},"updatedAt":{"format":"date-time","type":"string","description":"Last update timestamp"},"context":{"description":"Contextual information about the review","allOf":[{"$ref":"#/components/schemas/PartnerFeedbackContext"}]},"source":{"description":"Source of the review","allOf":[{"$ref":"#/components/schemas/DataSource"}]},"class":{"description":"Class of the review","allOf":[{"$ref":"#/components/schemas/FeedbackClass"}]},"text":{"type":"string","nullable":true,"description":"Review text content","default":null},"html":{"type":"string","nullable":true,"description":"Review html content - Email only","default":null},"externalId":{"type":"string","nullable":true,"description":"External identifier of the review","default":null},"rating":{"type":"number","nullable":true,"description":"Review rating - from 0 to 5 (can be null if the review has no rating)","default":null},"language":{"nullable":true,"description":"Review language, if available","default":null,"allOf":[{"$ref":"#/components/schemas/FullwhereLanguage"}]},"tags":{"description":"A list of tags associated with the review, either detected by the system or added manually by the user","type":"array","items":{"$ref":"#/components/schemas/PartnerFeedbackTag"}},"attributes":{"description":"Custom attribute values associated with the review","type":"array","items":{"$ref":"#/components/schemas/PartnerFeedbackCustomAttributeValue"}},"themes":{"description":"Detected review themes","default":[],"type":"array","items":{"$ref":"#/components/schemas/FeedbackTheme"}},"emotions":{"description":"Detected review emotions","default":[],"type":"array","items":{"$ref":"#/components/schemas/FeedbackEmotion"}},"polarity":{"nullable":true,"description":"Detected review polarity","allOf":[{"$ref":"#/components/schemas/FeedbackPolarity"}]},"metadata":{"description":"Metadata associated with the review","allOf":[{"$ref":"#/components/schemas/FeedbackContentMetadatasEmbeddable"}]},"attachments":{"description":"Review attachments (eg. photos, videos)","default":[],"type":"array","items":{"$ref":"#/components/schemas/PartnerPublicFile"}},"spamScore":{"type":"number","nullable":true,"description":"Spam score, if available.\nLower is better; scores can be negative or positive.\nMessages above 5 are generally considered spam.","default":null},"replies":{"description":"Main replies to the review, if any.\nThis list contains the main response for each channel.","default":[],"type":"array","items":{"$ref":"#/components/schemas/PartnerFeedbackReply"}},"surveyReplies":{"description":"Raw submitted survey replies associated with the review, if any\nOnly for reviews that come from a survey source (SURVEY)","default":[],"type":"array","items":{"$ref":"#/components/schemas/PartnerSurveyReply"}},"contactFormReplies":{"description":"Raw submitted contact form replies associated with the review, if any\nOnly for reviews that come from a contact form source (SITE)","default":[],"type":"array","items":{"$ref":"#/components/schemas/PartnerContactFormReply"}},"socialPostComment":{"nullable":true,"description":"Associated social post comment, if any (only for reviews that come from a social network source)","default":null,"allOf":[{"$ref":"#/components/schemas/PartnerSocialPostComment"}]},"likeRecommended":{"type":"boolean","nullable":true,"description":"Only for social network comments.\nDetermines whether the post comment should be liked or not","default":null},"replyRecommended":{"type":"boolean","nullable":true,"description":"Only for social network comments.\nDetermines whether the post comment should have a reply or not","default":null},"hideRecommended":{"type":"boolean","nullable":true,"description":"Only for social network comments.\nDetermines whether the post comment should be hidden or not","default":null},"analyzed":{"type":"boolean","description":"Whether or not the review has been analyzed by the system"},"csatIndex":{"type":"number","nullable":true,"description":"Customer Satisfaction Index for the content's feedback.\nOnly for survey feedbacks with CSAT question type.","default":null},"npsValue":{"type":"number","nullable":true,"description":"Net Promoter Score value for the content's feedback.\nOnly for survey feedbacks with NPS question type.","default":null},"deleted":{"type":"boolean","description":"Determines whether review has been removed from its source platform"},"imported":{"type":"boolean","description":"Determines if the review has been imported manually (eg. via CSV import) or automatically via an integration"}},"required":["id","createdAt","updatedAt","context","source","class","text","html","externalId","rating","language","tags","attributes","themes","emotions","polarity","metadata","attachments","spamScore","replies","surveyReplies","contactFormReplies","socialPostComment","likeRecommended","replyRecommended","hideRecommended","analyzed","csatIndex","npsValue","deleted","imported"]},"PartnerFeedbackContext":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier"},"createdAt":{"format":"date-time","type":"string","description":"Creation timestamp"},"updatedAt":{"format":"date-time","type":"string","description":"Last update timestamp"},"brandId":{"type":"string","description":"Brand identifier"},"storeId":{"type":"string","nullable":true,"description":"Store identifier","default":null},"purchaseId":{"type":"string","nullable":true,"description":"Purchase identifier","default":null},"customerId":{"type":"string","nullable":true,"description":"Customer identifier","default":null},"contactFormId":{"type":"string","nullable":true,"description":"Contact form identifier","default":null},"surveyId":{"type":"string","nullable":true,"description":"Survey identifier","default":null},"surveyTrackerId":{"type":"string","nullable":true,"description":"Survey Tracker identifier","default":null},"supportEmailId":{"type":"string","nullable":true,"description":"Support email identifier","default":null},"socialPostId":{"type":"string","nullable":true,"description":"Social post identifier","default":null},"link":{"type":"string","description":"Link to Fullwhere webapp"},"status":{"description":"Determines whether a review of this context is awaiting a response (UNPROCESSED), has been processed (PROCESSED), or has been bypassed (BYPASSED).","allOf":[{"$ref":"#/components/schemas/FeedbackStatus"}]},"archived":{"type":"boolean","description":"Determines if the review context has been archived"},"responseTime":{"type":"number","nullable":true,"description":"Response time in seconds.\nThis is the time between the original review and its first reply.","default":null},"interactionTime":{"type":"number","nullable":true,"description":"Interaction time in seconds.\nThis is the time between the original review and its last reply.","default":null},"reactionTimes":{"type":"number","nullable":true,"description":"Reaction times in seconds.\nThis is the time between each review and its first reply.","default":null},"allowEmailReply":{"type":"boolean","description":"Determines whether email replies are allowed for this review context"},"allowSmsReply":{"type":"boolean","description":"Determines whether SMS replies are allowed for this review context"}},"required":["id","createdAt","updatedAt","brandId","storeId","purchaseId","customerId","contactFormId","surveyId","surveyTrackerId","supportEmailId","socialPostId","link","status","archived","responseTime","interactionTime","reactionTimes","allowEmailReply","allowSmsReply"]},"FeedbackStatus":{"type":"string","enum":["PROCESSED","UNPROCESSED","BYPASSED"],"description":"Determines whether a review of this context is awaiting a response (UNPROCESSED), has been processed (PROCESSED), or has been bypassed (BYPASSED)."},"DataSource":{"type":"string","enum":["AutoGestion","Booking","BubbleContactEmail","Como","Deliveroo","Email","Experience","Facebook","Google","Import","Instagram","Juxta","Mews","Oracle","Salesforce","SelligentPartouche","Sevenrooms","Site","Sms","Sunday","Survey","TripAdvisor","Ubereats","WhatsApp","Zelty","Zenchef","TheFork","Chr365","Expedia"],"description":"Data sources associated with the customer"},"FeedbackClass":{"type":"string","enum":["Review","Survey","Contact","Message","Post"],"description":"Class of the review"},"FullwhereLanguage":{"type":"string","enum":["af","sq","am","ar","hy","as","az","ba","eu","be","bn","bs","br","bg","my","ca","ceb","ny","zh","zh-TW","co","hr","cs","da","dv","nl","en","eo","et","fo","tl","fi","fr","fy","gl","ka","de","el","kl","gu","ht","ha","haw","he","hi","hmn","hu","is","ig","ilo","id","iu","ga","it","ja","jv","kn","kk","km","rw","ko","ku","ky","lo","la","lv","lt","lb","mk","mg","ms","ml","mt","mi","mr","arn","mn","moh","ne","no","oc","or","ps","fa","pl","pt","pa","qu","ro","ru","sm","gd","sr","st","sn","sd","si","sk","sl","so","es","su","sw","sv","tg","ta","tt","te","th","bo","tr","tk","uk","ur","ug","uz","vi","cy","xh","yi","yo","zu"],"description":"Language used to generate review responses"},"PartnerFeedbackTag":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier"},"createdAt":{"format":"date-time","type":"string","description":"Creation timestamp"},"updatedAt":{"format":"date-time","type":"string","description":"Last update timestamp"},"tag":{"type":"string","description":"Tag name"},"color":{"type":"string","nullable":true,"description":"Tag hexadecimal color","default":null}},"required":["id","createdAt","updatedAt","tag","color"]},"PartnerFeedbackCustomAttributeValue":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier"},"createdAt":{"format":"date-time","type":"string","description":"Creation timestamp"},"updatedAt":{"format":"date-time","type":"string","description":"Last update timestamp"},"attribute":{"type":"string","description":"ID of the related custom attribute."},"type":{"description":"The type of the custom attribute.","allOf":[{"$ref":"#/components/schemas/CustomAttributeType"}]},"autoDetected":{"type":"boolean","description":"Determines if the value was auto-detected"},"fromPossibleValue":{"type":"string","nullable":true,"description":"The ID of the possible value selected if applicable\nOnly used for select type custom attributes, null otherwise","default":null},"text":{"type":"string","nullable":true,"description":"Submitted text value if applicable\nOnly used for text type custom attributes, null otherwise","default":null},"rating":{"type":"string","nullable":true,"description":"Submitted numeric value if applicable\nOnly used for rating type custom attributes, null otherwise","default":null},"value":{"type":"string","description":"The value of the custom attribute as string, which can be either:\n- The text value for text type custom attributes\n- The numeric value for rating type custom attributes\n- The value of the selected possible value for select type custom attributes"}},"required":["id","createdAt","updatedAt","attribute","type","autoDetected","fromPossibleValue","text","rating","value"]},"CustomAttributeType":{"type":"string","enum":["SINGLE_SELECT","MULTI_SELECT","TEXT","NUMBER"],"description":"The type of the custom attribute."},"FeedbackTheme":{"type":"string","enum":["Complaint","Question","Compliment","Suggestion","Comparison"],"description":"Detected review themes"},"FeedbackEmotion":{"type":"string","enum":["Disappointment","Surprise","Fear","Joy","Anger"],"description":"Detected review emotions"},"FeedbackPolarity":{"type":"string","enum":["Positive","Negative","Neutral"],"description":"Detected review polarity"},"FeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"googleMyBusiness":{"nullable":true,"description":"Google my business feedback metadatas","allOf":[{"$ref":"#/components/schemas/GoogleMyBusinessFeedbackContentMetadatasEmbeddable"}]},"zenchef":{"nullable":true,"description":"Zenchef feedback metadatas.","allOf":[{"$ref":"#/components/schemas/ZenchefFeedbackContentMetadatasEmbeddable"}]},"deliveroo":{"nullable":true,"description":"Deliveroo feedback metadatas.","allOf":[{"$ref":"#/components/schemas/DeliverooFeedbackMetadatasEmbeddable"}]},"tripadvisor":{"nullable":true,"description":"TripAdvisor feedback metadatas.","allOf":[{"$ref":"#/components/schemas/TripAdvisorFeedbackContentMetadatasEmbeddable"}]},"ubereats":{"nullable":true,"description":"UberEats feedback metadatas","allOf":[{"$ref":"#/components/schemas/UbereatsFeedbackContentMetadatasEmbeddable"}]},"sevenrooms":{"nullable":true,"description":"Sevenrooms feedback metadatas.","allOf":[{"$ref":"#/components/schemas/SevenroomsFeedbackMetadatasEmbeddable"}]},"email":{"nullable":true,"description":"Support email feedback metadatas.","allOf":[{"$ref":"#/components/schemas/SupportEmailFeedbackMetadatasEmbeddable"}]},"site":{"nullable":true,"description":"Site feedback metadatas.","allOf":[{"$ref":"#/components/schemas/SiteFeedbackContentMetadatasEmbeddable"}]},"metaMessage":{"nullable":true,"description":"Meta feedback message metadatas.","allOf":[{"$ref":"#/components/schemas/MetaMessageMetadatasEmbeddable"}]},"whatsapp":{"nullable":true,"description":"WhatsApp feedback message metadatas.","allOf":[{"$ref":"#/components/schemas/WhatsAppMessageMetadatasEmbeddable"}]},"booking":{"nullable":true,"description":"Booking feedback metadatas.","allOf":[{"$ref":"#/components/schemas/BookingFeedbackContentMetadatasEmbeddable"}]},"sunday":{"nullable":true,"description":"Sunday feedback metadatas.","allOf":[{"$ref":"#/components/schemas/SundayFeedbackMetadatasEmbeddable"}]},"experience":{"nullable":true,"description":"Experience feedback metadatas.","allOf":[{"$ref":"#/components/schemas/ExperienceFeedbackMetadatasEmbeddable"}]},"facebookFeed":{"nullable":true,"description":"Facebook feedback metadatas.","allOf":[{"$ref":"#/components/schemas/FacebookFeedbackContentMetadatasEmbeddable"}]},"instagramFeed":{"nullable":true,"description":"Instagram feedback metadatas.","allOf":[{"$ref":"#/components/schemas/InstagramFeedbackContentMetadatasEmbeddable"}]},"thefork":{"nullable":true,"description":"TheFork feedback metadatas.","allOf":[{"$ref":"#/components/schemas/TheForkFeedbackMetadatasEmbeddable"}]},"expedia":{"nullable":true,"description":"Expedia feedback metadatas.","allOf":[{"$ref":"#/components/schemas/ExpediaFeedbackMetadatasEmbeddable"}]}}},"GoogleMyBusinessFeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"createTime":{"type":"object","description":"Google my business review content creation time"},"updateTime":{"type":"object","description":"Google my business review content update time"},"comment":{"type":"string","nullable":true,"description":"Google my business review raw content"},"starRating":{"nullable":true,"description":"Google my business review content rates","enum":["STAR_RATING_UNSPECIFIED","ONE","TWO","THREE","FOUR","FIVE"],"type":"string"},"medias":{"nullable":true,"description":"Google my business medias attached to this Feedback","default":[],"type":"array","items":{"$ref":"#/components/schemas/GoogleMyBusinessMediaItemEmbeddable"}}},"required":["createTime","updateTime","comment","starRating","medias"]},"GoogleMyBusinessMediaItemEmbeddable":{"type":"object","properties":{"name":{"type":"string"},"mediaFormat":{"enum":["MEDIA_FORMAT_UNSPECIFIED","PHOTO","VIDEO"],"type":"string"},"locationAssociation":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/GoogleMyBusinessLocationAssociationEmbeddable"}]},"googleUrl":{"type":"string"},"thumbnailUrl":{"type":"string"},"createTime":{"format":"date-time","type":"string"},"dimensions":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/GoogleMyBusinessDimensionsEmbeddable"}]},"insights":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/GoogleMyBusinessInsightsEmbeddable"}]},"attribution":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/GoogleMyBusinessAttributionEmbeddable"}]},"description":{"type":"string","nullable":true},"sourceUrl":{"type":"string","nullable":true},"dataRef":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/GoogleMyBusinessDataRefEmbeddable"}]}},"required":["name","mediaFormat","locationAssociation","googleUrl","thumbnailUrl","createTime","dimensions","insights","attribution","description","sourceUrl","dataRef"]},"GoogleMyBusinessLocationAssociationEmbeddable":{"type":"object","properties":{"category":{"enum":["CATEGORY_UNSPECIFIED","COVER","PROFILE","LOGO","EXTERIOR","INTERIOR","PRODUCT","AT_WORK","FOOD_AND_DRIN","MENU","COMMON_AREA","ROOMS","TEAMS","ADDITIONA"],"type":"string"},"priceListItemId":{"type":"string","nullable":true}},"required":["category","priceListItemId"]},"GoogleMyBusinessDimensionsEmbeddable":{"type":"object","properties":{"widthPixels":{"type":"number"},"heightPixels":{"type":"number"}},"required":["widthPixels","heightPixels"]},"GoogleMyBusinessInsightsEmbeddable":{"type":"object","properties":{"viewCount":{"type":"string"}},"required":["viewCount"]},"GoogleMyBusinessAttributionEmbeddable":{"type":"object","properties":{"profileName":{"type":"string"},"profilePhotoUrl":{"type":"string"},"takedownUrl":{"type":"string"},"profileUrl":{"type":"string"}},"required":["profileName","profilePhotoUrl","takedownUrl","profileUrl"]},"GoogleMyBusinessDataRefEmbeddable":{"type":"object","properties":{"resourceName":{"type":"string"}},"required":["resourceName"]},"ZenchefFeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"created_at":{"type":"string","nullable":true},"updated_at":{"type":"string","nullable":true},"service":{"type":"number","nullable":true},"service_body":{"type":"string","nullable":true},"menu":{"type":"number","nullable":true},"menu_body":{"type":"string","nullable":true},"ambiance":{"type":"number","nullable":true},"ambiance_body":{"type":"string","nullable":true},"value_for_money":{"type":"number","nullable":true},"value_for_money_body":{"type":"string","nullable":true},"body":{"type":"string","nullable":true},"global":{"type":"number","nullable":true},"read":{"type":"number","nullable":true}},"required":["created_at","updated_at","service","service_body","menu","menu_body","ambiance","ambiance_body","value_for_money","value_for_money_body","body","global","read"]},"DeliverooFeedbackMetadatasEmbeddable":{"type":"object","properties":{"order_uuid":{"type":"string","nullable":true},"created_at":{"type":"string","nullable":true},"rating_comment":{"type":"string","nullable":true},"rating_stars":{"type":"number","nullable":true},"restaurant_id":{"type":"string","nullable":true},"frequency":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooFrequencyMetadatasEmbeddable"}]},"refund":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooFeedbackRefundMetadatasEmbeddable"}]}},"required":["order_uuid","created_at","rating_comment","rating_stars","restaurant_id","frequency","refund"]},"DeliverooFrequencyMetadatasEmbeddable":{"type":"object","properties":{"customer_orders":{"type":"number","nullable":true}},"required":["customer_orders"]},"DeliverooFeedbackRefundMetadatasEmbeddable":{"type":"object","properties":{"order_id":{"type":"string","nullable":true},"order_uuid":{"type":"string","nullable":true},"order_drn_id":{"type":"string","nullable":true},"order_number":{"type":"number","nullable":true},"branch_id":{"type":"string","nullable":true},"branch_name":{"type":"string","nullable":true},"order_date":{"type":"string","nullable":true},"order_refund_status":{"type":"string","nullable":true},"order_type":{"type":"string","nullable":true},"refund_total":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]},"refund_paid_by_restaurant_total":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]},"order_total":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]},"order_sub_total":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]},"order_gross_merchandise_value":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]},"items":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/DeliverooFeedbackRefundItemMetadatasEmbeddable"}},"compensations":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/DeliverooFeedbackCompensationMetadatasEmbeddable"}}},"required":["order_id","order_uuid","order_drn_id","order_number","branch_id","branch_name","order_date","order_refund_status","order_type","refund_total","refund_paid_by_restaurant_total","order_total","order_sub_total","order_gross_merchandise_value","items","compensations"]},"DeliverooPriceMetadatasEmbeddable":{"type":"object","properties":{"fractional":{"type":"number","nullable":true},"formatted":{"type":"string","nullable":true}},"required":["fractional","formatted"]},"DeliverooFeedbackRefundItemMetadatasEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"quantity":{"type":"number","nullable":true},"restaurant_name":{"type":"string","nullable":true},"refund_reason":{"type":"string","nullable":true},"unit_price":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]},"total_price":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]},"total_unit_price":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]},"modifiers":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/DeliverooFeedbackMetadatasModifier"}},"category_name":{"type":"string","nullable":true}},"required":["id","name","quantity","restaurant_name","refund_reason","unit_price","total_price","total_unit_price","modifiers","category_name"]},"DeliverooFeedbackMetadatasModifier":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"required":["name"]},"DeliverooFeedbackCompensationMetadatasEmbeddable":{"type":"object","properties":{"photos":{"type":"object","nullable":true},"refund_status":{"type":"string","nullable":true},"id":{"type":"number","nullable":true},"refund_date":{"type":"string","nullable":true},"status":{"type":"string","nullable":true},"action_id":{"type":"string","nullable":true},"input_description":{"type":"string","nullable":true},"selected_resolution":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooFeedbackCompensationSelectedResolutionMetadatasEmbeddable"}]},"compensated_items":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/DeliverooFeedbackCompensationCompensatedItemsMetadatasEmbeddable"}}},"required":["photos","refund_status","id","refund_date","status","action_id","input_description","selected_resolution","compensated_items"]},"DeliverooFeedbackCompensationSelectedResolutionMetadatasEmbeddable":{"type":"object","properties":{"resolution_type":{"type":"string","nullable":true},"source":{"type":"string","nullable":true},"repeat_order_id":{"type":"string","nullable":true},"repeat_order_drn_id":{"type":"string","nullable":true},"amount":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]}},"required":["resolution_type","source","repeat_order_id","repeat_order_drn_id","amount"]},"DeliverooFeedbackCompensationCompensatedItemsMetadatasEmbeddable":{"type":"object","properties":{"name":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"reason":{"type":"string","nullable":true}},"required":["name","id","reason"]},"TripAdvisorFeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"alertStatus":{"type":"boolean"},"rating":{"type":"number"},"status":{"type":"string"},"id":{"type":"number"},"translationType":{"type":"string","nullable":true},"attribution":{"type":"string","nullable":true},"roomTip":{"type":"string","nullable":true},"title":{"type":"string"},"text":{"type":"string"},"username":{"type":"string"},"language":{"type":"string"},"userInfo":{"$ref":"#/components/schemas/TripAdvisorFeedbackUserInfoEmbeddable"},"additionalRatings":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/TripAdvisorFeedbackAdditionalRatingEmbeddable"}}},"required":["alertStatus","rating","status","id","translationType","attribution","roomTip","title","text","username","language","userInfo","additionalRatings"]},"TripAdvisorFeedbackUserInfoEmbeddable":{"type":"object","properties":{"helpfulVotes":{"type":"number"},"contributionCount":{"type":"number"},"homeTown":{"type":"string"},"avatarUrl":{"type":"string"}},"required":["helpfulVotes","contributionCount","homeTown","avatarUrl"]},"TripAdvisorFeedbackAdditionalRatingEmbeddable":{"type":"object","properties":{"rating":{"type":"number"},"ratingLabel":{"type":"string"}},"required":["rating","ratingLabel"]},"UbereatsFeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"uuid":{"type":"string","nullable":true},"timestamp":{"type":"string","nullable":true},"rating":{"type":"number","nullable":true},"comment":{"type":"string","nullable":true},"tags":{"nullable":true,"type":"array","items":{"type":"string"}},"menuItemReviews":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/UbereatsMenuItemReviewEmbeddable"}}},"required":["uuid","timestamp","rating","comment","tags","menuItemReviews"]},"UbereatsMenuItemReviewEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"rating":{"type":"boolean","nullable":true},"name":{"type":"string","nullable":true},"comment":{"type":"string","nullable":true},"tags":{"nullable":true,"type":"array","items":{"type":"string"}}},"required":["id","rating","name","comment","tags"]},"SevenroomsFeedbackMetadatasEmbeddable":{"type":"object","properties":{"recommend_to_friend":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/SevenroomsRecommendToFriend"}]},"feedback_type":{"type":"string","nullable":true},"reservation_id":{"type":"string","nullable":true},"order_id":{"type":"string","nullable":true},"reservation_date":{"type":"string","nullable":true},"received_date":{"type":"string","nullable":true},"created_date":{"type":"string","nullable":true},"overall":{"type":"string","nullable":true},"food":{"type":"string","nullable":true},"drinks":{"type":"string","nullable":true},"ambience":{"type":"string","nullable":true},"service":{"type":"string","nullable":true},"notes":{"type":"string","nullable":true}},"required":["recommend_to_friend","feedback_type","reservation_id","order_id","reservation_date","received_date","created_date","overall","food","drinks","ambience","service","notes"]},"SevenroomsRecommendToFriend":{"type":"string","enum":["Yes","No","not filled in"]},"SupportEmailFeedbackMetadatasEmbeddable":{"type":"object","properties":{"From":{"type":"string"},"FromName":{"type":"string"},"FromFull":{"$ref":"#/components/schemas/PostmarkInboundRecipientEmbeddable"},"To":{"type":"string"},"ToFull":{"type":"array","items":{"$ref":"#/components/schemas/PostmarkInboundRecipientEmbeddable"}},"Cc":{"type":"string"},"CcFull":{"type":"array","items":{"$ref":"#/components/schemas/PostmarkInboundRecipientEmbeddable"}},"Bcc":{"type":"string"},"BccFull":{"type":"array","items":{"$ref":"#/components/schemas/PostmarkInboundRecipientEmbeddable"}},"OriginalRecipient":{"type":"string"},"Subject":{"type":"string"},"ReplyTo":{"type":"string","nullable":true},"Date":{"type":"string","nullable":true},"MailboxHash":{"type":"string","nullable":true},"Tag":{"type":"string","nullable":true},"MessageID":{"type":"string","nullable":true},"Status":{"type":"string","nullable":true},"MessageStream":{"type":"string","nullable":true},"TextBody":{"type":"string","nullable":true},"HtmlBody":{"type":"string","nullable":true},"StrippedTextReply":{"type":"string","nullable":true},"Headers":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/PostmarkHeaderEmbeddable"}},"BlockedReason":{"type":"string","nullable":true},"Attachments":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/SupportEmailAttachmentMetadatasEmbeddable"}}},"required":["From","FromName","FromFull","To","ToFull","Cc","CcFull","Bcc","BccFull","OriginalRecipient","Subject","ReplyTo","Date","MailboxHash","Tag","MessageID","Status","MessageStream","TextBody","HtmlBody","StrippedTextReply","Headers","BlockedReason","Attachments"]},"PostmarkInboundRecipientEmbeddable":{"type":"object","properties":{"Email":{"type":"string"},"Name":{"type":"string"},"MailboxHash":{"type":"string"}},"required":["Email","Name","MailboxHash"]},"PostmarkHeaderEmbeddable":{"type":"object","properties":{"Name":{"type":"string"},"Value":{"type":"string"}},"required":["Name","Value"]},"SupportEmailAttachmentMetadatasEmbeddable":{"type":"object","properties":{"Name":{"type":"string"},"ContentID":{"type":"string","nullable":true},"ContentType":{"type":"string"},"ContentLength":{"type":"number"},"Disposition":{"type":"string","nullable":true}},"required":["Name","ContentID","ContentType","ContentLength","Disposition"]},"SiteFeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"fields":{"type":"array","items":{"$ref":"#/components/schemas/ContactFormFieldMetadatasEmbeddable"}}},"required":["fields"]},"ContactFormFieldMetadatasEmbeddable":{"type":"object","properties":{"type":{"description":"The type of the form field","enum":["TEXT","DROPDOWN","RADIO","CHECKBOX","FILES","DATE","STORE","FIRSTNAME","LASTNAME","CIVILITY","EMAIL","PHONE","PURCHASE","MAIN"],"type":"string"},"id":{"type":"string","description":"The field id"},"values":{"description":"Field values","type":"array","items":{"type":"string"}},"label":{"type":"string","nullable":true,"description":"The label of the form field, if applicable"},"verticalIndex":{"type":"object","description":"The vertical position index of the form field","default":0},"horizontalIndex":{"type":"object","description":"The horizontal position index of the form field","default":0}},"required":["type","id","values","label","verticalIndex","horizontalIndex"]},"MetaMessageMetadatasEmbeddable":{"type":"object","properties":{"id":{"type":"string"},"created_time":{"type":"string"},"from":{"$ref":"#/components/schemas/MetaApiMessageFromEmbeddable"},"is_unsupported":{"type":"boolean","nullable":true},"message":{"type":"string"},"reactions":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiOutputReactionEmbeddable"}]},"fullwhereReaction":{"type":"string","nullable":true},"story":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiOutputStoryEmbeddable"}]},"tags":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiOutputTagEmbeddable"}]},"shares":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiPaginatedOutputShareEmbeddable"}]},"to":{"$ref":"#/components/schemas/MetaApiOutputRecipientEmbeddable"},"attachments":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiOutputAttachmentEmbeddable"}]},"is_deleted":{"type":"boolean","nullable":true},"reply_to":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessageReplyToEmbeddable"}]}},"required":["id","created_time","from","is_unsupported","message","reactions","fullwhereReaction","story","tags","shares","to","attachments","is_deleted","reply_to"]},"MetaApiMessageFromEmbeddable":{"type":"object","properties":{"id":{"type":"string"},"email":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"username":{"type":"string","nullable":true}},"required":["id","email","name","username"]},"MetaApiOutputReactionEmbeddable":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/MetaApiMessageReactionEmbeddable"}}},"required":["data"]},"MetaApiMessageReactionEmbeddable":{"type":"object","properties":{"reaction":{"type":"string"},"users":{"type":"array","items":{"$ref":"#/components/schemas/MetaApiMessageUserEmbeddable"}}},"required":["reaction","users"]},"MetaApiMessageUserEmbeddable":{"type":"object","properties":{"username":{"type":"string"},"id":{"type":"string"}},"required":["username","id"]},"MetaApiOutputStoryEmbeddable":{"type":"object","properties":{"mention":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessageStoryDataEmbeddable"}]},"reply":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessageStoryDataEmbeddable"}]},"reply_to":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessageStoryDataEmbeddable"}]}}},"MetaApiMessageStoryDataEmbeddable":{"type":"object","properties":{"link":{"type":"string"},"id":{"type":"string"}},"required":["link","id"]},"MetaApiOutputTagEmbeddable":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/MetaApiMessageTagEmbeddable"}}},"required":["data"]},"MetaApiMessageTagEmbeddable":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]},"MetaApiPaginatedOutputShareEmbeddable":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/MetaApiMessageShareEmbeddable"}},"paging":{"type":"object"}},"required":["data","paging"]},"MetaApiMessageShareEmbeddable":{"type":"object","properties":{"link":{"type":"string"}},"required":["link"]},"MetaApiOutputRecipientEmbeddable":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/MetaApiMessageRecipientEmbeddable"}}},"required":["data"]},"MetaApiMessageRecipientEmbeddable":{"type":"object","properties":{"id":{"type":"string"},"username":{"type":"string","nullable":true},"email":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"required":["id","username","email","name"]},"MetaApiOutputAttachmentEmbeddable":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/MetaApiMessageAttachmentEmbeddable"}}},"required":["data"]},"MetaApiMessageAttachmentEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"mime_type":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"size":{"type":"number","nullable":true},"file_url":{"type":"string","nullable":true},"image_data":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiPictureEmbeddable"}]},"video_data":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessageVideoDataEmbeddable"}]},"generic_template":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessageGenericTemplateEmbeddable"}]},"payload":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessagePayloadEmbeddable"}]}},"required":["id","type","mime_type","name","size","file_url","image_data","video_data","generic_template","payload"]},"MetaApiPictureEmbeddable":{"type":"object","properties":{"width":{"type":"number","nullable":true},"height":{"type":"number","nullable":true},"max_height":{"type":"number","nullable":true},"max_width":{"type":"number","nullable":true},"url":{"type":"string"},"preview_url":{"type":"string","nullable":true},"image_type":{"type":"number"},"render_as_sticker":{"type":"boolean","nullable":true},"animated_gif_preview_url":{"type":"string","nullable":true},"animated_gif_url":{"type":"string","nullable":true},"cta":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessageCTAEmbeddable"}]},"subtitle":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"is_silhouette":{"type":"string","nullable":true}},"required":["width","height","max_height","max_width","url","preview_url","image_type","render_as_sticker","animated_gif_preview_url","animated_gif_url","cta","subtitle","title","is_silhouette"]},"MetaApiMessageCTAEmbeddable":{"type":"object","properties":{"title":{"type":"string"},"type":{"type":"string"},"url":{"type":"string"}},"required":["title","type","url"]},"MetaApiMessageVideoDataEmbeddable":{"type":"object","properties":{"url":{"type":"string"}},"required":["url"]},"MetaApiMessageGenericTemplateEmbeddable":{"type":"object","properties":{"cta":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessageCTAEmbeddable"}]},"url":{"type":"string"},"subtitle":{"type":"string","nullable":true},"title":{"type":"string","nullable":true}},"required":["cta","url","subtitle","title"]},"MetaApiMessagePayloadEmbeddable":{"type":"object","properties":{"url":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"sticker_id":{"type":"number","nullable":true},"reel_video_id":{"type":"number","nullable":true},"product":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessagePayloadProductEmbeddable"}]}},"required":["url","title","sticker_id","reel_video_id","product"]},"MetaApiMessagePayloadProductEmbeddable":{"type":"object","properties":{"elements":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/MetaApiMessagePayloadProductElementEmbeddable"}}},"required":["elements"]},"MetaApiMessagePayloadProductElementEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"retailer_id":{"type":"string","nullable":true},"image_url":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"subtitle":{"type":"string","nullable":true}},"required":["id","retailer_id","image_url","title","subtitle"]},"MetaApiMessageReplyToEmbeddable":{"type":"object","properties":{"mid":{"type":"string"},"is_self_reply":{"type":"boolean"}},"required":["mid","is_self_reply"]},"WhatsAppMessageMetadatasEmbeddable":{"type":"object","properties":{"from":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"timestamp":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"reaction":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageReactionEmbeddable"}]},"fullwhereReaction":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageReactionEmbeddable"}]},"text":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageTextEmbeddable"}]},"audio":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageFileEmbeddable"}]},"image":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageFileEmbeddable"}]},"video":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageFileEmbeddable"}]},"document":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageFileEmbeddable"}]},"sticker":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageFileEmbeddable"}]},"system":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageSystemEmbeddable"}]},"referral":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageReferralEmbeddable"}]},"order":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageOrderEmbeddable"}]},"interactive":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageInteractiveEmbeddable"}]},"button":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageButtonEmbeddable"}]},"context":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageContextEmbeddable"}]},"errors":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/WhatsAppErrorEmbeddable"}},"identity":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppIdentityEmbeddable"}]},"location":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppLocationEmbeddable"}]},"contacts":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/WhatsAppContactEmbeddable"}}},"required":["from","id","timestamp","type","reaction","fullwhereReaction","text","audio","image","video","document","sticker","system","referral","order","interactive","button","context","errors","identity","location","contacts"]},"WhatsAppMessageReactionEmbeddable":{"type":"object","properties":{"message_id":{"type":"string","nullable":true},"emoji":{"type":"string","nullable":true}},"required":["message_id","emoji"]},"WhatsAppMessageTextEmbeddable":{"type":"object","properties":{"body":{"type":"string","nullable":true}},"required":["body"]},"WhatsAppMessageFileEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"url":{"type":"string","nullable":true},"file_size":{"type":"number","nullable":true},"filename":{"type":"string","nullable":true},"mime_type":{"type":"string","nullable":true},"sha256":{"type":"string","nullable":true},"caption":{"type":"string","nullable":true},"animated":{"type":"boolean","nullable":true},"voice":{"type":"boolean","nullable":true}},"required":["id","url","file_size","filename","mime_type","sha256","caption","animated","voice"]},"WhatsAppMessageSystemEmbeddable":{"type":"object","properties":{"body":{"type":"string","nullable":true},"identity":{"type":"string","nullable":true},"new_wa_id":{"type":"string","nullable":true},"wa_id":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"customer":{"type":"string","nullable":true}},"required":["body","identity","new_wa_id","wa_id","type","customer"]},"WhatsAppMessageReferralEmbeddable":{"type":"object","properties":{"source_url":{"type":"string","nullable":true},"source_type":{"type":"string","nullable":true},"source_id":{"type":"string","nullable":true},"headline":{"type":"string","nullable":true},"body":{"type":"string","nullable":true},"media_type":{"type":"string","nullable":true},"image_url":{"type":"string","nullable":true},"video_url":{"type":"string","nullable":true},"thumbnail_url":{"type":"string","nullable":true},"ctwa_clid":{"type":"string","nullable":true}},"required":["source_url","source_type","source_id","headline","body","media_type","image_url","video_url","thumbnail_url","ctwa_clid"]},"WhatsAppMessageOrderEmbeddable":{"type":"object","properties":{"catalog_id":{"type":"string","nullable":true},"text":{"type":"string","nullable":true},"product_items":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/WhatsAppMessageOrderProductItemEmbeddable"}}},"required":["catalog_id","text","product_items"]},"WhatsAppMessageOrderProductItemEmbeddable":{"type":"object","properties":{"product_retailer_id":{"type":"string","nullable":true},"quantity":{"type":"string","nullable":true},"item_price":{"type":"string","nullable":true},"currency":{"type":"string","nullable":true}},"required":["product_retailer_id","quantity","item_price","currency"]},"WhatsAppMessageInteractiveEmbeddable":{"type":"object","properties":{"type":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageInteractiveTypeEmbeddable"}]}},"required":["type"]},"WhatsAppMessageInteractiveTypeEmbeddable":{"type":"object","properties":{"button_reply":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageInteractiveButtonReplyEmbeddable"}]},"list_reply":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageInteractiveListReplyEmbeddable"}]}},"required":["button_reply","list_reply"]},"WhatsAppMessageInteractiveButtonReplyEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"title":{"type":"string","nullable":true}},"required":["id","title"]},"WhatsAppMessageInteractiveListReplyEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"description":{"type":"string","nullable":true}},"required":["id","title","description"]},"WhatsAppMessageButtonEmbeddable":{"type":"object","properties":{"payload":{"type":"string","nullable":true},"text":{"type":"string","nullable":true}},"required":["payload","text"]},"WhatsAppMessageContextEmbeddable":{"type":"object","properties":{"forwarded":{"type":"boolean","nullable":true},"frequently_forwarded":{"type":"boolean","nullable":true},"from":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"referred_product":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageContextReferredProductEmbeddable"}]}},"required":["forwarded","frequently_forwarded","from","id","referred_product"]},"WhatsAppMessageContextReferredProductEmbeddable":{"type":"object","properties":{"catalog_id":{"type":"string","nullable":true},"product_retailer_id":{"type":"string","nullable":true}},"required":["catalog_id","product_retailer_id"]},"WhatsAppErrorEmbeddable":{"type":"object","properties":{"code":{"type":"number","nullable":true},"title":{"type":"string","nullable":true},"message":{"type":"string","nullable":true},"error_data":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppErrorDataEmbeddable"}]}},"required":["code","title","message","error_data"]},"WhatsAppErrorDataEmbeddable":{"type":"object","properties":{"details":{"type":"string","nullable":true}},"required":["details"]},"WhatsAppIdentityEmbeddable":{"type":"object","properties":{"acknowledged":{"type":"string","nullable":true},"created_timestamp":{"type":"string","nullable":true},"hash":{"type":"string","nullable":true}},"required":["acknowledged","created_timestamp","hash"]},"WhatsAppLocationEmbeddable":{"type":"object","properties":{"latitude":{"type":"number","nullable":true},"longitude":{"type":"number","nullable":true}},"required":["latitude","longitude"]},"WhatsAppContactEmbeddable":{"type":"object","properties":{"addresses":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/WhatsAppContactAddressEmbeddable"}},"birthday":{"type":"string","nullable":true},"emails":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/WhatsAppContactEmailEmbeddable"}},"name":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppContactNameEmbeddable"}]},"org":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppContactOrgEmbeddable"}]},"phones":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/WhatsAppContactPhoneEmbeddable"}},"urls":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/WhatsAppContactUrlEmbeddable"}}},"required":["addresses","birthday","emails","name","org","phones","urls"]},"WhatsAppContactAddressEmbeddable":{"type":"object","properties":{"street":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"state":{"type":"string","nullable":true},"zip":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"country_code":{"type":"string","nullable":true},"type":{"type":"string","nullable":true}},"required":["street","city","state","zip","country","country_code","type"]},"WhatsAppContactEmailEmbeddable":{"type":"object","properties":{"email":{"type":"string","nullable":true},"type":{"type":"string","nullable":true}},"required":["email","type"]},"WhatsAppContactNameEmbeddable":{"type":"object","properties":{"formatted_name":{"type":"string","nullable":true},"first_name":{"type":"string","nullable":true},"last_name":{"type":"string","nullable":true},"middle_name":{"type":"string","nullable":true},"suffix":{"type":"string","nullable":true},"prefix":{"type":"string","nullable":true}},"required":["formatted_name","first_name","last_name","middle_name","suffix","prefix"]},"WhatsAppContactOrgEmbeddable":{"type":"object","properties":{"company":{"type":"string","nullable":true},"department":{"type":"string","nullable":true},"title":{"type":"string","nullable":true}},"required":["company","department","title"]},"WhatsAppContactPhoneEmbeddable":{"type":"object","properties":{"phone":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"wa_id":{"type":"string","nullable":true}},"required":["phone","type","wa_id"]},"WhatsAppContactUrlEmbeddable":{"type":"object","properties":{"url":{"type":"string","nullable":true},"type":{"type":"string","nullable":true}},"required":["url","type"]},"BookingFeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"ufi":{"type":"object","nullable":true},"name":{"type":"string","nullable":true},"yourname":{"type":"string","nullable":true},"processedBy":{"type":"string","nullable":true},"hotelServicesFormatted":{"type":"string","nullable":true},"hotelComfort":{"type":"number","nullable":true},"hotelNegative":{"type":"string","nullable":true},"preferred":{"type":"number","nullable":true},"pagename":{"type":"string","nullable":true},"translateButtonStatus":{"type":"string","nullable":true},"processingDate":{"type":"string","nullable":true},"hotelClean":{"type":"number","nullable":true},"id":{"type":"number","nullable":true},"hotelValueFormatted":{"type":"string","nullable":true},"hotelId":{"type":"number","nullable":true},"hotelCity":{"type":"string","nullable":true},"reply":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/BookingFeedbackReplyMetadatasEmbeddable"}]},"hotelLocationFormatted":{"type":"string","nullable":true},"hotelNegativeTrivial":{"type":"number","nullable":true},"language":{"type":"string","nullable":true},"hotelComfortFormatted":{"type":"string","nullable":true},"hotelStaffFormatted":{"type":"string","nullable":true},"cc1":{"type":"string","nullable":true},"additionalRatings":{"nullable":true,"type":"array","items":{"type":"string"}},"canReply":{"type":"string","nullable":true},"hotelAverageFormatted":{"type":"string","nullable":true},"hotelLocation":{"type":"number","nullable":true},"anonymous":{"type":"number","nullable":true},"isNew":{"type":"number","nullable":true},"class":{"type":"number","nullable":true},"experimentalAdditionalRatings":{"nullable":true,"type":"array","items":{"type":"object"}},"title":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"suppressedComment":{"type":"string","nullable":true},"approvalStatus":{"type":"number","nullable":true},"hotelStaff":{"type":"number","nullable":true},"suppressed":{"type":"number","nullable":true},"hotelPositive":{"type":"string","nullable":true},"hotelServices":{"type":"number","nullable":true},"hotelPositiveTrivial":{"type":"number","nullable":true},"approved":{"type":"string","nullable":true},"titleTrivial":{"type":"number","nullable":true},"stayStatus":{"type":"string","nullable":true},"booknumber":{"type":"number","nullable":true},"completed":{"type":"string","nullable":true},"hotelValue":{"type":"number","nullable":true},"hotelCleanFormatted":{"type":"string","nullable":true},"hotelAverage":{"type":"number","nullable":true}},"required":["ufi","name","yourname","processedBy","hotelServicesFormatted","hotelComfort","hotelNegative","preferred","pagename","translateButtonStatus","processingDate","hotelClean","id","hotelValueFormatted","hotelId","hotelCity","reply","hotelLocationFormatted","hotelNegativeTrivial","language","hotelComfortFormatted","hotelStaffFormatted","cc1","additionalRatings","canReply","hotelAverageFormatted","hotelLocation","anonymous","isNew","class","experimentalAdditionalRatings","title","country","suppressedComment","approvalStatus","hotelStaff","suppressed","hotelPositive","hotelServices","hotelPositiveTrivial","approved","titleTrivial","stayStatus","booknumber","completed","hotelValue","hotelCleanFormatted","hotelAverage"]},"BookingFeedbackReplyMetadatasEmbeddable":{"type":"object","properties":{"hotelierResponse":{"type":"string","nullable":true},"approved":{"type":"number","nullable":true},"created":{"type":"string","nullable":true}},"required":["hotelierResponse","approved","created"]},"SundayFeedbackMetadatasEmbeddable":{"type":"object","properties":{"review_id":{"type":"string","nullable":true},"created_at_local":{"type":"string","nullable":true},"business_id":{"type":"string","nullable":true},"payment_id":{"type":"string","nullable":true},"platform":{"type":"string","nullable":true},"email":{"type":"string","nullable":true},"optin_level":{"type":"object","nullable":true},"rating":{"type":"number","nullable":true},"comment":{"type":"string","nullable":true},"table_number":{"type":"number","nullable":true},"reply_content":{"type":"string","nullable":true},"replied_at":{"type":"string","nullable":true},"paid_amount":{"type":"number","nullable":true},"order_amount":{"type":"number","nullable":true},"currency_code":{"type":"string","nullable":true},"staff_name":{"type":"string","nullable":true},"rating_dimension_food_and_drinks":{"type":"number","nullable":true},"rating_dimension_ambiance":{"type":"number","nullable":true},"rating_dimension_service":{"type":"number","nullable":true},"rating_dimension_value_for_money":{"type":"number","nullable":true},"is_coming_from_sunday":{"type":"boolean","nullable":true}},"required":["review_id","created_at_local","business_id","payment_id","platform","email","optin_level","rating","comment","table_number","reply_content","replied_at","paid_amount","order_amount","currency_code","staff_name","rating_dimension_food_and_drinks","rating_dimension_ambiance","rating_dimension_service","rating_dimension_value_for_money","is_coming_from_sunday"]},"ExperienceFeedbackMetadatasEmbeddable":{"type":"object","properties":{"configuration":{"$ref":"#/components/schemas/ExperienceStoreMetadatasEmbeddable"},"stay":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExperiencePurchaseMetadatasEmbeddable"}]},"segment":{"type":"string"},"purpose":{"type":"string"},"customer":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExperienceCustomerMetadatasEmbeddable"}]},"internal_id":{"type":"number"},"response_date":{"type":"string"},"average_score":{"type":"number"},"ratings":{"type":"array","items":{"$ref":"#/components/schemas/ExperienceApiFeedbackRatingEmbeddable"}}},"required":["configuration","stay","segment","purpose","customer","internal_id","response_date","average_score","ratings"]},"ExperienceStoreMetadatasEmbeddable":{"type":"object","properties":{"business_name":{"type":"string"},"business_id":{"type":"number"},"rating_min":{"type":"number"},"rating_max":{"type":"number"}},"required":["business_name","business_id","rating_min","rating_max"]},"ExperiencePurchaseMetadatasEmbeddable":{"type":"object","properties":{"booked_at":{"type":"string"},"arrival_date":{"type":"string"},"arrival_day":{"type":"string"},"departure_date":{"type":"string"},"departure_day":{"type":"string"},"duration":{"type":"number"},"presence_days":{"type":"array","items":{"type":"string"}},"room_number":{"type":"array","items":{"type":"string"}},"room_type":{"type":"array","items":{"type":"string"}},"rate_code":{"type":"string"},"booking_additional_properties":{"type":"array","items":{"$ref":"#/components/schemas/ExperienceApiBookingAdditionalPropertyEmbeddable"}}},"required":["booked_at","arrival_date","arrival_day","departure_date","departure_day","duration","presence_days","room_number","room_type","rate_code","booking_additional_properties"]},"ExperienceApiBookingAdditionalPropertyEmbeddable":{"type":"object","properties":{"name":{"type":"string"},"value":{"type":"string"}},"required":["name","value"]},"ExperienceCustomerMetadatasEmbeddable":{"type":"object","properties":{"customer_custom_properties":{"type":"array","items":{"type":"object"}},"customer_additional_properties":{"type":"array","items":{"type":"object"}},"email":{"type":"string"},"title":{"type":"string"},"firstname":{"type":"string"},"lastname":{"type":"string"},"language":{"type":"string"},"birthdate":{"type":"string"},"age_at_time_of_stay":{"type":"number"},"addr_street":{"type":"string","nullable":true},"addr_city":{"type":"string","nullable":true},"addr_zipcode":{"type":"string","nullable":true},"addr_country":{"type":"string"},"continent":{"type":"string"},"nationality":{"type":"string"},"mobile_phone":{"type":"string"},"phone":{"type":"string"},"number_of_stays":{"type":"number"},"often_travel_to_city":{"type":"boolean"}},"required":["customer_custom_properties","customer_additional_properties","email","title","firstname","lastname","language","birthdate","age_at_time_of_stay","addr_street","addr_city","addr_zipcode","addr_country","continent","nationality","mobile_phone","phone","number_of_stays","often_travel_to_city"]},"ExperienceApiFeedbackRatingEmbeddable":{"type":"object","properties":{"internal_id":{"type":"number"},"deleted_question":{"type":"boolean"},"code":{"type":"string"},"question_titles":{"type":"array","items":{"$ref":"#/components/schemas/ExperienceApiFeedbackQuestionTitleEmbeddable"}},"rating":{"type":"number","nullable":true},"text_pro":{"type":"string","nullable":true},"text_con":{"type":"string","nullable":true},"text_neutral":{"type":"string","nullable":true}},"required":["internal_id","deleted_question","code","question_titles","rating","text_pro","text_con","text_neutral"]},"ExperienceApiFeedbackQuestionTitleEmbeddable":{"type":"object","properties":{"name":{"type":"string"},"code":{"type":"string"}},"required":["name","code"]},"FacebookFeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"attachments":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/FacebookAttachmentEmbeddable"}},"likes":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookLikesEmbeddable"}]},"reactions":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookReactionsEmbeddable"}]},"comments":{"type":"object","properties":{"data":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/FacebookSubCommentEmbeddable"}}},"required":[]}}},"FacebookAttachmentEmbeddable":{"type":"object","properties":{"media":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookMediaEmbeddable"}]},"target":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookAttachmentTarget"}]},"media_type":{"type":"string"},"url":{"type":"string"},"title":{"type":"string"},"description":{"type":"string"},"type":{"type":"string"}}},"FacebookMediaEmbeddable":{"type":"object","properties":{"image":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookMediaInfoEmbeddable"}]},"video":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookMediaInfoEmbeddable"}]}}},"FacebookMediaInfoEmbeddable":{"type":"object","properties":{"src":{"type":"string"},"width":{"type":"number"},"height":{"type":"number"}}},"FacebookAttachmentTarget":{"type":"object","properties":{"id":{"type":"string"},"url":{"type":"string"}}},"FacebookLikesEmbeddable":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/FacebookUserEmbeddable"}},"summary":{"$ref":"#/components/schemas/FacebookLikesSummaryEmbeddable"}}},"FacebookUserEmbeddable":{"type":"object","properties":{"picture":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookUserPirctureEmbeddable"}]},"id":{"type":"string"},"name":{"type":"string"}}},"FacebookUserPirctureEmbeddable":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/FacebookPictureEmbeddable"}}},"FacebookPictureEmbeddable":{"type":"object","properties":{"url":{"type":"string"},"height":{"type":"number"},"width":{"type":"number"},"is_silhouette":{"type":"boolean"}}},"FacebookLikesSummaryEmbeddable":{"type":"object","properties":{"total_count":{"type":"number"},"can_like":{"type":"boolean"},"has_liked":{"type":"boolean"}},"required":["total_count","can_like","has_liked"]},"FacebookReactionsEmbeddable":{"type":"object","properties":{"summary":{"type":"array","items":{"$ref":"#/components/schemas/FacebookReactionSummaryEmbeddable"}}}},"FacebookReactionSummaryEmbeddable":{"type":"object","properties":{"total_count":{"type":"number"}},"required":["total_count"]},"FacebookSubCommentEmbeddable":{"type":"object","properties":{"from":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookUserEmbeddable"}]},"attachment":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookLikesEmbeddable"}]},"created_time":{"format":"date-time","type":"string"},"id":{"type":"string"},"message":{"type":"string"}},"required":["created_time","id"]},"InstagramFeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"id":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"text":{"type":"string"},"from":{"$ref":"#/components/schemas/MetaApiInstagramProfileEmbeddable"},"hidden":{"type":"boolean"},"like_count":{"type":"number"},"legacy_instagram_comment_id":{"type":"string"},"media":{"$ref":"#/components/schemas/InstagramMediaInfoEmbeddable"},"parent_id":{"type":"string"},"replies":{"type":"object","properties":{"data":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/InstagramSubCommentEmbeddable"}}},"required":[]}},"required":["id","timestamp","text","from","hidden","like_count","legacy_instagram_comment_id","media"]},"MetaApiInstagramProfileEmbeddable":{"type":"object","properties":{"id":{"type":"string"},"username":{"type":"string"}}},"InstagramMediaInfoEmbeddable":{"type":"object","properties":{"media_product_type":{"allOf":[{"$ref":"#/components/schemas/MediaProductType"}]},"id":{"type":"string"}},"required":["media_product_type","id"]},"MediaProductType":{"type":"string","enum":["AD","FEED","REEL","STORY"]},"InstagramSubCommentEmbeddable":{"type":"object","properties":{"from":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiInstagramProfileEmbeddable"}]},"id":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"text":{"type":"string"}},"required":["timestamp"]},"TheForkFeedbackMetadatasEmbeddable":{"type":"object","properties":{"reviewUuid":{"type":"string"},"restaurantUuid":{"type":"string"},"isValid":{"type":"boolean"},"createdTs":{"type":"string"},"updatedTs":{"type":"string"},"reservation":{"$ref":"#/components/schemas/TheForkReviewReservationEmbeddable"},"customer":{"$ref":"#/components/schemas/TheForkReviewCustomerEmbeddable"},"dinerRating":{"$ref":"#/components/schemas/TheForkReviewDinerRatingEmbeddable"},"comment":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewCommentEmbeddable"}]},"experienceDetail":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewExperienceDetailEmbeddable"}]},"restaurantReply":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewRestaurantReplyEmbeddable"}]}},"required":["reviewUuid","restaurantUuid","isValid","createdTs","updatedTs","reservation","customer","dinerRating","comment","experienceDetail","restaurantReply"]},"TheForkReviewReservationEmbeddable":{"type":"object","properties":{"reservationUuid":{"type":"string","nullable":true},"mealDate":{"type":"string","nullable":true}},"required":["reservationUuid","mealDate"]},"TheForkReviewCustomerEmbeddable":{"type":"object","properties":{"customerUuid":{"type":"string"},"firstName":{"type":"string","nullable":true},"lastName":{"type":"string","nullable":true}},"required":["customerUuid","firstName","lastName"]},"TheForkReviewDinerRatingEmbeddable":{"type":"object","properties":{"priceEvaluation":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewPriceEvaluation"}]},"waitingTimeEvaluation":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewWaitingTimeEvaluation"}]},"noiseLevelEvaluation":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewNoiseLevelEvaluation"}]},"globalRating":{"type":"number","nullable":true},"ambienceRating":{"type":"number","nullable":true},"foodQualityRating":{"type":"number","nullable":true},"serviceRating":{"type":"number","nullable":true}},"required":["priceEvaluation","waitingTimeEvaluation","noiseLevelEvaluation","globalRating","ambienceRating","foodQualityRating","serviceRating"]},"TheForkReviewPriceEvaluation":{"type":"string","enum":["VERY_CHEAP","CHEAP","AVERAGE","EXPENSIVE","VERY_EXPENSIVE"]},"TheForkReviewWaitingTimeEvaluation":{"type":"string","enum":["VERY_FAST","FAST","AVERAGE","SLOW","VERY_SLOW"]},"TheForkReviewNoiseLevelEvaluation":{"type":"string","enum":["VERY_QUIET","QUIET","MODERATE","LOUD","VERY_LOUD"]},"TheForkReviewCommentEmbeddable":{"type":"object","properties":{"publicationStatus":{"allOf":[{"$ref":"#/components/schemas/TheForkReviewPublicationStatus"}]},"moderationReason":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewModerationReason"}]},"content":{"type":"string"},"language":{"type":"string","nullable":true},"createdTs":{"type":"string"},"updatedTs":{"type":"string"},"publishedTs":{"type":"string","nullable":true}},"required":["publicationStatus","moderationReason","content","language","createdTs","updatedTs","publishedTs"]},"TheForkReviewPublicationStatus":{"type":"string","enum":["NOT_REVIEWED","REJECTED","PUBLISHED","WAITING_REFORMULATE","ARCHIVED","DELETED"]},"TheForkReviewModerationReason":{"type":"string","enum":["REFORMULATE_REPLY_IRRELEVANT_CONTENT","REFORMULATE_REPLY_PROFANITY","REFORMULATE_REPLY_INCORRECT_INFORMATION","REFORMULATE_REPLY_SPAM","REFORMULATE_REPLY_THREATENING_LANGUAGE","REFORMULATE_REPLY_CONFIDENTIAL_TF_INFO","REFORMULATE_REPLY_PRIVATE_DATA","REFORMULATE_REPLY_INAPROPRIATE_CONTENT","REFORMULATE_REPLY_NOT_COMPLIANT","REFORMULATE_REPLY_VIOLENCE","REFORMULATE_REPLY_DISCRIMINATORY","REFORMULATE_REPLY_RESTAURANT_REQUEST","REFORMULATE_REPLY_HARASSMENT_LANGUAGE","REFORMULATE_REPLY_INAUTHENTIC","REFORMULATE_REPLY_ALL_CAPS_UNINTELLIGIBLE_NON_ORIGINAL_CONTENT","REJECT_REPLY_NOT_COMPLIANT","REJECT_REPLY_REFORMULATION_PERIOD_ENDED","REJECT_REPLY_RESTAURANT_REQUEST"]},"TheForkReviewExperienceDetailEmbeddable":{"type":"object","properties":{"occasion":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewOccasion"}]}},"required":["occasion"]},"TheForkReviewOccasion":{"type":"string","enum":["BUSINESS","FRIENDS","ROMANTIC","FAMILY","ALONE"]},"TheForkReviewRestaurantReplyEmbeddable":{"type":"object","properties":{"publicationStatus":{"allOf":[{"$ref":"#/components/schemas/TheForkReviewPublicationStatus"}]},"moderationReason":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewModerationReason"}]},"content":{"type":"string"},"language":{"type":"string","nullable":true},"createdTs":{"type":"string"},"updatedTs":{"type":"string"},"publishedTs":{"type":"string","nullable":true}},"required":["publicationStatus","moderationReason","content","language","createdTs","updatedTs","publishedTs"]},"ExpediaFeedbackMetadatasEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"reservation":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExpediaReviewReservationEmbeddable"}]},"propertyId":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/ExpediaReviewPropertyIdReferenceEmbeddable"}},"status":{"type":"string","nullable":true},"brandNameV2":{"type":"string","nullable":true},"source":{"type":"string","nullable":true},"createdDateTime":{"type":"string","nullable":true},"lastUpdatedDateTime":{"type":"string","nullable":true},"title":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExpediaReviewLocalizedTextEmbeddable"}]},"body":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExpediaReviewLocalizedTextEmbeddable"}]},"starRatings":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/ExpediaReviewStarRatingEmbeddable"}},"isEligibleForResponse":{"type":"boolean","nullable":true},"response":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExpediaReviewResponseEmbeddable"}]},"media":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/ExpediaReviewMediaEmbeddable"}}},"required":["id","reservation","propertyId","status","brandNameV2","source","createdDateTime","lastUpdatedDateTime","title","body","starRatings","isEligibleForResponse","response","media"]},"ExpediaReviewReservationEmbeddable":{"type":"object","properties":{"reservationIds":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/ExpediaReviewIdReferenceEmbeddable"}},"status":{"type":"string","nullable":true},"primaryGuest":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExpediaReviewPrimaryGuestEmbeddable"}]},"checkInDate":{"type":"string","nullable":true},"checkOutDate":{"type":"string","nullable":true}},"required":["reservationIds","status","primaryGuest","checkInDate","checkOutDate"]},"ExpediaReviewIdReferenceEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"idSource":{"type":"string","nullable":true}},"required":["id","idSource"]},"ExpediaReviewPrimaryGuestEmbeddable":{"type":"object","properties":{"firstName":{"type":"string","nullable":true},"lastName":{"type":"string","nullable":true}},"required":["firstName","lastName"]},"ExpediaReviewPropertyIdReferenceEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"idSource":{"type":"string","nullable":true}},"required":["id","idSource"]},"ExpediaReviewLocalizedTextEmbeddable":{"type":"object","properties":{"value":{"type":"string","nullable":true},"locale":{"type":"string","nullable":true}},"required":["value","locale"]},"ExpediaReviewStarRatingEmbeddable":{"type":"object","properties":{"category":{"nullable":true,"enum":["ecoFriendliness","roomComfort","roomCleanliness","service","overall","hotelCondition","roomAmenitiesScore","areaAroundHotel","cleanliness","house_rules","communication"],"type":"string"},"value":{"type":"string","nullable":true}},"required":["category","value"]},"ExpediaReviewResponseEmbeddable":{"type":"object","properties":{"status":{"type":"string","nullable":true},"createdDateTime":{"type":"string","nullable":true},"lastUpdatedDateTime":{"type":"string","nullable":true},"body":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExpediaReviewLocalizedTextEmbeddable"}]}},"required":["status","createdDateTime","lastUpdatedDateTime","body"]},"ExpediaReviewMediaEmbeddable":{"type":"object","properties":{"thumbnailUrl":{"type":"string","nullable":true},"highResolutionUrl":{"type":"string","nullable":true},"caption":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExpediaReviewLocalizedTextEmbeddable"}]}},"required":["thumbnailUrl","highResolutionUrl","caption"]},"PartnerPublicFile":{"type":"object","properties":{"contentType":{"type":"string","description":"MIME type of the file"},"url":{"type":"string","description":"URL to access the file"},"size":{"type":"string","nullable":true,"description":"Size of the file in bytes","default":null},"width":{"type":"number","nullable":true,"description":"Width of the file (if applicable, e.g., for images)","default":null},"height":{"type":"string","nullable":true,"description":"Height of the file (if applicable, e.g., for images)","default":null}},"required":["contentType","url","size","width","height"]},"PartnerFeedbackReply":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier"},"createdAt":{"format":"date-time","type":"string","description":"Creation timestamp"},"updatedAt":{"format":"date-time","type":"string","description":"Last update timestamp"},"source":{"description":"Source of the review reply","allOf":[{"$ref":"#/components/schemas/DataSource"}]},"channel":{"description":"Channel of the review reply","allOf":[{"$ref":"#/components/schemas/FeedbackChannel"}]},"text":{"type":"string","nullable":true,"description":"Review reply text content","default":null},"html":{"type":"string","nullable":true,"description":"Review reply html content - Email only","default":null},"externalId":{"type":"string","nullable":true,"description":"External identifier of the review reply","default":null},"language":{"nullable":true,"description":"Review reply language, if available","default":null,"allOf":[{"$ref":"#/components/schemas/FullwhereLanguage"}]},"mode":{"description":"The mode of the reply.\nThis indicates whether the reply was created by an intelligent agent,\nmanually by a user, or both if generated then modified by an user.","allOf":[{"$ref":"#/components/schemas/FeedbackReplyMode"}]},"attachments":{"description":"Review reply attachments (eg. photos, videos)","default":[],"type":"array","items":{"$ref":"#/components/schemas/PartnerPublicFile"}},"generated":{"type":"boolean","description":"Determines if the reply was generated by an agent"}},"required":["id","createdAt","updatedAt","source","channel","text","html","externalId","language","mode","attachments","generated"]},"FeedbackChannel":{"type":"string","enum":["Google","Zenchef","Sevenrooms","Ubereats","Deliveroo","TripAdvisor","Survey","Import","Booking","Sunday","Experience","Site","FacebookPostComment","InstagramPostComment","FacebookDirectMessage","InstagramDirectMessage","Email","WhatsApp","Sms","TheFork","Expedia"],"description":"Channel of the review reply"},"FeedbackReplyMode":{"type":"string","enum":["IA","MANUAL","BOTH"],"description":"The mode of the reply.\nThis indicates whether the reply was created by an intelligent agent,\nmanually by a user, or both if generated then modified by an user."},"PartnerSurveyReply":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier"},"createdAt":{"format":"date-time","type":"string","description":"Creation timestamp"},"updatedAt":{"format":"date-time","type":"string","description":"Last update timestamp"},"fieldId":{"type":"string","nullable":true,"description":"Relative Survey field ID, if it still exists at the time of submission.\nNull if the field has been deleted.","default":null},"type":{"description":"Type of the survey field","allOf":[{"$ref":"#/components/schemas/SurveyFieldType"}]},"label":{"type":"string","description":"Label of the survey field at the time of submission"},"group":{"type":"string","nullable":true,"description":"Group of the survey field at the time of submission, if it was part of a group.\nNull otherwise.","default":null},"values":{"description":"Values of the survey reply.\nFor text fields, it will be an array with a single string element.\nFor CSAT and NPS, it will be an array with a single number element as string.\nFor multiple choice fields, it will be an array with all selected options.","type":"array","items":{"type":"string"}},"possibleValues":{"nullable":true,"description":"Possible values of the linked form field.","default":null,"type":"array","items":{"type":"string"}},"text":{"type":"string","nullable":true,"description":"Reply as text for text fields only."},"rating":{"type":"number","nullable":true,"description":"Survey reply as value for CSAT and NPS fields"}},"required":["id","createdAt","updatedAt","fieldId","type","label","group","values","possibleValues","text","rating"]},"SurveyFieldType":{"type":"string","enum":["NPS","CSAT SMILEYS","CSAT STARS","TEXT","DROPDOWN","RADIO","CHECKBOX","FILES","DATE","STORE","FIRSTNAME","LASTNAME","CIVILITY","EMAIL","PHONE","PURCHASE","MAIN"],"description":"Survey field type"},"PartnerContactFormReply":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier"},"createdAt":{"format":"date-time","type":"string","description":"Creation timestamp"},"updatedAt":{"format":"date-time","type":"string","description":"Last update timestamp"},"fieldId":{"type":"string","nullable":true,"description":"Relative ContactForm field ID, if it still exists at the time of submission.\nNull if the field has been deleted.","default":null},"type":{"description":"Type of the form field","allOf":[{"$ref":"#/components/schemas/ContactFormFieldType"}]},"label":{"type":"string","description":"Label of the form field at the time of submission"},"group":{"type":"string","nullable":true,"description":"Group of the form field at the time of submission, if it was part of a group.\nNull otherwise.","default":null},"values":{"description":"Values of the form reply.\nFor text fields, it will be an array with a single string element.\nFor multiple choice fields, it will be an array with all selected options.","type":"array","items":{"type":"string"}},"possibleValues":{"nullable":true,"description":"Possible values of the linked form field.","default":null,"type":"array","items":{"type":"string"}},"text":{"type":"string","nullable":true,"description":"Reply as text for text fields only."}},"required":["id","createdAt","updatedAt","fieldId","type","label","group","values","possibleValues","text"]},"ContactFormFieldType":{"type":"string","enum":["TEXT","DROPDOWN","RADIO","CHECKBOX","FILES","DATE","STORE","FIRSTNAME","LASTNAME","CIVILITY","EMAIL","PHONE","PURCHASE","MAIN"],"description":"Contact form field type"},"PartnerSocialPostComment":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier"},"createdAt":{"format":"date-time","type":"string","description":"Creation timestamp"},"updatedAt":{"format":"date-time","type":"string","description":"Last update timestamp"},"externalId":{"type":"string","description":"ID of the comment in the source platform (e.g. Facebook, Instagram, etc.)"},"text":{"type":"string","nullable":true,"description":"Text content of the comment, if any","default":null},"externalUserId":{"type":"string","description":"ID of the user who made the comment in the source platform"},"externalUserName":{"type":"string","nullable":true,"description":"Name of the user who made the comment in the source platform, if any","default":null},"profilePicture":{"type":"string","nullable":true,"description":"URL of the profile picture of the user who made the comment in the source platform, if any","default":null},"permalink":{"type":"string","nullable":true,"description":"Permalink to the comment in the source platform, if any","default":null},"attachments":{"nullable":true,"description":"Attachments associated with the comment, if any","default":null,"allOf":[{"$ref":"#/components/schemas/SocialPostAttachmentEmbeddable"}]},"metadata":{"description":"Metadata associated with the comment, such as detected language, sentiment analysis, etc.","allOf":[{"$ref":"#/components/schemas/SocialPostCommentMetadatasEmbeddable"}]},"deleted":{"type":"boolean","description":"Whether the comment has been deleted in the source platform or not"},"canHide":{"type":"boolean","description":"Whether the comment can be hidden or not (i.e. whether the source platform allows hiding comments or not)"},"isHidden":{"type":"boolean","description":"Whether the comment is currently hidden or not in the source platform"}},"required":["id","createdAt","updatedAt","externalId","text","externalUserId","externalUserName","profilePicture","permalink","attachments","metadata","deleted","canHide","isHidden"]},"SocialPostAttachmentEmbeddable":{"type":"object","properties":{"facebook":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/FacebookAttachmentEmbeddable"}}}},"SocialPostCommentMetadatasEmbeddable":{"type":"object","properties":{"facebook":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookCommentsMetadatasEmbeddable"}]},"instagram":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/InstagramCommentsMetadatasEmbeddable"}]}}},"FacebookCommentsMetadatasEmbeddable":{"type":"object","properties":{"likes":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookLikesEmbeddable"}]},"reactions":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookReactionsEmbeddable"}]},"comments":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookCommentsCommentsMetadatasEmbeddable"}]}}},"FacebookCommentsCommentsMetadatasEmbeddable":{"type":"object","properties":{"data":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/FacebookSubCommentEmbeddable"}}}},"InstagramCommentsMetadatasEmbeddable":{"type":"object","properties":{"from":{"$ref":"#/components/schemas/MetaApiInstagramProfileEmbeddable"},"media":{"$ref":"#/components/schemas/InstagramMediaInfoEmbeddable"},"replies":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/InstagramCommentRepliesMetadatasEmbeddable"}]},"id":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"text":{"type":"string"},"hidden":{"type":"boolean"},"like_count":{"type":"number"},"legacy_instagram_comment_id":{"type":"string"},"parent_id":{"type":"string"}},"required":["media","id","timestamp","text","hidden","like_count","legacy_instagram_comment_id"]},"InstagramCommentRepliesMetadatasEmbeddable":{"type":"object","properties":{"data":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/InstagramSubCommentEmbeddable"}}}}}}}
```

## POST /partners/feedback/list

> List feedbacks

```json
{"openapi":"3.0.0","info":{"title":"Partners","version":"1.0.0"},"servers":[{"url":"https://api.fullwhere.com"}],"paths":{"/partners/feedback/list":{"post":{"operationId":"PartnersFeedbackController_listFeedbacks","parameters":[{"name":"X-API-KEY","in":"header","description":"Partner API Key","required":true,"schema":{"type":"string"}},{"name":"X-API-SECRET","in":"header","description":"Partner API Secret","required":true,"schema":{"type":"string"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PartnerFeedbackListingParamsDto"}}}},"responses":{"201":{"description":"The feedbacks have been successfully listed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PartnerFeedbackListingOutput"}}}},"400":{"description":"Invalid input format."},"401":{"description":"Unauthorized"}},"summary":"List feedbacks","tags":["Feedback"]}}},"components":{"schemas":{"PartnerFeedbackListingParamsDto":{"type":"object","properties":{"limit":{"type":"number","description":"Pagination limit","default":10,"minimum":1,"maximum":100},"page":{"type":"number","description":"Page to retrieve","default":1,"minimum":1},"from":{"type":"string","description":"Date range start","nullable":true},"to":{"type":"string","description":"Date range end","nullable":true},"stores":{"description":"Store IDs to filter feedbacks","minItems":1,"maxItems":100,"nullable":true,"type":"array","items":{"type":"string","format":"uuid"}},"brands":{"description":"Brand IDs to filter feedbacks","minItems":1,"maxItems":100,"nullable":true,"type":"array","items":{"type":"string","format":"uuid"}},"customers":{"description":"Customer IDs to filter feedbacks","minItems":1,"maxItems":100,"nullable":true,"type":"array","items":{"type":"string","format":"uuid"}},"externalIds":{"description":"External IDs to filter feedbacks","minItems":1,"maxItems":100,"nullable":true,"type":"array","items":{"type":"string"}},"sources":{"description":"Data sources to filter feedbacks","minItems":1,"items":{"type":"string","enum":["AutoGestion","Booking","BubbleContactEmail","Como","Deliveroo","Email","Experience","Facebook","Google","Import","Instagram","Juxta","Mews","Oracle","Salesforce","SelligentPartouche","Sevenrooms","Site","Sms","Sunday","Survey","TripAdvisor","Ubereats","WhatsApp","Zelty","Zenchef","TheFork","Chr365","Expedia"]},"nullable":true,"type":"array"},"classes":{"description":"Feedback classes to filter feedbacks","minItems":1,"items":{"type":"string","enum":["Review","Survey","Contact","Message","Post"]},"nullable":true,"type":"array"},"surveys":{"description":"Survey IDs to filter feedbacks","minItems":1,"maxItems":100,"nullable":true,"type":"array","items":{"type":"string","format":"uuid"}},"contactForms":{"description":"Contact form IDs to filter feedbacks","minItems":1,"maxItems":100,"nullable":true,"type":"array","items":{"type":"string","format":"uuid"}}}},"PartnerFeedbackListingOutput":{"type":"object","properties":{"items":{"description":"List of reviews","type":"array","items":{"$ref":"#/components/schemas/PartnerFeedback"}},"meta":{"description":"Listing metadata","allOf":[{"$ref":"#/components/schemas/PartnerListingOutputMeta"}]}},"required":["items","meta"]},"PartnerFeedback":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier"},"createdAt":{"format":"date-time","type":"string","description":"Creation timestamp"},"updatedAt":{"format":"date-time","type":"string","description":"Last update timestamp"},"context":{"description":"Contextual information about the review","allOf":[{"$ref":"#/components/schemas/PartnerFeedbackContext"}]},"source":{"description":"Source of the review","allOf":[{"$ref":"#/components/schemas/DataSource"}]},"class":{"description":"Class of the review","allOf":[{"$ref":"#/components/schemas/FeedbackClass"}]},"text":{"type":"string","nullable":true,"description":"Review text content","default":null},"html":{"type":"string","nullable":true,"description":"Review html content - Email only","default":null},"externalId":{"type":"string","nullable":true,"description":"External identifier of the review","default":null},"rating":{"type":"number","nullable":true,"description":"Review rating - from 0 to 5 (can be null if the review has no rating)","default":null},"language":{"nullable":true,"description":"Review language, if available","default":null,"allOf":[{"$ref":"#/components/schemas/FullwhereLanguage"}]},"tags":{"description":"A list of tags associated with the review, either detected by the system or added manually by the user","type":"array","items":{"$ref":"#/components/schemas/PartnerFeedbackTag"}},"attributes":{"description":"Custom attribute values associated with the review","type":"array","items":{"$ref":"#/components/schemas/PartnerFeedbackCustomAttributeValue"}},"themes":{"description":"Detected review themes","default":[],"type":"array","items":{"$ref":"#/components/schemas/FeedbackTheme"}},"emotions":{"description":"Detected review emotions","default":[],"type":"array","items":{"$ref":"#/components/schemas/FeedbackEmotion"}},"polarity":{"nullable":true,"description":"Detected review polarity","allOf":[{"$ref":"#/components/schemas/FeedbackPolarity"}]},"metadata":{"description":"Metadata associated with the review","allOf":[{"$ref":"#/components/schemas/FeedbackContentMetadatasEmbeddable"}]},"attachments":{"description":"Review attachments (eg. photos, videos)","default":[],"type":"array","items":{"$ref":"#/components/schemas/PartnerPublicFile"}},"spamScore":{"type":"number","nullable":true,"description":"Spam score, if available.\nLower is better; scores can be negative or positive.\nMessages above 5 are generally considered spam.","default":null},"replies":{"description":"Main replies to the review, if any.\nThis list contains the main response for each channel.","default":[],"type":"array","items":{"$ref":"#/components/schemas/PartnerFeedbackReply"}},"surveyReplies":{"description":"Raw submitted survey replies associated with the review, if any\nOnly for reviews that come from a survey source (SURVEY)","default":[],"type":"array","items":{"$ref":"#/components/schemas/PartnerSurveyReply"}},"contactFormReplies":{"description":"Raw submitted contact form replies associated with the review, if any\nOnly for reviews that come from a contact form source (SITE)","default":[],"type":"array","items":{"$ref":"#/components/schemas/PartnerContactFormReply"}},"socialPostComment":{"nullable":true,"description":"Associated social post comment, if any (only for reviews that come from a social network source)","default":null,"allOf":[{"$ref":"#/components/schemas/PartnerSocialPostComment"}]},"likeRecommended":{"type":"boolean","nullable":true,"description":"Only for social network comments.\nDetermines whether the post comment should be liked or not","default":null},"replyRecommended":{"type":"boolean","nullable":true,"description":"Only for social network comments.\nDetermines whether the post comment should have a reply or not","default":null},"hideRecommended":{"type":"boolean","nullable":true,"description":"Only for social network comments.\nDetermines whether the post comment should be hidden or not","default":null},"analyzed":{"type":"boolean","description":"Whether or not the review has been analyzed by the system"},"csatIndex":{"type":"number","nullable":true,"description":"Customer Satisfaction Index for the content's feedback.\nOnly for survey feedbacks with CSAT question type.","default":null},"npsValue":{"type":"number","nullable":true,"description":"Net Promoter Score value for the content's feedback.\nOnly for survey feedbacks with NPS question type.","default":null},"deleted":{"type":"boolean","description":"Determines whether review has been removed from its source platform"},"imported":{"type":"boolean","description":"Determines if the review has been imported manually (eg. via CSV import) or automatically via an integration"}},"required":["id","createdAt","updatedAt","context","source","class","text","html","externalId","rating","language","tags","attributes","themes","emotions","polarity","metadata","attachments","spamScore","replies","surveyReplies","contactFormReplies","socialPostComment","likeRecommended","replyRecommended","hideRecommended","analyzed","csatIndex","npsValue","deleted","imported"]},"PartnerFeedbackContext":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier"},"createdAt":{"format":"date-time","type":"string","description":"Creation timestamp"},"updatedAt":{"format":"date-time","type":"string","description":"Last update timestamp"},"brandId":{"type":"string","description":"Brand identifier"},"storeId":{"type":"string","nullable":true,"description":"Store identifier","default":null},"purchaseId":{"type":"string","nullable":true,"description":"Purchase identifier","default":null},"customerId":{"type":"string","nullable":true,"description":"Customer identifier","default":null},"contactFormId":{"type":"string","nullable":true,"description":"Contact form identifier","default":null},"surveyId":{"type":"string","nullable":true,"description":"Survey identifier","default":null},"surveyTrackerId":{"type":"string","nullable":true,"description":"Survey Tracker identifier","default":null},"supportEmailId":{"type":"string","nullable":true,"description":"Support email identifier","default":null},"socialPostId":{"type":"string","nullable":true,"description":"Social post identifier","default":null},"link":{"type":"string","description":"Link to Fullwhere webapp"},"status":{"description":"Determines whether a review of this context is awaiting a response (UNPROCESSED), has been processed (PROCESSED), or has been bypassed (BYPASSED).","allOf":[{"$ref":"#/components/schemas/FeedbackStatus"}]},"archived":{"type":"boolean","description":"Determines if the review context has been archived"},"responseTime":{"type":"number","nullable":true,"description":"Response time in seconds.\nThis is the time between the original review and its first reply.","default":null},"interactionTime":{"type":"number","nullable":true,"description":"Interaction time in seconds.\nThis is the time between the original review and its last reply.","default":null},"reactionTimes":{"type":"number","nullable":true,"description":"Reaction times in seconds.\nThis is the time between each review and its first reply.","default":null},"allowEmailReply":{"type":"boolean","description":"Determines whether email replies are allowed for this review context"},"allowSmsReply":{"type":"boolean","description":"Determines whether SMS replies are allowed for this review context"}},"required":["id","createdAt","updatedAt","brandId","storeId","purchaseId","customerId","contactFormId","surveyId","surveyTrackerId","supportEmailId","socialPostId","link","status","archived","responseTime","interactionTime","reactionTimes","allowEmailReply","allowSmsReply"]},"FeedbackStatus":{"type":"string","enum":["PROCESSED","UNPROCESSED","BYPASSED"],"description":"Determines whether a review of this context is awaiting a response (UNPROCESSED), has been processed (PROCESSED), or has been bypassed (BYPASSED)."},"DataSource":{"type":"string","enum":["AutoGestion","Booking","BubbleContactEmail","Como","Deliveroo","Email","Experience","Facebook","Google","Import","Instagram","Juxta","Mews","Oracle","Salesforce","SelligentPartouche","Sevenrooms","Site","Sms","Sunday","Survey","TripAdvisor","Ubereats","WhatsApp","Zelty","Zenchef","TheFork","Chr365","Expedia"],"description":"Data sources associated with the customer"},"FeedbackClass":{"type":"string","enum":["Review","Survey","Contact","Message","Post"],"description":"Class of the review"},"FullwhereLanguage":{"type":"string","enum":["af","sq","am","ar","hy","as","az","ba","eu","be","bn","bs","br","bg","my","ca","ceb","ny","zh","zh-TW","co","hr","cs","da","dv","nl","en","eo","et","fo","tl","fi","fr","fy","gl","ka","de","el","kl","gu","ht","ha","haw","he","hi","hmn","hu","is","ig","ilo","id","iu","ga","it","ja","jv","kn","kk","km","rw","ko","ku","ky","lo","la","lv","lt","lb","mk","mg","ms","ml","mt","mi","mr","arn","mn","moh","ne","no","oc","or","ps","fa","pl","pt","pa","qu","ro","ru","sm","gd","sr","st","sn","sd","si","sk","sl","so","es","su","sw","sv","tg","ta","tt","te","th","bo","tr","tk","uk","ur","ug","uz","vi","cy","xh","yi","yo","zu"],"description":"Language used to generate review responses"},"PartnerFeedbackTag":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier"},"createdAt":{"format":"date-time","type":"string","description":"Creation timestamp"},"updatedAt":{"format":"date-time","type":"string","description":"Last update timestamp"},"tag":{"type":"string","description":"Tag name"},"color":{"type":"string","nullable":true,"description":"Tag hexadecimal color","default":null}},"required":["id","createdAt","updatedAt","tag","color"]},"PartnerFeedbackCustomAttributeValue":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier"},"createdAt":{"format":"date-time","type":"string","description":"Creation timestamp"},"updatedAt":{"format":"date-time","type":"string","description":"Last update timestamp"},"attribute":{"type":"string","description":"ID of the related custom attribute."},"type":{"description":"The type of the custom attribute.","allOf":[{"$ref":"#/components/schemas/CustomAttributeType"}]},"autoDetected":{"type":"boolean","description":"Determines if the value was auto-detected"},"fromPossibleValue":{"type":"string","nullable":true,"description":"The ID of the possible value selected if applicable\nOnly used for select type custom attributes, null otherwise","default":null},"text":{"type":"string","nullable":true,"description":"Submitted text value if applicable\nOnly used for text type custom attributes, null otherwise","default":null},"rating":{"type":"string","nullable":true,"description":"Submitted numeric value if applicable\nOnly used for rating type custom attributes, null otherwise","default":null},"value":{"type":"string","description":"The value of the custom attribute as string, which can be either:\n- The text value for text type custom attributes\n- The numeric value for rating type custom attributes\n- The value of the selected possible value for select type custom attributes"}},"required":["id","createdAt","updatedAt","attribute","type","autoDetected","fromPossibleValue","text","rating","value"]},"CustomAttributeType":{"type":"string","enum":["SINGLE_SELECT","MULTI_SELECT","TEXT","NUMBER"],"description":"The type of the custom attribute."},"FeedbackTheme":{"type":"string","enum":["Complaint","Question","Compliment","Suggestion","Comparison"],"description":"Detected review themes"},"FeedbackEmotion":{"type":"string","enum":["Disappointment","Surprise","Fear","Joy","Anger"],"description":"Detected review emotions"},"FeedbackPolarity":{"type":"string","enum":["Positive","Negative","Neutral"],"description":"Detected review polarity"},"FeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"googleMyBusiness":{"nullable":true,"description":"Google my business feedback metadatas","allOf":[{"$ref":"#/components/schemas/GoogleMyBusinessFeedbackContentMetadatasEmbeddable"}]},"zenchef":{"nullable":true,"description":"Zenchef feedback metadatas.","allOf":[{"$ref":"#/components/schemas/ZenchefFeedbackContentMetadatasEmbeddable"}]},"deliveroo":{"nullable":true,"description":"Deliveroo feedback metadatas.","allOf":[{"$ref":"#/components/schemas/DeliverooFeedbackMetadatasEmbeddable"}]},"tripadvisor":{"nullable":true,"description":"TripAdvisor feedback metadatas.","allOf":[{"$ref":"#/components/schemas/TripAdvisorFeedbackContentMetadatasEmbeddable"}]},"ubereats":{"nullable":true,"description":"UberEats feedback metadatas","allOf":[{"$ref":"#/components/schemas/UbereatsFeedbackContentMetadatasEmbeddable"}]},"sevenrooms":{"nullable":true,"description":"Sevenrooms feedback metadatas.","allOf":[{"$ref":"#/components/schemas/SevenroomsFeedbackMetadatasEmbeddable"}]},"email":{"nullable":true,"description":"Support email feedback metadatas.","allOf":[{"$ref":"#/components/schemas/SupportEmailFeedbackMetadatasEmbeddable"}]},"site":{"nullable":true,"description":"Site feedback metadatas.","allOf":[{"$ref":"#/components/schemas/SiteFeedbackContentMetadatasEmbeddable"}]},"metaMessage":{"nullable":true,"description":"Meta feedback message metadatas.","allOf":[{"$ref":"#/components/schemas/MetaMessageMetadatasEmbeddable"}]},"whatsapp":{"nullable":true,"description":"WhatsApp feedback message metadatas.","allOf":[{"$ref":"#/components/schemas/WhatsAppMessageMetadatasEmbeddable"}]},"booking":{"nullable":true,"description":"Booking feedback metadatas.","allOf":[{"$ref":"#/components/schemas/BookingFeedbackContentMetadatasEmbeddable"}]},"sunday":{"nullable":true,"description":"Sunday feedback metadatas.","allOf":[{"$ref":"#/components/schemas/SundayFeedbackMetadatasEmbeddable"}]},"experience":{"nullable":true,"description":"Experience feedback metadatas.","allOf":[{"$ref":"#/components/schemas/ExperienceFeedbackMetadatasEmbeddable"}]},"facebookFeed":{"nullable":true,"description":"Facebook feedback metadatas.","allOf":[{"$ref":"#/components/schemas/FacebookFeedbackContentMetadatasEmbeddable"}]},"instagramFeed":{"nullable":true,"description":"Instagram feedback metadatas.","allOf":[{"$ref":"#/components/schemas/InstagramFeedbackContentMetadatasEmbeddable"}]},"thefork":{"nullable":true,"description":"TheFork feedback metadatas.","allOf":[{"$ref":"#/components/schemas/TheForkFeedbackMetadatasEmbeddable"}]},"expedia":{"nullable":true,"description":"Expedia feedback metadatas.","allOf":[{"$ref":"#/components/schemas/ExpediaFeedbackMetadatasEmbeddable"}]}}},"GoogleMyBusinessFeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"createTime":{"type":"object","description":"Google my business review content creation time"},"updateTime":{"type":"object","description":"Google my business review content update time"},"comment":{"type":"string","nullable":true,"description":"Google my business review raw content"},"starRating":{"nullable":true,"description":"Google my business review content rates","enum":["STAR_RATING_UNSPECIFIED","ONE","TWO","THREE","FOUR","FIVE"],"type":"string"},"medias":{"nullable":true,"description":"Google my business medias attached to this Feedback","default":[],"type":"array","items":{"$ref":"#/components/schemas/GoogleMyBusinessMediaItemEmbeddable"}}},"required":["createTime","updateTime","comment","starRating","medias"]},"GoogleMyBusinessMediaItemEmbeddable":{"type":"object","properties":{"name":{"type":"string"},"mediaFormat":{"enum":["MEDIA_FORMAT_UNSPECIFIED","PHOTO","VIDEO"],"type":"string"},"locationAssociation":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/GoogleMyBusinessLocationAssociationEmbeddable"}]},"googleUrl":{"type":"string"},"thumbnailUrl":{"type":"string"},"createTime":{"format":"date-time","type":"string"},"dimensions":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/GoogleMyBusinessDimensionsEmbeddable"}]},"insights":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/GoogleMyBusinessInsightsEmbeddable"}]},"attribution":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/GoogleMyBusinessAttributionEmbeddable"}]},"description":{"type":"string","nullable":true},"sourceUrl":{"type":"string","nullable":true},"dataRef":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/GoogleMyBusinessDataRefEmbeddable"}]}},"required":["name","mediaFormat","locationAssociation","googleUrl","thumbnailUrl","createTime","dimensions","insights","attribution","description","sourceUrl","dataRef"]},"GoogleMyBusinessLocationAssociationEmbeddable":{"type":"object","properties":{"category":{"enum":["CATEGORY_UNSPECIFIED","COVER","PROFILE","LOGO","EXTERIOR","INTERIOR","PRODUCT","AT_WORK","FOOD_AND_DRIN","MENU","COMMON_AREA","ROOMS","TEAMS","ADDITIONA"],"type":"string"},"priceListItemId":{"type":"string","nullable":true}},"required":["category","priceListItemId"]},"GoogleMyBusinessDimensionsEmbeddable":{"type":"object","properties":{"widthPixels":{"type":"number"},"heightPixels":{"type":"number"}},"required":["widthPixels","heightPixels"]},"GoogleMyBusinessInsightsEmbeddable":{"type":"object","properties":{"viewCount":{"type":"string"}},"required":["viewCount"]},"GoogleMyBusinessAttributionEmbeddable":{"type":"object","properties":{"profileName":{"type":"string"},"profilePhotoUrl":{"type":"string"},"takedownUrl":{"type":"string"},"profileUrl":{"type":"string"}},"required":["profileName","profilePhotoUrl","takedownUrl","profileUrl"]},"GoogleMyBusinessDataRefEmbeddable":{"type":"object","properties":{"resourceName":{"type":"string"}},"required":["resourceName"]},"ZenchefFeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"created_at":{"type":"string","nullable":true},"updated_at":{"type":"string","nullable":true},"service":{"type":"number","nullable":true},"service_body":{"type":"string","nullable":true},"menu":{"type":"number","nullable":true},"menu_body":{"type":"string","nullable":true},"ambiance":{"type":"number","nullable":true},"ambiance_body":{"type":"string","nullable":true},"value_for_money":{"type":"number","nullable":true},"value_for_money_body":{"type":"string","nullable":true},"body":{"type":"string","nullable":true},"global":{"type":"number","nullable":true},"read":{"type":"number","nullable":true}},"required":["created_at","updated_at","service","service_body","menu","menu_body","ambiance","ambiance_body","value_for_money","value_for_money_body","body","global","read"]},"DeliverooFeedbackMetadatasEmbeddable":{"type":"object","properties":{"order_uuid":{"type":"string","nullable":true},"created_at":{"type":"string","nullable":true},"rating_comment":{"type":"string","nullable":true},"rating_stars":{"type":"number","nullable":true},"restaurant_id":{"type":"string","nullable":true},"frequency":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooFrequencyMetadatasEmbeddable"}]},"refund":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooFeedbackRefundMetadatasEmbeddable"}]}},"required":["order_uuid","created_at","rating_comment","rating_stars","restaurant_id","frequency","refund"]},"DeliverooFrequencyMetadatasEmbeddable":{"type":"object","properties":{"customer_orders":{"type":"number","nullable":true}},"required":["customer_orders"]},"DeliverooFeedbackRefundMetadatasEmbeddable":{"type":"object","properties":{"order_id":{"type":"string","nullable":true},"order_uuid":{"type":"string","nullable":true},"order_drn_id":{"type":"string","nullable":true},"order_number":{"type":"number","nullable":true},"branch_id":{"type":"string","nullable":true},"branch_name":{"type":"string","nullable":true},"order_date":{"type":"string","nullable":true},"order_refund_status":{"type":"string","nullable":true},"order_type":{"type":"string","nullable":true},"refund_total":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]},"refund_paid_by_restaurant_total":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]},"order_total":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]},"order_sub_total":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]},"order_gross_merchandise_value":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]},"items":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/DeliverooFeedbackRefundItemMetadatasEmbeddable"}},"compensations":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/DeliverooFeedbackCompensationMetadatasEmbeddable"}}},"required":["order_id","order_uuid","order_drn_id","order_number","branch_id","branch_name","order_date","order_refund_status","order_type","refund_total","refund_paid_by_restaurant_total","order_total","order_sub_total","order_gross_merchandise_value","items","compensations"]},"DeliverooPriceMetadatasEmbeddable":{"type":"object","properties":{"fractional":{"type":"number","nullable":true},"formatted":{"type":"string","nullable":true}},"required":["fractional","formatted"]},"DeliverooFeedbackRefundItemMetadatasEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"quantity":{"type":"number","nullable":true},"restaurant_name":{"type":"string","nullable":true},"refund_reason":{"type":"string","nullable":true},"unit_price":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]},"total_price":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]},"total_unit_price":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]},"modifiers":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/DeliverooFeedbackMetadatasModifier"}},"category_name":{"type":"string","nullable":true}},"required":["id","name","quantity","restaurant_name","refund_reason","unit_price","total_price","total_unit_price","modifiers","category_name"]},"DeliverooFeedbackMetadatasModifier":{"type":"object","properties":{"name":{"type":"string","nullable":true}},"required":["name"]},"DeliverooFeedbackCompensationMetadatasEmbeddable":{"type":"object","properties":{"photos":{"type":"object","nullable":true},"refund_status":{"type":"string","nullable":true},"id":{"type":"number","nullable":true},"refund_date":{"type":"string","nullable":true},"status":{"type":"string","nullable":true},"action_id":{"type":"string","nullable":true},"input_description":{"type":"string","nullable":true},"selected_resolution":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooFeedbackCompensationSelectedResolutionMetadatasEmbeddable"}]},"compensated_items":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/DeliverooFeedbackCompensationCompensatedItemsMetadatasEmbeddable"}}},"required":["photos","refund_status","id","refund_date","status","action_id","input_description","selected_resolution","compensated_items"]},"DeliverooFeedbackCompensationSelectedResolutionMetadatasEmbeddable":{"type":"object","properties":{"resolution_type":{"type":"string","nullable":true},"source":{"type":"string","nullable":true},"repeat_order_id":{"type":"string","nullable":true},"repeat_order_drn_id":{"type":"string","nullable":true},"amount":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/DeliverooPriceMetadatasEmbeddable"}]}},"required":["resolution_type","source","repeat_order_id","repeat_order_drn_id","amount"]},"DeliverooFeedbackCompensationCompensatedItemsMetadatasEmbeddable":{"type":"object","properties":{"name":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"reason":{"type":"string","nullable":true}},"required":["name","id","reason"]},"TripAdvisorFeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"alertStatus":{"type":"boolean"},"rating":{"type":"number"},"status":{"type":"string"},"id":{"type":"number"},"translationType":{"type":"string","nullable":true},"attribution":{"type":"string","nullable":true},"roomTip":{"type":"string","nullable":true},"title":{"type":"string"},"text":{"type":"string"},"username":{"type":"string"},"language":{"type":"string"},"userInfo":{"$ref":"#/components/schemas/TripAdvisorFeedbackUserInfoEmbeddable"},"additionalRatings":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/TripAdvisorFeedbackAdditionalRatingEmbeddable"}}},"required":["alertStatus","rating","status","id","translationType","attribution","roomTip","title","text","username","language","userInfo","additionalRatings"]},"TripAdvisorFeedbackUserInfoEmbeddable":{"type":"object","properties":{"helpfulVotes":{"type":"number"},"contributionCount":{"type":"number"},"homeTown":{"type":"string"},"avatarUrl":{"type":"string"}},"required":["helpfulVotes","contributionCount","homeTown","avatarUrl"]},"TripAdvisorFeedbackAdditionalRatingEmbeddable":{"type":"object","properties":{"rating":{"type":"number"},"ratingLabel":{"type":"string"}},"required":["rating","ratingLabel"]},"UbereatsFeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"uuid":{"type":"string","nullable":true},"timestamp":{"type":"string","nullable":true},"rating":{"type":"number","nullable":true},"comment":{"type":"string","nullable":true},"tags":{"nullable":true,"type":"array","items":{"type":"string"}},"menuItemReviews":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/UbereatsMenuItemReviewEmbeddable"}}},"required":["uuid","timestamp","rating","comment","tags","menuItemReviews"]},"UbereatsMenuItemReviewEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"rating":{"type":"boolean","nullable":true},"name":{"type":"string","nullable":true},"comment":{"type":"string","nullable":true},"tags":{"nullable":true,"type":"array","items":{"type":"string"}}},"required":["id","rating","name","comment","tags"]},"SevenroomsFeedbackMetadatasEmbeddable":{"type":"object","properties":{"recommend_to_friend":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/SevenroomsRecommendToFriend"}]},"feedback_type":{"type":"string","nullable":true},"reservation_id":{"type":"string","nullable":true},"order_id":{"type":"string","nullable":true},"reservation_date":{"type":"string","nullable":true},"received_date":{"type":"string","nullable":true},"created_date":{"type":"string","nullable":true},"overall":{"type":"string","nullable":true},"food":{"type":"string","nullable":true},"drinks":{"type":"string","nullable":true},"ambience":{"type":"string","nullable":true},"service":{"type":"string","nullable":true},"notes":{"type":"string","nullable":true}},"required":["recommend_to_friend","feedback_type","reservation_id","order_id","reservation_date","received_date","created_date","overall","food","drinks","ambience","service","notes"]},"SevenroomsRecommendToFriend":{"type":"string","enum":["Yes","No","not filled in"]},"SupportEmailFeedbackMetadatasEmbeddable":{"type":"object","properties":{"From":{"type":"string"},"FromName":{"type":"string"},"FromFull":{"$ref":"#/components/schemas/PostmarkInboundRecipientEmbeddable"},"To":{"type":"string"},"ToFull":{"type":"array","items":{"$ref":"#/components/schemas/PostmarkInboundRecipientEmbeddable"}},"Cc":{"type":"string"},"CcFull":{"type":"array","items":{"$ref":"#/components/schemas/PostmarkInboundRecipientEmbeddable"}},"Bcc":{"type":"string"},"BccFull":{"type":"array","items":{"$ref":"#/components/schemas/PostmarkInboundRecipientEmbeddable"}},"OriginalRecipient":{"type":"string"},"Subject":{"type":"string"},"ReplyTo":{"type":"string","nullable":true},"Date":{"type":"string","nullable":true},"MailboxHash":{"type":"string","nullable":true},"Tag":{"type":"string","nullable":true},"MessageID":{"type":"string","nullable":true},"Status":{"type":"string","nullable":true},"MessageStream":{"type":"string","nullable":true},"TextBody":{"type":"string","nullable":true},"HtmlBody":{"type":"string","nullable":true},"StrippedTextReply":{"type":"string","nullable":true},"Headers":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/PostmarkHeaderEmbeddable"}},"BlockedReason":{"type":"string","nullable":true},"Attachments":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/SupportEmailAttachmentMetadatasEmbeddable"}}},"required":["From","FromName","FromFull","To","ToFull","Cc","CcFull","Bcc","BccFull","OriginalRecipient","Subject","ReplyTo","Date","MailboxHash","Tag","MessageID","Status","MessageStream","TextBody","HtmlBody","StrippedTextReply","Headers","BlockedReason","Attachments"]},"PostmarkInboundRecipientEmbeddable":{"type":"object","properties":{"Email":{"type":"string"},"Name":{"type":"string"},"MailboxHash":{"type":"string"}},"required":["Email","Name","MailboxHash"]},"PostmarkHeaderEmbeddable":{"type":"object","properties":{"Name":{"type":"string"},"Value":{"type":"string"}},"required":["Name","Value"]},"SupportEmailAttachmentMetadatasEmbeddable":{"type":"object","properties":{"Name":{"type":"string"},"ContentID":{"type":"string","nullable":true},"ContentType":{"type":"string"},"ContentLength":{"type":"number"},"Disposition":{"type":"string","nullable":true}},"required":["Name","ContentID","ContentType","ContentLength","Disposition"]},"SiteFeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"fields":{"type":"array","items":{"$ref":"#/components/schemas/ContactFormFieldMetadatasEmbeddable"}}},"required":["fields"]},"ContactFormFieldMetadatasEmbeddable":{"type":"object","properties":{"type":{"description":"The type of the form field","enum":["TEXT","DROPDOWN","RADIO","CHECKBOX","FILES","DATE","STORE","FIRSTNAME","LASTNAME","CIVILITY","EMAIL","PHONE","PURCHASE","MAIN"],"type":"string"},"id":{"type":"string","description":"The field id"},"values":{"description":"Field values","type":"array","items":{"type":"string"}},"label":{"type":"string","nullable":true,"description":"The label of the form field, if applicable"},"verticalIndex":{"type":"object","description":"The vertical position index of the form field","default":0},"horizontalIndex":{"type":"object","description":"The horizontal position index of the form field","default":0}},"required":["type","id","values","label","verticalIndex","horizontalIndex"]},"MetaMessageMetadatasEmbeddable":{"type":"object","properties":{"id":{"type":"string"},"created_time":{"type":"string"},"from":{"$ref":"#/components/schemas/MetaApiMessageFromEmbeddable"},"is_unsupported":{"type":"boolean","nullable":true},"message":{"type":"string"},"reactions":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiOutputReactionEmbeddable"}]},"fullwhereReaction":{"type":"string","nullable":true},"story":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiOutputStoryEmbeddable"}]},"tags":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiOutputTagEmbeddable"}]},"shares":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiPaginatedOutputShareEmbeddable"}]},"to":{"$ref":"#/components/schemas/MetaApiOutputRecipientEmbeddable"},"attachments":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiOutputAttachmentEmbeddable"}]},"is_deleted":{"type":"boolean","nullable":true},"reply_to":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessageReplyToEmbeddable"}]}},"required":["id","created_time","from","is_unsupported","message","reactions","fullwhereReaction","story","tags","shares","to","attachments","is_deleted","reply_to"]},"MetaApiMessageFromEmbeddable":{"type":"object","properties":{"id":{"type":"string"},"email":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"username":{"type":"string","nullable":true}},"required":["id","email","name","username"]},"MetaApiOutputReactionEmbeddable":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/MetaApiMessageReactionEmbeddable"}}},"required":["data"]},"MetaApiMessageReactionEmbeddable":{"type":"object","properties":{"reaction":{"type":"string"},"users":{"type":"array","items":{"$ref":"#/components/schemas/MetaApiMessageUserEmbeddable"}}},"required":["reaction","users"]},"MetaApiMessageUserEmbeddable":{"type":"object","properties":{"username":{"type":"string"},"id":{"type":"string"}},"required":["username","id"]},"MetaApiOutputStoryEmbeddable":{"type":"object","properties":{"mention":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessageStoryDataEmbeddable"}]},"reply":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessageStoryDataEmbeddable"}]},"reply_to":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessageStoryDataEmbeddable"}]}}},"MetaApiMessageStoryDataEmbeddable":{"type":"object","properties":{"link":{"type":"string"},"id":{"type":"string"}},"required":["link","id"]},"MetaApiOutputTagEmbeddable":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/MetaApiMessageTagEmbeddable"}}},"required":["data"]},"MetaApiMessageTagEmbeddable":{"type":"object","properties":{"name":{"type":"string"}},"required":["name"]},"MetaApiPaginatedOutputShareEmbeddable":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/MetaApiMessageShareEmbeddable"}},"paging":{"type":"object"}},"required":["data","paging"]},"MetaApiMessageShareEmbeddable":{"type":"object","properties":{"link":{"type":"string"}},"required":["link"]},"MetaApiOutputRecipientEmbeddable":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/MetaApiMessageRecipientEmbeddable"}}},"required":["data"]},"MetaApiMessageRecipientEmbeddable":{"type":"object","properties":{"id":{"type":"string"},"username":{"type":"string","nullable":true},"email":{"type":"string","nullable":true},"name":{"type":"string","nullable":true}},"required":["id","username","email","name"]},"MetaApiOutputAttachmentEmbeddable":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/MetaApiMessageAttachmentEmbeddable"}}},"required":["data"]},"MetaApiMessageAttachmentEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"mime_type":{"type":"string","nullable":true},"name":{"type":"string","nullable":true},"size":{"type":"number","nullable":true},"file_url":{"type":"string","nullable":true},"image_data":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiPictureEmbeddable"}]},"video_data":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessageVideoDataEmbeddable"}]},"generic_template":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessageGenericTemplateEmbeddable"}]},"payload":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessagePayloadEmbeddable"}]}},"required":["id","type","mime_type","name","size","file_url","image_data","video_data","generic_template","payload"]},"MetaApiPictureEmbeddable":{"type":"object","properties":{"width":{"type":"number","nullable":true},"height":{"type":"number","nullable":true},"max_height":{"type":"number","nullable":true},"max_width":{"type":"number","nullable":true},"url":{"type":"string"},"preview_url":{"type":"string","nullable":true},"image_type":{"type":"number"},"render_as_sticker":{"type":"boolean","nullable":true},"animated_gif_preview_url":{"type":"string","nullable":true},"animated_gif_url":{"type":"string","nullable":true},"cta":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessageCTAEmbeddable"}]},"subtitle":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"is_silhouette":{"type":"string","nullable":true}},"required":["width","height","max_height","max_width","url","preview_url","image_type","render_as_sticker","animated_gif_preview_url","animated_gif_url","cta","subtitle","title","is_silhouette"]},"MetaApiMessageCTAEmbeddable":{"type":"object","properties":{"title":{"type":"string"},"type":{"type":"string"},"url":{"type":"string"}},"required":["title","type","url"]},"MetaApiMessageVideoDataEmbeddable":{"type":"object","properties":{"url":{"type":"string"}},"required":["url"]},"MetaApiMessageGenericTemplateEmbeddable":{"type":"object","properties":{"cta":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessageCTAEmbeddable"}]},"url":{"type":"string"},"subtitle":{"type":"string","nullable":true},"title":{"type":"string","nullable":true}},"required":["cta","url","subtitle","title"]},"MetaApiMessagePayloadEmbeddable":{"type":"object","properties":{"url":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"sticker_id":{"type":"number","nullable":true},"reel_video_id":{"type":"number","nullable":true},"product":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiMessagePayloadProductEmbeddable"}]}},"required":["url","title","sticker_id","reel_video_id","product"]},"MetaApiMessagePayloadProductEmbeddable":{"type":"object","properties":{"elements":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/MetaApiMessagePayloadProductElementEmbeddable"}}},"required":["elements"]},"MetaApiMessagePayloadProductElementEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"retailer_id":{"type":"string","nullable":true},"image_url":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"subtitle":{"type":"string","nullable":true}},"required":["id","retailer_id","image_url","title","subtitle"]},"MetaApiMessageReplyToEmbeddable":{"type":"object","properties":{"mid":{"type":"string"},"is_self_reply":{"type":"boolean"}},"required":["mid","is_self_reply"]},"WhatsAppMessageMetadatasEmbeddable":{"type":"object","properties":{"from":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"timestamp":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"reaction":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageReactionEmbeddable"}]},"fullwhereReaction":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageReactionEmbeddable"}]},"text":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageTextEmbeddable"}]},"audio":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageFileEmbeddable"}]},"image":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageFileEmbeddable"}]},"video":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageFileEmbeddable"}]},"document":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageFileEmbeddable"}]},"sticker":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageFileEmbeddable"}]},"system":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageSystemEmbeddable"}]},"referral":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageReferralEmbeddable"}]},"order":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageOrderEmbeddable"}]},"interactive":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageInteractiveEmbeddable"}]},"button":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageButtonEmbeddable"}]},"context":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageContextEmbeddable"}]},"errors":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/WhatsAppErrorEmbeddable"}},"identity":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppIdentityEmbeddable"}]},"location":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppLocationEmbeddable"}]},"contacts":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/WhatsAppContactEmbeddable"}}},"required":["from","id","timestamp","type","reaction","fullwhereReaction","text","audio","image","video","document","sticker","system","referral","order","interactive","button","context","errors","identity","location","contacts"]},"WhatsAppMessageReactionEmbeddable":{"type":"object","properties":{"message_id":{"type":"string","nullable":true},"emoji":{"type":"string","nullable":true}},"required":["message_id","emoji"]},"WhatsAppMessageTextEmbeddable":{"type":"object","properties":{"body":{"type":"string","nullable":true}},"required":["body"]},"WhatsAppMessageFileEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"url":{"type":"string","nullable":true},"file_size":{"type":"number","nullable":true},"filename":{"type":"string","nullable":true},"mime_type":{"type":"string","nullable":true},"sha256":{"type":"string","nullable":true},"caption":{"type":"string","nullable":true},"animated":{"type":"boolean","nullable":true},"voice":{"type":"boolean","nullable":true}},"required":["id","url","file_size","filename","mime_type","sha256","caption","animated","voice"]},"WhatsAppMessageSystemEmbeddable":{"type":"object","properties":{"body":{"type":"string","nullable":true},"identity":{"type":"string","nullable":true},"new_wa_id":{"type":"string","nullable":true},"wa_id":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"customer":{"type":"string","nullable":true}},"required":["body","identity","new_wa_id","wa_id","type","customer"]},"WhatsAppMessageReferralEmbeddable":{"type":"object","properties":{"source_url":{"type":"string","nullable":true},"source_type":{"type":"string","nullable":true},"source_id":{"type":"string","nullable":true},"headline":{"type":"string","nullable":true},"body":{"type":"string","nullable":true},"media_type":{"type":"string","nullable":true},"image_url":{"type":"string","nullable":true},"video_url":{"type":"string","nullable":true},"thumbnail_url":{"type":"string","nullable":true},"ctwa_clid":{"type":"string","nullable":true}},"required":["source_url","source_type","source_id","headline","body","media_type","image_url","video_url","thumbnail_url","ctwa_clid"]},"WhatsAppMessageOrderEmbeddable":{"type":"object","properties":{"catalog_id":{"type":"string","nullable":true},"text":{"type":"string","nullable":true},"product_items":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/WhatsAppMessageOrderProductItemEmbeddable"}}},"required":["catalog_id","text","product_items"]},"WhatsAppMessageOrderProductItemEmbeddable":{"type":"object","properties":{"product_retailer_id":{"type":"string","nullable":true},"quantity":{"type":"string","nullable":true},"item_price":{"type":"string","nullable":true},"currency":{"type":"string","nullable":true}},"required":["product_retailer_id","quantity","item_price","currency"]},"WhatsAppMessageInteractiveEmbeddable":{"type":"object","properties":{"type":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageInteractiveTypeEmbeddable"}]}},"required":["type"]},"WhatsAppMessageInteractiveTypeEmbeddable":{"type":"object","properties":{"button_reply":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageInteractiveButtonReplyEmbeddable"}]},"list_reply":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageInteractiveListReplyEmbeddable"}]}},"required":["button_reply","list_reply"]},"WhatsAppMessageInteractiveButtonReplyEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"title":{"type":"string","nullable":true}},"required":["id","title"]},"WhatsAppMessageInteractiveListReplyEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"title":{"type":"string","nullable":true},"description":{"type":"string","nullable":true}},"required":["id","title","description"]},"WhatsAppMessageButtonEmbeddable":{"type":"object","properties":{"payload":{"type":"string","nullable":true},"text":{"type":"string","nullable":true}},"required":["payload","text"]},"WhatsAppMessageContextEmbeddable":{"type":"object","properties":{"forwarded":{"type":"boolean","nullable":true},"frequently_forwarded":{"type":"boolean","nullable":true},"from":{"type":"string","nullable":true},"id":{"type":"string","nullable":true},"referred_product":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppMessageContextReferredProductEmbeddable"}]}},"required":["forwarded","frequently_forwarded","from","id","referred_product"]},"WhatsAppMessageContextReferredProductEmbeddable":{"type":"object","properties":{"catalog_id":{"type":"string","nullable":true},"product_retailer_id":{"type":"string","nullable":true}},"required":["catalog_id","product_retailer_id"]},"WhatsAppErrorEmbeddable":{"type":"object","properties":{"code":{"type":"number","nullable":true},"title":{"type":"string","nullable":true},"message":{"type":"string","nullable":true},"error_data":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppErrorDataEmbeddable"}]}},"required":["code","title","message","error_data"]},"WhatsAppErrorDataEmbeddable":{"type":"object","properties":{"details":{"type":"string","nullable":true}},"required":["details"]},"WhatsAppIdentityEmbeddable":{"type":"object","properties":{"acknowledged":{"type":"string","nullable":true},"created_timestamp":{"type":"string","nullable":true},"hash":{"type":"string","nullable":true}},"required":["acknowledged","created_timestamp","hash"]},"WhatsAppLocationEmbeddable":{"type":"object","properties":{"latitude":{"type":"number","nullable":true},"longitude":{"type":"number","nullable":true}},"required":["latitude","longitude"]},"WhatsAppContactEmbeddable":{"type":"object","properties":{"addresses":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/WhatsAppContactAddressEmbeddable"}},"birthday":{"type":"string","nullable":true},"emails":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/WhatsAppContactEmailEmbeddable"}},"name":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppContactNameEmbeddable"}]},"org":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/WhatsAppContactOrgEmbeddable"}]},"phones":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/WhatsAppContactPhoneEmbeddable"}},"urls":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/WhatsAppContactUrlEmbeddable"}}},"required":["addresses","birthday","emails","name","org","phones","urls"]},"WhatsAppContactAddressEmbeddable":{"type":"object","properties":{"street":{"type":"string","nullable":true},"city":{"type":"string","nullable":true},"state":{"type":"string","nullable":true},"zip":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"country_code":{"type":"string","nullable":true},"type":{"type":"string","nullable":true}},"required":["street","city","state","zip","country","country_code","type"]},"WhatsAppContactEmailEmbeddable":{"type":"object","properties":{"email":{"type":"string","nullable":true},"type":{"type":"string","nullable":true}},"required":["email","type"]},"WhatsAppContactNameEmbeddable":{"type":"object","properties":{"formatted_name":{"type":"string","nullable":true},"first_name":{"type":"string","nullable":true},"last_name":{"type":"string","nullable":true},"middle_name":{"type":"string","nullable":true},"suffix":{"type":"string","nullable":true},"prefix":{"type":"string","nullable":true}},"required":["formatted_name","first_name","last_name","middle_name","suffix","prefix"]},"WhatsAppContactOrgEmbeddable":{"type":"object","properties":{"company":{"type":"string","nullable":true},"department":{"type":"string","nullable":true},"title":{"type":"string","nullable":true}},"required":["company","department","title"]},"WhatsAppContactPhoneEmbeddable":{"type":"object","properties":{"phone":{"type":"string","nullable":true},"type":{"type":"string","nullable":true},"wa_id":{"type":"string","nullable":true}},"required":["phone","type","wa_id"]},"WhatsAppContactUrlEmbeddable":{"type":"object","properties":{"url":{"type":"string","nullable":true},"type":{"type":"string","nullable":true}},"required":["url","type"]},"BookingFeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"ufi":{"type":"object","nullable":true},"name":{"type":"string","nullable":true},"yourname":{"type":"string","nullable":true},"processedBy":{"type":"string","nullable":true},"hotelServicesFormatted":{"type":"string","nullable":true},"hotelComfort":{"type":"number","nullable":true},"hotelNegative":{"type":"string","nullable":true},"preferred":{"type":"number","nullable":true},"pagename":{"type":"string","nullable":true},"translateButtonStatus":{"type":"string","nullable":true},"processingDate":{"type":"string","nullable":true},"hotelClean":{"type":"number","nullable":true},"id":{"type":"number","nullable":true},"hotelValueFormatted":{"type":"string","nullable":true},"hotelId":{"type":"number","nullable":true},"hotelCity":{"type":"string","nullable":true},"reply":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/BookingFeedbackReplyMetadatasEmbeddable"}]},"hotelLocationFormatted":{"type":"string","nullable":true},"hotelNegativeTrivial":{"type":"number","nullable":true},"language":{"type":"string","nullable":true},"hotelComfortFormatted":{"type":"string","nullable":true},"hotelStaffFormatted":{"type":"string","nullable":true},"cc1":{"type":"string","nullable":true},"additionalRatings":{"nullable":true,"type":"array","items":{"type":"string"}},"canReply":{"type":"string","nullable":true},"hotelAverageFormatted":{"type":"string","nullable":true},"hotelLocation":{"type":"number","nullable":true},"anonymous":{"type":"number","nullable":true},"isNew":{"type":"number","nullable":true},"class":{"type":"number","nullable":true},"experimentalAdditionalRatings":{"nullable":true,"type":"array","items":{"type":"object"}},"title":{"type":"string","nullable":true},"country":{"type":"string","nullable":true},"suppressedComment":{"type":"string","nullable":true},"approvalStatus":{"type":"number","nullable":true},"hotelStaff":{"type":"number","nullable":true},"suppressed":{"type":"number","nullable":true},"hotelPositive":{"type":"string","nullable":true},"hotelServices":{"type":"number","nullable":true},"hotelPositiveTrivial":{"type":"number","nullable":true},"approved":{"type":"string","nullable":true},"titleTrivial":{"type":"number","nullable":true},"stayStatus":{"type":"string","nullable":true},"booknumber":{"type":"number","nullable":true},"completed":{"type":"string","nullable":true},"hotelValue":{"type":"number","nullable":true},"hotelCleanFormatted":{"type":"string","nullable":true},"hotelAverage":{"type":"number","nullable":true}},"required":["ufi","name","yourname","processedBy","hotelServicesFormatted","hotelComfort","hotelNegative","preferred","pagename","translateButtonStatus","processingDate","hotelClean","id","hotelValueFormatted","hotelId","hotelCity","reply","hotelLocationFormatted","hotelNegativeTrivial","language","hotelComfortFormatted","hotelStaffFormatted","cc1","additionalRatings","canReply","hotelAverageFormatted","hotelLocation","anonymous","isNew","class","experimentalAdditionalRatings","title","country","suppressedComment","approvalStatus","hotelStaff","suppressed","hotelPositive","hotelServices","hotelPositiveTrivial","approved","titleTrivial","stayStatus","booknumber","completed","hotelValue","hotelCleanFormatted","hotelAverage"]},"BookingFeedbackReplyMetadatasEmbeddable":{"type":"object","properties":{"hotelierResponse":{"type":"string","nullable":true},"approved":{"type":"number","nullable":true},"created":{"type":"string","nullable":true}},"required":["hotelierResponse","approved","created"]},"SundayFeedbackMetadatasEmbeddable":{"type":"object","properties":{"review_id":{"type":"string","nullable":true},"created_at_local":{"type":"string","nullable":true},"business_id":{"type":"string","nullable":true},"payment_id":{"type":"string","nullable":true},"platform":{"type":"string","nullable":true},"email":{"type":"string","nullable":true},"optin_level":{"type":"object","nullable":true},"rating":{"type":"number","nullable":true},"comment":{"type":"string","nullable":true},"table_number":{"type":"number","nullable":true},"reply_content":{"type":"string","nullable":true},"replied_at":{"type":"string","nullable":true},"paid_amount":{"type":"number","nullable":true},"order_amount":{"type":"number","nullable":true},"currency_code":{"type":"string","nullable":true},"staff_name":{"type":"string","nullable":true},"rating_dimension_food_and_drinks":{"type":"number","nullable":true},"rating_dimension_ambiance":{"type":"number","nullable":true},"rating_dimension_service":{"type":"number","nullable":true},"rating_dimension_value_for_money":{"type":"number","nullable":true},"is_coming_from_sunday":{"type":"boolean","nullable":true}},"required":["review_id","created_at_local","business_id","payment_id","platform","email","optin_level","rating","comment","table_number","reply_content","replied_at","paid_amount","order_amount","currency_code","staff_name","rating_dimension_food_and_drinks","rating_dimension_ambiance","rating_dimension_service","rating_dimension_value_for_money","is_coming_from_sunday"]},"ExperienceFeedbackMetadatasEmbeddable":{"type":"object","properties":{"configuration":{"$ref":"#/components/schemas/ExperienceStoreMetadatasEmbeddable"},"stay":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExperiencePurchaseMetadatasEmbeddable"}]},"segment":{"type":"string"},"purpose":{"type":"string"},"customer":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExperienceCustomerMetadatasEmbeddable"}]},"internal_id":{"type":"number"},"response_date":{"type":"string"},"average_score":{"type":"number"},"ratings":{"type":"array","items":{"$ref":"#/components/schemas/ExperienceApiFeedbackRatingEmbeddable"}}},"required":["configuration","stay","segment","purpose","customer","internal_id","response_date","average_score","ratings"]},"ExperienceStoreMetadatasEmbeddable":{"type":"object","properties":{"business_name":{"type":"string"},"business_id":{"type":"number"},"rating_min":{"type":"number"},"rating_max":{"type":"number"}},"required":["business_name","business_id","rating_min","rating_max"]},"ExperiencePurchaseMetadatasEmbeddable":{"type":"object","properties":{"booked_at":{"type":"string"},"arrival_date":{"type":"string"},"arrival_day":{"type":"string"},"departure_date":{"type":"string"},"departure_day":{"type":"string"},"duration":{"type":"number"},"presence_days":{"type":"array","items":{"type":"string"}},"room_number":{"type":"array","items":{"type":"string"}},"room_type":{"type":"array","items":{"type":"string"}},"rate_code":{"type":"string"},"booking_additional_properties":{"type":"array","items":{"$ref":"#/components/schemas/ExperienceApiBookingAdditionalPropertyEmbeddable"}}},"required":["booked_at","arrival_date","arrival_day","departure_date","departure_day","duration","presence_days","room_number","room_type","rate_code","booking_additional_properties"]},"ExperienceApiBookingAdditionalPropertyEmbeddable":{"type":"object","properties":{"name":{"type":"string"},"value":{"type":"string"}},"required":["name","value"]},"ExperienceCustomerMetadatasEmbeddable":{"type":"object","properties":{"customer_custom_properties":{"type":"array","items":{"type":"object"}},"customer_additional_properties":{"type":"array","items":{"type":"object"}},"email":{"type":"string"},"title":{"type":"string"},"firstname":{"type":"string"},"lastname":{"type":"string"},"language":{"type":"string"},"birthdate":{"type":"string"},"age_at_time_of_stay":{"type":"number"},"addr_street":{"type":"string","nullable":true},"addr_city":{"type":"string","nullable":true},"addr_zipcode":{"type":"string","nullable":true},"addr_country":{"type":"string"},"continent":{"type":"string"},"nationality":{"type":"string"},"mobile_phone":{"type":"string"},"phone":{"type":"string"},"number_of_stays":{"type":"number"},"often_travel_to_city":{"type":"boolean"}},"required":["customer_custom_properties","customer_additional_properties","email","title","firstname","lastname","language","birthdate","age_at_time_of_stay","addr_street","addr_city","addr_zipcode","addr_country","continent","nationality","mobile_phone","phone","number_of_stays","often_travel_to_city"]},"ExperienceApiFeedbackRatingEmbeddable":{"type":"object","properties":{"internal_id":{"type":"number"},"deleted_question":{"type":"boolean"},"code":{"type":"string"},"question_titles":{"type":"array","items":{"$ref":"#/components/schemas/ExperienceApiFeedbackQuestionTitleEmbeddable"}},"rating":{"type":"number","nullable":true},"text_pro":{"type":"string","nullable":true},"text_con":{"type":"string","nullable":true},"text_neutral":{"type":"string","nullable":true}},"required":["internal_id","deleted_question","code","question_titles","rating","text_pro","text_con","text_neutral"]},"ExperienceApiFeedbackQuestionTitleEmbeddable":{"type":"object","properties":{"name":{"type":"string"},"code":{"type":"string"}},"required":["name","code"]},"FacebookFeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"attachments":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/FacebookAttachmentEmbeddable"}},"likes":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookLikesEmbeddable"}]},"reactions":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookReactionsEmbeddable"}]},"comments":{"type":"object","properties":{"data":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/FacebookSubCommentEmbeddable"}}},"required":[]}}},"FacebookAttachmentEmbeddable":{"type":"object","properties":{"media":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookMediaEmbeddable"}]},"target":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookAttachmentTarget"}]},"media_type":{"type":"string"},"url":{"type":"string"},"title":{"type":"string"},"description":{"type":"string"},"type":{"type":"string"}}},"FacebookMediaEmbeddable":{"type":"object","properties":{"image":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookMediaInfoEmbeddable"}]},"video":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookMediaInfoEmbeddable"}]}}},"FacebookMediaInfoEmbeddable":{"type":"object","properties":{"src":{"type":"string"},"width":{"type":"number"},"height":{"type":"number"}}},"FacebookAttachmentTarget":{"type":"object","properties":{"id":{"type":"string"},"url":{"type":"string"}}},"FacebookLikesEmbeddable":{"type":"object","properties":{"data":{"type":"array","items":{"$ref":"#/components/schemas/FacebookUserEmbeddable"}},"summary":{"$ref":"#/components/schemas/FacebookLikesSummaryEmbeddable"}}},"FacebookUserEmbeddable":{"type":"object","properties":{"picture":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookUserPirctureEmbeddable"}]},"id":{"type":"string"},"name":{"type":"string"}}},"FacebookUserPirctureEmbeddable":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/FacebookPictureEmbeddable"}}},"FacebookPictureEmbeddable":{"type":"object","properties":{"url":{"type":"string"},"height":{"type":"number"},"width":{"type":"number"},"is_silhouette":{"type":"boolean"}}},"FacebookLikesSummaryEmbeddable":{"type":"object","properties":{"total_count":{"type":"number"},"can_like":{"type":"boolean"},"has_liked":{"type":"boolean"}},"required":["total_count","can_like","has_liked"]},"FacebookReactionsEmbeddable":{"type":"object","properties":{"summary":{"type":"array","items":{"$ref":"#/components/schemas/FacebookReactionSummaryEmbeddable"}}}},"FacebookReactionSummaryEmbeddable":{"type":"object","properties":{"total_count":{"type":"number"}},"required":["total_count"]},"FacebookSubCommentEmbeddable":{"type":"object","properties":{"from":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookUserEmbeddable"}]},"attachment":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookLikesEmbeddable"}]},"created_time":{"format":"date-time","type":"string"},"id":{"type":"string"},"message":{"type":"string"}},"required":["created_time","id"]},"InstagramFeedbackContentMetadatasEmbeddable":{"type":"object","properties":{"id":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"text":{"type":"string"},"from":{"$ref":"#/components/schemas/MetaApiInstagramProfileEmbeddable"},"hidden":{"type":"boolean"},"like_count":{"type":"number"},"legacy_instagram_comment_id":{"type":"string"},"media":{"$ref":"#/components/schemas/InstagramMediaInfoEmbeddable"},"parent_id":{"type":"string"},"replies":{"type":"object","properties":{"data":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/InstagramSubCommentEmbeddable"}}},"required":[]}},"required":["id","timestamp","text","from","hidden","like_count","legacy_instagram_comment_id","media"]},"MetaApiInstagramProfileEmbeddable":{"type":"object","properties":{"id":{"type":"string"},"username":{"type":"string"}}},"InstagramMediaInfoEmbeddable":{"type":"object","properties":{"media_product_type":{"allOf":[{"$ref":"#/components/schemas/MediaProductType"}]},"id":{"type":"string"}},"required":["media_product_type","id"]},"MediaProductType":{"type":"string","enum":["AD","FEED","REEL","STORY"]},"InstagramSubCommentEmbeddable":{"type":"object","properties":{"from":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/MetaApiInstagramProfileEmbeddable"}]},"id":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"text":{"type":"string"}},"required":["timestamp"]},"TheForkFeedbackMetadatasEmbeddable":{"type":"object","properties":{"reviewUuid":{"type":"string"},"restaurantUuid":{"type":"string"},"isValid":{"type":"boolean"},"createdTs":{"type":"string"},"updatedTs":{"type":"string"},"reservation":{"$ref":"#/components/schemas/TheForkReviewReservationEmbeddable"},"customer":{"$ref":"#/components/schemas/TheForkReviewCustomerEmbeddable"},"dinerRating":{"$ref":"#/components/schemas/TheForkReviewDinerRatingEmbeddable"},"comment":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewCommentEmbeddable"}]},"experienceDetail":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewExperienceDetailEmbeddable"}]},"restaurantReply":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewRestaurantReplyEmbeddable"}]}},"required":["reviewUuid","restaurantUuid","isValid","createdTs","updatedTs","reservation","customer","dinerRating","comment","experienceDetail","restaurantReply"]},"TheForkReviewReservationEmbeddable":{"type":"object","properties":{"reservationUuid":{"type":"string","nullable":true},"mealDate":{"type":"string","nullable":true}},"required":["reservationUuid","mealDate"]},"TheForkReviewCustomerEmbeddable":{"type":"object","properties":{"customerUuid":{"type":"string"},"firstName":{"type":"string","nullable":true},"lastName":{"type":"string","nullable":true}},"required":["customerUuid","firstName","lastName"]},"TheForkReviewDinerRatingEmbeddable":{"type":"object","properties":{"priceEvaluation":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewPriceEvaluation"}]},"waitingTimeEvaluation":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewWaitingTimeEvaluation"}]},"noiseLevelEvaluation":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewNoiseLevelEvaluation"}]},"globalRating":{"type":"number","nullable":true},"ambienceRating":{"type":"number","nullable":true},"foodQualityRating":{"type":"number","nullable":true},"serviceRating":{"type":"number","nullable":true}},"required":["priceEvaluation","waitingTimeEvaluation","noiseLevelEvaluation","globalRating","ambienceRating","foodQualityRating","serviceRating"]},"TheForkReviewPriceEvaluation":{"type":"string","enum":["VERY_CHEAP","CHEAP","AVERAGE","EXPENSIVE","VERY_EXPENSIVE"]},"TheForkReviewWaitingTimeEvaluation":{"type":"string","enum":["VERY_FAST","FAST","AVERAGE","SLOW","VERY_SLOW"]},"TheForkReviewNoiseLevelEvaluation":{"type":"string","enum":["VERY_QUIET","QUIET","MODERATE","LOUD","VERY_LOUD"]},"TheForkReviewCommentEmbeddable":{"type":"object","properties":{"publicationStatus":{"allOf":[{"$ref":"#/components/schemas/TheForkReviewPublicationStatus"}]},"moderationReason":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewModerationReason"}]},"content":{"type":"string"},"language":{"type":"string","nullable":true},"createdTs":{"type":"string"},"updatedTs":{"type":"string"},"publishedTs":{"type":"string","nullable":true}},"required":["publicationStatus","moderationReason","content","language","createdTs","updatedTs","publishedTs"]},"TheForkReviewPublicationStatus":{"type":"string","enum":["NOT_REVIEWED","REJECTED","PUBLISHED","WAITING_REFORMULATE","ARCHIVED","DELETED"]},"TheForkReviewModerationReason":{"type":"string","enum":["REFORMULATE_REPLY_IRRELEVANT_CONTENT","REFORMULATE_REPLY_PROFANITY","REFORMULATE_REPLY_INCORRECT_INFORMATION","REFORMULATE_REPLY_SPAM","REFORMULATE_REPLY_THREATENING_LANGUAGE","REFORMULATE_REPLY_CONFIDENTIAL_TF_INFO","REFORMULATE_REPLY_PRIVATE_DATA","REFORMULATE_REPLY_INAPROPRIATE_CONTENT","REFORMULATE_REPLY_NOT_COMPLIANT","REFORMULATE_REPLY_VIOLENCE","REFORMULATE_REPLY_DISCRIMINATORY","REFORMULATE_REPLY_RESTAURANT_REQUEST","REFORMULATE_REPLY_HARASSMENT_LANGUAGE","REFORMULATE_REPLY_INAUTHENTIC","REFORMULATE_REPLY_ALL_CAPS_UNINTELLIGIBLE_NON_ORIGINAL_CONTENT","REJECT_REPLY_NOT_COMPLIANT","REJECT_REPLY_REFORMULATION_PERIOD_ENDED","REJECT_REPLY_RESTAURANT_REQUEST"]},"TheForkReviewExperienceDetailEmbeddable":{"type":"object","properties":{"occasion":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewOccasion"}]}},"required":["occasion"]},"TheForkReviewOccasion":{"type":"string","enum":["BUSINESS","FRIENDS","ROMANTIC","FAMILY","ALONE"]},"TheForkReviewRestaurantReplyEmbeddable":{"type":"object","properties":{"publicationStatus":{"allOf":[{"$ref":"#/components/schemas/TheForkReviewPublicationStatus"}]},"moderationReason":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/TheForkReviewModerationReason"}]},"content":{"type":"string"},"language":{"type":"string","nullable":true},"createdTs":{"type":"string"},"updatedTs":{"type":"string"},"publishedTs":{"type":"string","nullable":true}},"required":["publicationStatus","moderationReason","content","language","createdTs","updatedTs","publishedTs"]},"ExpediaFeedbackMetadatasEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"reservation":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExpediaReviewReservationEmbeddable"}]},"propertyId":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/ExpediaReviewPropertyIdReferenceEmbeddable"}},"status":{"type":"string","nullable":true},"brandNameV2":{"type":"string","nullable":true},"source":{"type":"string","nullable":true},"createdDateTime":{"type":"string","nullable":true},"lastUpdatedDateTime":{"type":"string","nullable":true},"title":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExpediaReviewLocalizedTextEmbeddable"}]},"body":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExpediaReviewLocalizedTextEmbeddable"}]},"starRatings":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/ExpediaReviewStarRatingEmbeddable"}},"isEligibleForResponse":{"type":"boolean","nullable":true},"response":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExpediaReviewResponseEmbeddable"}]},"media":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/ExpediaReviewMediaEmbeddable"}}},"required":["id","reservation","propertyId","status","brandNameV2","source","createdDateTime","lastUpdatedDateTime","title","body","starRatings","isEligibleForResponse","response","media"]},"ExpediaReviewReservationEmbeddable":{"type":"object","properties":{"reservationIds":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/ExpediaReviewIdReferenceEmbeddable"}},"status":{"type":"string","nullable":true},"primaryGuest":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExpediaReviewPrimaryGuestEmbeddable"}]},"checkInDate":{"type":"string","nullable":true},"checkOutDate":{"type":"string","nullable":true}},"required":["reservationIds","status","primaryGuest","checkInDate","checkOutDate"]},"ExpediaReviewIdReferenceEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"idSource":{"type":"string","nullable":true}},"required":["id","idSource"]},"ExpediaReviewPrimaryGuestEmbeddable":{"type":"object","properties":{"firstName":{"type":"string","nullable":true},"lastName":{"type":"string","nullable":true}},"required":["firstName","lastName"]},"ExpediaReviewPropertyIdReferenceEmbeddable":{"type":"object","properties":{"id":{"type":"string","nullable":true},"idSource":{"type":"string","nullable":true}},"required":["id","idSource"]},"ExpediaReviewLocalizedTextEmbeddable":{"type":"object","properties":{"value":{"type":"string","nullable":true},"locale":{"type":"string","nullable":true}},"required":["value","locale"]},"ExpediaReviewStarRatingEmbeddable":{"type":"object","properties":{"category":{"nullable":true,"enum":["ecoFriendliness","roomComfort","roomCleanliness","service","overall","hotelCondition","roomAmenitiesScore","areaAroundHotel","cleanliness","house_rules","communication"],"type":"string"},"value":{"type":"string","nullable":true}},"required":["category","value"]},"ExpediaReviewResponseEmbeddable":{"type":"object","properties":{"status":{"type":"string","nullable":true},"createdDateTime":{"type":"string","nullable":true},"lastUpdatedDateTime":{"type":"string","nullable":true},"body":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExpediaReviewLocalizedTextEmbeddable"}]}},"required":["status","createdDateTime","lastUpdatedDateTime","body"]},"ExpediaReviewMediaEmbeddable":{"type":"object","properties":{"thumbnailUrl":{"type":"string","nullable":true},"highResolutionUrl":{"type":"string","nullable":true},"caption":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/ExpediaReviewLocalizedTextEmbeddable"}]}},"required":["thumbnailUrl","highResolutionUrl","caption"]},"PartnerPublicFile":{"type":"object","properties":{"contentType":{"type":"string","description":"MIME type of the file"},"url":{"type":"string","description":"URL to access the file"},"size":{"type":"string","nullable":true,"description":"Size of the file in bytes","default":null},"width":{"type":"number","nullable":true,"description":"Width of the file (if applicable, e.g., for images)","default":null},"height":{"type":"string","nullable":true,"description":"Height of the file (if applicable, e.g., for images)","default":null}},"required":["contentType","url","size","width","height"]},"PartnerFeedbackReply":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier"},"createdAt":{"format":"date-time","type":"string","description":"Creation timestamp"},"updatedAt":{"format":"date-time","type":"string","description":"Last update timestamp"},"source":{"description":"Source of the review reply","allOf":[{"$ref":"#/components/schemas/DataSource"}]},"channel":{"description":"Channel of the review reply","allOf":[{"$ref":"#/components/schemas/FeedbackChannel"}]},"text":{"type":"string","nullable":true,"description":"Review reply text content","default":null},"html":{"type":"string","nullable":true,"description":"Review reply html content - Email only","default":null},"externalId":{"type":"string","nullable":true,"description":"External identifier of the review reply","default":null},"language":{"nullable":true,"description":"Review reply language, if available","default":null,"allOf":[{"$ref":"#/components/schemas/FullwhereLanguage"}]},"mode":{"description":"The mode of the reply.\nThis indicates whether the reply was created by an intelligent agent,\nmanually by a user, or both if generated then modified by an user.","allOf":[{"$ref":"#/components/schemas/FeedbackReplyMode"}]},"attachments":{"description":"Review reply attachments (eg. photos, videos)","default":[],"type":"array","items":{"$ref":"#/components/schemas/PartnerPublicFile"}},"generated":{"type":"boolean","description":"Determines if the reply was generated by an agent"}},"required":["id","createdAt","updatedAt","source","channel","text","html","externalId","language","mode","attachments","generated"]},"FeedbackChannel":{"type":"string","enum":["Google","Zenchef","Sevenrooms","Ubereats","Deliveroo","TripAdvisor","Survey","Import","Booking","Sunday","Experience","Site","FacebookPostComment","InstagramPostComment","FacebookDirectMessage","InstagramDirectMessage","Email","WhatsApp","Sms","TheFork","Expedia"],"description":"Channel of the review reply"},"FeedbackReplyMode":{"type":"string","enum":["IA","MANUAL","BOTH"],"description":"The mode of the reply.\nThis indicates whether the reply was created by an intelligent agent,\nmanually by a user, or both if generated then modified by an user."},"PartnerSurveyReply":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier"},"createdAt":{"format":"date-time","type":"string","description":"Creation timestamp"},"updatedAt":{"format":"date-time","type":"string","description":"Last update timestamp"},"fieldId":{"type":"string","nullable":true,"description":"Relative Survey field ID, if it still exists at the time of submission.\nNull if the field has been deleted.","default":null},"type":{"description":"Type of the survey field","allOf":[{"$ref":"#/components/schemas/SurveyFieldType"}]},"label":{"type":"string","description":"Label of the survey field at the time of submission"},"group":{"type":"string","nullable":true,"description":"Group of the survey field at the time of submission, if it was part of a group.\nNull otherwise.","default":null},"values":{"description":"Values of the survey reply.\nFor text fields, it will be an array with a single string element.\nFor CSAT and NPS, it will be an array with a single number element as string.\nFor multiple choice fields, it will be an array with all selected options.","type":"array","items":{"type":"string"}},"possibleValues":{"nullable":true,"description":"Possible values of the linked form field.","default":null,"type":"array","items":{"type":"string"}},"text":{"type":"string","nullable":true,"description":"Reply as text for text fields only."},"rating":{"type":"number","nullable":true,"description":"Survey reply as value for CSAT and NPS fields"}},"required":["id","createdAt","updatedAt","fieldId","type","label","group","values","possibleValues","text","rating"]},"SurveyFieldType":{"type":"string","enum":["NPS","CSAT SMILEYS","CSAT STARS","TEXT","DROPDOWN","RADIO","CHECKBOX","FILES","DATE","STORE","FIRSTNAME","LASTNAME","CIVILITY","EMAIL","PHONE","PURCHASE","MAIN"],"description":"Survey field type"},"PartnerContactFormReply":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier"},"createdAt":{"format":"date-time","type":"string","description":"Creation timestamp"},"updatedAt":{"format":"date-time","type":"string","description":"Last update timestamp"},"fieldId":{"type":"string","nullable":true,"description":"Relative ContactForm field ID, if it still exists at the time of submission.\nNull if the field has been deleted.","default":null},"type":{"description":"Type of the form field","allOf":[{"$ref":"#/components/schemas/ContactFormFieldType"}]},"label":{"type":"string","description":"Label of the form field at the time of submission"},"group":{"type":"string","nullable":true,"description":"Group of the form field at the time of submission, if it was part of a group.\nNull otherwise.","default":null},"values":{"description":"Values of the form reply.\nFor text fields, it will be an array with a single string element.\nFor multiple choice fields, it will be an array with all selected options.","type":"array","items":{"type":"string"}},"possibleValues":{"nullable":true,"description":"Possible values of the linked form field.","default":null,"type":"array","items":{"type":"string"}},"text":{"type":"string","nullable":true,"description":"Reply as text for text fields only."}},"required":["id","createdAt","updatedAt","fieldId","type","label","group","values","possibleValues","text"]},"ContactFormFieldType":{"type":"string","enum":["TEXT","DROPDOWN","RADIO","CHECKBOX","FILES","DATE","STORE","FIRSTNAME","LASTNAME","CIVILITY","EMAIL","PHONE","PURCHASE","MAIN"],"description":"Contact form field type"},"PartnerSocialPostComment":{"type":"object","properties":{"id":{"type":"string","description":"Unique identifier"},"createdAt":{"format":"date-time","type":"string","description":"Creation timestamp"},"updatedAt":{"format":"date-time","type":"string","description":"Last update timestamp"},"externalId":{"type":"string","description":"ID of the comment in the source platform (e.g. Facebook, Instagram, etc.)"},"text":{"type":"string","nullable":true,"description":"Text content of the comment, if any","default":null},"externalUserId":{"type":"string","description":"ID of the user who made the comment in the source platform"},"externalUserName":{"type":"string","nullable":true,"description":"Name of the user who made the comment in the source platform, if any","default":null},"profilePicture":{"type":"string","nullable":true,"description":"URL of the profile picture of the user who made the comment in the source platform, if any","default":null},"permalink":{"type":"string","nullable":true,"description":"Permalink to the comment in the source platform, if any","default":null},"attachments":{"nullable":true,"description":"Attachments associated with the comment, if any","default":null,"allOf":[{"$ref":"#/components/schemas/SocialPostAttachmentEmbeddable"}]},"metadata":{"description":"Metadata associated with the comment, such as detected language, sentiment analysis, etc.","allOf":[{"$ref":"#/components/schemas/SocialPostCommentMetadatasEmbeddable"}]},"deleted":{"type":"boolean","description":"Whether the comment has been deleted in the source platform or not"},"canHide":{"type":"boolean","description":"Whether the comment can be hidden or not (i.e. whether the source platform allows hiding comments or not)"},"isHidden":{"type":"boolean","description":"Whether the comment is currently hidden or not in the source platform"}},"required":["id","createdAt","updatedAt","externalId","text","externalUserId","externalUserName","profilePicture","permalink","attachments","metadata","deleted","canHide","isHidden"]},"SocialPostAttachmentEmbeddable":{"type":"object","properties":{"facebook":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/FacebookAttachmentEmbeddable"}}}},"SocialPostCommentMetadatasEmbeddable":{"type":"object","properties":{"facebook":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookCommentsMetadatasEmbeddable"}]},"instagram":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/InstagramCommentsMetadatasEmbeddable"}]}}},"FacebookCommentsMetadatasEmbeddable":{"type":"object","properties":{"likes":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookLikesEmbeddable"}]},"reactions":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookReactionsEmbeddable"}]},"comments":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/FacebookCommentsCommentsMetadatasEmbeddable"}]}}},"FacebookCommentsCommentsMetadatasEmbeddable":{"type":"object","properties":{"data":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/FacebookSubCommentEmbeddable"}}}},"InstagramCommentsMetadatasEmbeddable":{"type":"object","properties":{"from":{"$ref":"#/components/schemas/MetaApiInstagramProfileEmbeddable"},"media":{"$ref":"#/components/schemas/InstagramMediaInfoEmbeddable"},"replies":{"nullable":true,"allOf":[{"$ref":"#/components/schemas/InstagramCommentRepliesMetadatasEmbeddable"}]},"id":{"type":"string"},"timestamp":{"format":"date-time","type":"string"},"text":{"type":"string"},"hidden":{"type":"boolean"},"like_count":{"type":"number"},"legacy_instagram_comment_id":{"type":"string"},"parent_id":{"type":"string"}},"required":["media","id","timestamp","text","hidden","like_count","legacy_instagram_comment_id"]},"InstagramCommentRepliesMetadatasEmbeddable":{"type":"object","properties":{"data":{"nullable":true,"type":"array","items":{"$ref":"#/components/schemas/InstagramSubCommentEmbeddable"}}}},"PartnerListingOutputMeta":{"type":"object","properties":{"itemCount":{"type":"number","description":"Total number of items for the given page."},"totalItems":{"type":"number","description":"Total number of items."},"itemsPerPage":{"type":"number","description":"Number of items per page."},"totalPages":{"type":"number","description":"Total number of pages."},"currentPage":{"type":"number","description":"Current page number."}},"required":["itemCount","totalItems","itemsPerPage","totalPages","currentPage"]}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.fullwhere.com/developer/api-references/feedback.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
